* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background:  rgb(47, 47, 47);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.navbar .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.language-selector select {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    appearance: none;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
 
  }

  .language-selector select:hover {

    background-color:#d6103b;
    color:#ccc;
  }

 

 

.logo {
    height: 40px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
    color: white;
}

.hamburger i:hover {
    font-size: 24px;
    color: #d6103b;
}

.nav-links {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

.nav-links.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.nav-links a {
    margin: 20px 0;
    color: white;
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    padding: 10px;
}

.nav-links a:hover {
    color: #d6103b;
}

.close-menu {
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    display: none;
}

.close-menu:hover {
    color: #d6103b;
}

.nav-links.show .close-menu {
    display: block; 
}

section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-top: 70px;
    background-size: cover;
    background-position: center;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: rgba(62, 61, 61, 0.8);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.back-to-top:hover {
    background-color: rgba(62, 61, 61, 0.8);
    color: #d6103b;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.highlight1 {
    display: inline-block;
    color: #d6113c;
    font-weight: bold;
}

.logo-container {
    background-color: rgba(255, 255, 255, 0);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    animation: fadeIn 2s ease-in-out 1;
    animation-fill-mode: forwards;
}

.logo-toggle {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.logo-toggle img {
    width: 50px;
    height: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}



/* section 1 */

.section1 {
    background-color: rgb(47, 47, 47);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    padding-top: 70px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}



.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.time {
    color: white;
    font-size: 14px;
    margin: 0 10px;
}

.progress-bar {
    width: 80%;
    height: 5px;
    appearance: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.video-wrapper:hover .controls {
    opacity: 1;
}



/* section 2 */

.section2 {
    background-image: url(ressources/section\ 2.1ng.png);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    text-align: center;
    width: 100%;
    height: 100vh; 
    padding: 20px;
}

.produits-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.produit {
    background: rgba(62, 61, 61, 0.8);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    width: 350px;
    flex: 0 0 auto;
    font-size: 0.5em;
    box-sizing: border-box;
    color:white;
   }

.produit p {
    text-align: justify;
}

.produit h2 {
    color:#ffffff;
    margin-bottom: 10px;
    margin-top: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
 
.produit img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 250px;
    transition: transform 0.3s ease;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.produit img:hover {
    transform: scale(1.03);
}



/* section 3 */

.section3 {
    background-image: url(ressources/section3.png);
    background-size: cover;
    text-align: center;
    width: 100%;
    height: 100vh; 

}

.highlight {
    display: inline-block;
    color: #d6113c;
    font-weight: 300;
}

.histoire-container {
    display: flex;
    width: 60%;
    height: auto; 
    align-items: center;       
    justify-content: center;   
    background: rgba(62, 61, 61, 0.8);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    gap: 20px;
    overflow: hidden; 
    box-sizing: border-box;
    transition: transform 0.3s ease;
    color: rgb(0, 0, 0);
    padding: 0;
    margin: 0;
    color: #ffffff;
}

.histoire-texte:hover {
    transform: scale(1.03);
}

.histoire-texte {
    width: 90%;
    text-align: left;
    overflow-y: auto; 
    max-height: 100%;
    border-radius: 15px;
    height: 90%;
    padding: 30px;
    transition: transform 0.3s ease;
    font-size: 1em;
}

.histoire-texte h2 {
    color:#d6103b;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.histoire-texte p {
    font-size: 0.6em;
    text-align: justify;
    line-height: 1.3;
}



/* section 4 */

  .section4 .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
  }
  
  .section4 h1 {
    font-size: 3rem;
    margin: 0;
    color:#d6103b;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .section4 p {
    font-size: 1.5rem;
  }

  .section4 {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden; 
}

.section4 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content1 {
    background: rgba(62, 61, 61, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1; 
    transform-origin: center; 
}

.content1:hover {
    transform: scale(1.03); 
}

.store-list {
    margin-top: 15px;
}

.store-list ul {
    list-style: none;
    padding: 0;
}

.store-list li {
    margin: 5px 0;
    font-size: 16px;
}


/* section 5 */

.section5 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

#section5 .subsection-content h2 {
    font-size: 1.3rem; 
    color: rgba(62, 61, 61, 0.8);
    text-transform: uppercase; 
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    z-index: 7000;
}

.highlight2 {
    display: inline-block;
    color: #d6113c;
    font-size:1.7em;
}

#section5 .subsection-content p {
    font-size: 1.2rem;
    color: rgba(62, 61, 61, 0.8);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

.gleziabar-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.gleziabar-logo {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
   
}

.gleziabar-logo:hover {
    transform: scale(1.03);
   
}




.open-subsection-link {
    font-size: 1.1rem;
    color: #d6103b;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding-top: 20px;
}

.open-subsection-link:hover {
 
    color: rgba(62, 61, 61, 0.8);
    transform: scale(1.03);

}

.subsection {
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: left 0.5s ease-in-out;
    z-index: 999;
    padding: 20px;
}

.subsection-content {
    text-align: center;
    padding-top: 13%;
    
}

.close-subsection {
    background-color: #fff;
    color: #d6103b;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.close-subsection:hover {
    transform: scale(1.03);
    color: rgba(62, 61, 61, 0.8);
}



.open-gallery-button{
    background-color: #fff;
    color: #d6103b;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
}

.open-gallery-button:hover {
    transform: scale(1.05);
    color: rgba(62, 61, 61, 0.8);
}

#gallery {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    transition: left 0.5s ease; 
    z-index: 1000; 
    display: none; 
}

#gallery.show {
    display: flex; 
    left: 0;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 100px;
    overflow-y: auto; 
    width: 100%;
}

.gallery-images img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
}

.gallery-images img:hover {
    transform: scale(1.05);
}


#closeGalleryButton {
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px; 
    margin-bottom: 25px;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

#closeGalleryButton:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-modal.show {
    display: flex;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    cursor: pointer;
}

.close-modal-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
}

.close-modal-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    z-index: 1001;
    background-color: rgba(255, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.modal-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}


.open-references-button{
    background-color: #fff;
    color: #d6103b;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
}

.open-references-button:hover {
    transform: scale(1.05);
    color: rgba(62, 61, 61, 0.8);
}

.references-subsection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    height: 100vh;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.references-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 90px; 
}

.references-container {
    display: flex;
    justify-content: center; 
    gap: 40px; 
    flex-wrap: wrap; 
    margin-top: 40px; 
    width: 100%;
    max-width: 1000px;
}

.references-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    margin-bottom: 30px;
    height: 150px;
    justify-content: flex-start;
    
}



.references-logo img[alt="Houben"] {
    width: 200px; /* Ajuste la valeur selon ce qui équilibre visuellement */
    height: auto; /* Garde les proportions */
    display: block;
    margin: 0 auto;
    padding-top: 20px; /* Ajuste cette valeur pour aligner verticalement */
}

.reference-logo {
    width: auto;
    height: 100px;
    object-fit: contain;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.references-logo:hover .reference-logo {
    transform: scale(1.1); 
}

.references-logo p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-top: 4px;
    font-style: italic;
}

h7 {
    font-size: 1.1rem;
    color: #d6103b;
    margin-bottom: 40px; 
}

.formulas-subsection {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh; 
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
    transition: left 0.3s ease-in-out;
    padding-top: 80px; 
    overflow-y: auto; 
    box-sizing: border-box; 
}

.formulas-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin-top: 60px; 
    box-sizing: border-box;
    padding-bottom: 100px; 
   
}

.formulas-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; 
    width: 105%;
    overflow-x: auto; 
    box-sizing: border-box;
    font-size: 20px;
}

.formula {
    background: #f0f0f0;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: transform 0.3s ease;
    margin-bottom: 20px; 
    box-sizing: border-box;
  
}

.formula h2 {
    font-size: 1.5rem;
    color: #d6103b;
}

.formula p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-top: 10px;
}

h9 {
    font-size: 1.5rem;
    color: #d6103b;
    margin-bottom: 10px; 
}

.highlight9 {
    display: inline-block;
    color: #d6113c;
    font-size:1em;
}

.back-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #d6103b;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px; 
    margin-bottom: 40px; 
    align-self: center; 
}

.back-button:hover {
    transform: scale(1.03);
    color: rgba(62, 61, 61, 0.8);
}

#openFormulasButton {
    background-color: #fff;
    color: #d6103b;
    font-size: 1.1rem;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#openFormulasButton:hover {
    transform: scale(1.03);
    color: rgba(62, 61, 61, 0.8);
}



/* section 6 */

.section6 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.section6 video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;

}

.content {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 500px;

}

.content h1 {
    margin-bottom: 30px; 
    font-size: 2.2rem;
    color:#d6103b;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: rgba(62, 61, 61, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
    transform-origin: center; 
}

.contact-form:hover {
    transform: scale(1.03); 
}

.contact-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;

}

.contact-form input, .contact-form textarea {
    width: 90%;
    padding: 10px;
    border: none;
    border-radius: 5px;
  
}

.contact-form button {
    width: 30%;
    padding: 10px;
    background: rgb(47, 47, 47);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
    color: #d6103b;
    transform: scale(1.03); 
}

  .footer {

    bottom: 0;
    width: 100%;
    height: 25px;
    background:  rgb(47, 47, 47);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

    .formulas-subsection {
        padding-top: 60px; 
    }

    .formulas-container {
        flex-direction: column;
        gap: 15px; 
        width: 100%;
        justify-content: center;
        align-items: center; 
    }

    .formula {
        width: 90%; 
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .formulas-subsection {
        overflow-y: auto;
        height: 100vh;
    }

    .formulas-content {
        height: auto;
        padding-bottom: 50px; 
    }

    .back-button {
        margin-top: 20px; 
    }

    .formulas-subsection {
        display: flex;
        justify-content: center; 
        align-items: flex-start;
        overflow-y: auto;
    }
   
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.show {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: block;
    }

    .logo {
        width: 60px;
        height: auto;
    }

    .logo-toggle {
        display: block;
        margin-bottom: 30px;
    }

    .logo-toggle img {
        width: 100px;
        height: auto;
    }

    .nav-links a {
        font-size: 1.5em;
        margin: 20px 0;
    }

    .video-wrapper {
        width: 100%; 
        height: auto;
        transition: none; 
    }

    .background-video {
        object-fit: contain; 
        object-position: center;
    }

    .video-wrapper:hover {
        transform: none;
    }

    .section2 {
        padding: 10px;
        background-attachment: scroll; 
        height: auto; 
    }

    .produits-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-height: 100%;
        overflow-y: auto;
    }

    .produit {
        width: 80%;
        margin-bottom: 20px;
    }

    .produit img {
        max-width: 100%;
        max-height: 200px;
    }

    .section3 {
        height: auto;
        padding: 20px;
    }

    .histoire-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        max-height: 100%;
        padding: 15px;
    }

    .histoire-container img {
        width: 100%;
        height: auto;
        max-height: 300px; 
    }

    .histoire-texte {
        width: 100%;
        text-align: center;
        max-height: none;
        overflow-y: visible;
    }

}

@media (max-width: 480px) {
    .formula {
        width: 90%; 
    }
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  
  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
  }
  
  .lang-btn:hover {
    transform: scale(1.1);
  }
  
  .flag-icon {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 1024px) {
    .section1 {
        padding-top: 0;
        height: 100vh;
    }

    .video-wrapper {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }

    .video-overlay {
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 100vw;
        height: 100vh;
    }

    .background-video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }

    .controls,
    .play-pause-button {
        font-size: 16px;
        padding: 8px;
    }

    .progress-bar {
        width: 90%;
    }
}

.hidden {
    display: none;
}





#slideSection1 {
    position: fixed;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100vh; 
    background-color: black;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    transition: transform 0.5s ease-out; 
}

#slideSection1.open {
    transform: translateX(100%); 
}

#slideSection1 h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

#slideSection1 ul {
    list-style-type: none;
    padding: 0;
}

#slideSection1 ul li {
    padding: 10px;
    font-size: 18px;
}

#closeSlide {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px; 
    height: 40px;
    background-color: #ff0000;
    color: white;
    border: none;
    font-size: 20px; 
    text-align: center; 
    line-height: 40px; 
    cursor: pointer;
    border-radius: 50%; 
    z-index: 1100; 
    display: flex;
    justify-content: center;
    align-items: center; 
}

#closeSlide:hover {
    background-color: rgba(0, 0, 0, 0.9);
}
h10 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.section-title {
    font-size: 24px;
    margin-top: 30px;
    color:  #ff0000;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 5px;
    font-weight: bold;
}


.store-list {
    list-style-type: none;
    padding-left: 0;
}

#toggleSlide {
    background-color:  #ff0000;
    color: white; 
    font-size: 14px; 
    font-weight: bold; 
    padding: 10px 20px;
    border: none;
    border-radius: 5px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}


#toggleSlide:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}


.hide-back-to-top {
    display: none !important;
}


.btn-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-link:hover {

    color: #d6103b;
}