/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    /* overflow-x: hidden; Supprimé pour rétablir le sticky sticky */
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Caveat', cursive;
}

header,
nav,
section,
footer {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.navigation-bar a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem 0;
    /* Plus facile à cliquer */
}

.navigation-bar a:hover,
.navigation-bar a.active-link {
    color: #516745;
    transform: scale(1.1);
}

.navigation-bar a.active-link {
    position: relative;
}

.navigation-bar a.active-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #516745;
    border-radius: 2px;
}

/* Logo Section - Header */
.logo-section {
    background-color: #E8E8E8;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Navigation Bar - Rectangulaire et sobre */
.navigation-bar {
    background-color: #A9A791;
    padding: 1.2rem 2rem;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: #2C2C2C;
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* Menu Burger (masqué par défaut sur desktop) */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 102;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #2C2C2C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navigation-bar span {
    display: inline-block;
    font-weight: 600;
}

.separator {
    margin: 0 2rem;
    opacity: 0.7;
}

/* Section 1 - Mission */
.section-1 {
    position: relative;
    min-height: 100vh;
    background-color: #CCCAB4;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
}

/* Nuages animés */
.cloud {
    position: absolute;
    background-color: #EFEFEF;
    border-radius: 100px;
    z-index: 1;
    opacity: 0.8;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background-color: #EFEFEF;
    border-radius: 100px;
}

.cloud::before {
    width: 50%;
    height: 80%;
    top: -40%;
    left: 10%;
}

.cloud::after {
    width: 60%;
    height: 70%;
    top: -30%;
    right: 10%;
}

/* Nuage 1 - Grand */
.cloud-1 {
    width: 120px;
    height: 50px;
    top: 15%;
    left: -150px;
    animation: floatCloud1 25s linear infinite;
}

@keyframes floatCloud1 {
    0% {
        left: -150px;
    }

    100% {
        left: calc(100% + 150px);
    }
}

/* Nuage 2 - Moyen (droite à gauche) */
.cloud-2 {
    width: 90px;
    height: 40px;
    top: 35%;
    right: -100px;
    animation: floatCloud2 30s linear infinite;
    animation-delay: 3s;
}

@keyframes floatCloud2 {
    0% {
        right: -100px;
    }

    100% {
        right: calc(100% + 100px);
    }
}

/* Nuage 3 - Petit */
.cloud-3 {
    width: 70px;
    height: 30px;
    top: 25%;
    left: -80px;
    animation: floatCloud3 35s linear infinite;
    animation-delay: 7s;
}

@keyframes floatCloud3 {
    0% {
        left: -80px;
    }

    100% {
        left: calc(100% + 80px);
    }
}

/* Nuage 4 - Grand */
.cloud-4 {
    width: 110px;
    height: 45px;
    top: 55%;
    left: -120px;
    animation: floatCloud4 28s linear infinite;
    animation-delay: 5s;
}

@keyframes floatCloud4 {
    0% {
        left: -120px;
    }

    100% {
        left: calc(100% + 120px);
    }
}

/* Nuage 5 - Moyen (droite à gauche) */
.cloud-5 {
    width: 85px;
    height: 38px;
    top: 70%;
    right: -90px;
    animation: floatCloud5 32s linear infinite;
    animation-delay: 10s;
}

@keyframes floatCloud5 {
    0% {
        right: -90px;
    }

    100% {
        right: calc(100% + 90px);
    }
}

/* Nuage 6 - Petit */
.cloud-6 {
    width: 65px;
    height: 28px;
    top: 45%;
    left: -70px;
    animation: floatCloud6 38s linear infinite;
    animation-delay: 2s;
}

@keyframes floatCloud6 {
    0% {
        left: -70px;
    }

    100% {
        left: calc(100% + 70px);
    }
}

/* Nuage 7 - Très grand */
.cloud-7 {
    width: 130px;
    height: 55px;
    top: 10%;
    left: -140px;
    animation: floatCloud7 22s linear infinite;
    animation-delay: 12s;
}

@keyframes floatCloud7 {
    0% {
        left: -140px;
    }

    100% {
        left: calc(100% + 140px);
    }
}

/* Nuage 8 - Moyen (droite à gauche) */
.cloud-8 {
    width: 95px;
    height: 42px;
    top: 65%;
    right: -100px;
    animation: floatCloud8 27s linear infinite;
    animation-delay: 8s;
}

@keyframes floatCloud8 {
    0% {
        right: -100px;
    }

    100% {
        right: calc(100% + 100px);
    }
}

/* Nuage 9 - Petit */
.cloud-9 {
    width: 75px;
    height: 32px;
    top: 80%;
    left: -80px;
    animation: floatCloud9 33s linear infinite;
    animation-delay: 15s;
}

@keyframes floatCloud9 {
    0% {
        left: -80px;
    }

    100% {
        left: calc(100% + 80px);
    }
}

/* Nuage 10 - Moyen (droite à gauche) */
.cloud-10 {
    width: 100px;
    height: 43px;
    top: 50%;
    right: -110px;
    animation: floatCloud10 29s linear infinite;
    animation-delay: 6s;
}

@keyframes floatCloud10 {
    0% {
        right: -110px;
    }

    100% {
        right: calc(100% + 110px);
    }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 50%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Main Title */
.main-title {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #516745;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

/* Handwritten Text */
.handwritten-text {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    text-align: center;
    width: 100%;
}

/* ============================================
   SECTION 2 - TRANSPARENCE ET CHARTE
   ============================================ */

/* Section 2 - Transparence et Charte (fond vert uniforme) */
.section-2 {
    position: relative;
    background-color: #8BA888;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.golden-rule {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.3rem;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

.transparency-title {
    font-family: Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

/* Distributeur SVG */
.vending-machine-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem auto 3rem;
    position: relative;
    z-index: 10;
}

.vending-machine {
    max-width: 220px;
    height: auto;
}

/* Feuilles tombantes */
.leaves-set {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.leaves-set div {
    position: absolute;
    display: block;
}

.leaves-set div img {
    width: 60px;
    height: auto;
}

/* Animation des feuilles tombantes */
@keyframes fallingLeaves {
    0% {
        opacity: 0;
        top: -10%;
        transform: translateX(20px) rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    20% {
        transform: translateX(-20px) rotate(45deg);
    }

    40% {
        transform: translateX(-20px) rotate(90deg);
    }

    60% {
        transform: translateX(20px) rotate(180deg);
    }

    80% {
        transform: translateX(-20px) rotate(180deg);
    }

    100% {
        top: 110%;
        transform: translateX(-20px) rotate(225deg);
    }
}

/* Configuration individuelle des feuilles */
.leaves-set div:nth-child(1) {
    left: 20%;
    animation: fallingLeaves 15s linear infinite;
    animation-delay: -7s;
}

.leaves-set div:nth-child(2) {
    left: 50%;
    animation: fallingLeaves 20s linear infinite;
    animation-delay: -5s;
}

.leaves-set div:nth-child(3) {
    left: 70%;
    animation: fallingLeaves 20s linear infinite;
    animation-delay: 0s;
}

.leaves-set div:nth-child(4) {
    left: 0%;
    animation: fallingLeaves 15s linear infinite;
    animation-delay: -5s;
}

.leaves-set div:nth-child(5) {
    left: 85%;
    animation: fallingLeaves 18s linear infinite;
    animation-delay: -10s;
}

.leaves-set div:nth-child(6) {
    left: 10%;
    animation: fallingLeaves 12s linear infinite;
    animation-delay: 0s;
}

.leaves-set div:nth-child(7) {
    left: 35%;
    animation: fallingLeaves 14s linear infinite;
    animation-delay: -3s;
}

.leaves-set div:nth-child(8) {
    left: 60%;
    animation: fallingLeaves 16s linear infinite;
    animation-delay: -8s;
}

/* Effets de profondeur pour les différents sets */
.leaves-set-2 {
    transform: scale(1.5) rotateY(180deg);
    filter: blur(1px);
    opacity: 0.7;
}

.leaves-set-3 {
    transform: scale(0.8) rotateY(180deg);
    filter: blur(2px);
    opacity: 0.5;
}

/* Contenu vert */
.green-content {
    position: relative;
    z-index: 10;
    width: 50%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.charter-text {
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

/* Badge végétal */
.vegetal-badge {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 50% 45% 50% 55% / 55% 50% 50% 45%;
    display: inline-block;
    margin: 2rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vegetal-badge p {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
}

.explanation-text {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2C2C2C;
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin-top: 2.5rem;
}

/* ============================================
   SECTION 3 - ADDITIFS
   ============================================ */

/* Section 3 - Additifs (fond vert clair) */
.section-3 {
    position: relative;
    background-color: #C8D5B9;
    padding: 0;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
}

/* Fioles animées flottantes */
.flask {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.6;
    z-index: 1;
}

.flask svg {
    width: 100%;
    height: auto;
}

/* Animation de flottement vertical pour les fioles */
@keyframes floatFlask {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

/* Fiole 1 - Gauche haut */
.flask-1 {
    top: 10%;
    left: 5%;
    animation: floatFlask 6s ease-in-out infinite;
}

/* Fiole 2 - Droite haut */
.flask-2 {
    top: 15%;
    right: 8%;
    width: 70px;
    animation: floatFlask 7s ease-in-out infinite;
    animation-delay: -2s;
}

/* Fiole 3 - Gauche milieu */
.flask-3 {
    top: 45%;
    left: 3%;
    width: 90px;
    animation: floatFlask 8s ease-in-out infinite;
    animation-delay: -4s;
}

/* Fiole 4 - Droite milieu */
.flask-4 {
    top: 50%;
    right: 5%;
    width: 75px;
    animation: floatFlask 6.5s ease-in-out infinite;
    animation-delay: -1s;
}

/* Fiole 5 - Gauche bas */
.flask-5 {
    bottom: 15%;
    left: 7%;
    width: 85px;
    animation: floatFlask 7.5s ease-in-out infinite;
    animation-delay: -3s;
}

/* Fiole 6 - Droite bas */
.flask-6 {
    bottom: 10%;
    right: 10%;
    width: 70px;
    animation: floatFlask 6.8s ease-in-out infinite;
    animation-delay: -5s;
}

/* Contenu de la section 3 */
.section-3-content {
    position: relative;
    z-index: 10;
    width: 50%;
    max-width: 700px;
    margin: 0 auto;
}

.section-3-title {
    font-family: Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    letter-spacing: 1.5px;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.section-3-text {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2C2C2C;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

.section-3-highlight {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C2C2C;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-top: 2.5rem;
}

/* Bulles animées sortant des fioles */
.bubble {
    position: absolute;
    background-color: rgba(107, 107, 91, 0.3);
    border: 2px solid rgba(107, 107, 91, 0.5);
    border-radius: 50%;
    z-index: 2;
    animation: riseBubble linear infinite;
}

/* Animation de montée des bulles */
@keyframes riseBubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* Configuration individuelle des 25 bulles */
.bubble-1 {
    width: 20px;
    height: 20px;
    left: 8%;
    bottom: 20%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    left: 12%;
    bottom: 15%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    left: 6%;
    bottom: 25%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.bubble-4 {
    width: 18px;
    height: 18px;
    right: 10%;
    bottom: 18%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.bubble-5 {
    width: 22px;
    height: 22px;
    right: 8%;
    bottom: 22%;
    animation-duration: 9.5s;
    animation-delay: 1.5s;
}

.bubble-6 {
    width: 16px;
    height: 16px;
    right: 12%;
    bottom: 16%;
    animation-duration: 10.5s;
    animation-delay: 2.5s;
}

.bubble-7 {
    width: 12px;
    height: 12px;
    left: 15%;
    bottom: 30%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.bubble-8 {
    width: 28px;
    height: 28px;
    left: 5%;
    bottom: 12%;
    animation-duration: 8.5s;
    animation-delay: 1s;
}

.bubble-9 {
    width: 14px;
    height: 14px;
    left: 10%;
    bottom: 28%;
    animation-duration: 11.5s;
    animation-delay: 2s;
}

.bubble-10 {
    width: 20px;
    height: 20px;
    right: 15%;
    bottom: 20%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.bubble-11 {
    width: 24px;
    height: 24px;
    right: 6%;
    bottom: 24%;
    animation-duration: 10s;
    animation-delay: 3s;
}

.bubble-12 {
    width: 17px;
    height: 17px;
    right: 11%;
    bottom: 17%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.bubble-13 {
    width: 19px;
    height: 19px;
    left: 20%;
    bottom: 19%;
    animation-duration: 8.5s;
    animation-delay: 2.5s;
}

.bubble-14 {
    width: 13px;
    height: 13px;
    left: 25%;
    bottom: 13%;
    animation-duration: 12.5s;
    animation-delay: 0.5s;
}

.bubble-15 {
    width: 26px;
    height: 26px;
    left: 18%;
    bottom: 26%;
    animation-duration: 9.5s;
    animation-delay: 3.5s;
}

.bubble-16 {
    width: 21px;
    height: 21px;
    right: 20%;
    bottom: 21%;
    animation-duration: 10.5s;
    animation-delay: 1s;
}

.bubble-17 {
    width: 15px;
    height: 15px;
    right: 25%;
    bottom: 15%;
    animation-duration: 11.5s;
    animation-delay: 2s;
}

.bubble-18 {
    width: 23px;
    height: 23px;
    right: 18%;
    bottom: 23%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble-19 {
    width: 16px;
    height: 16px;
    left: 30%;
    bottom: 16%;
    animation-duration: 10s;
    animation-delay: 3s;
}

.bubble-20 {
    width: 27px;
    height: 27px;
    left: 35%;
    bottom: 27%;
    animation-duration: 9s;
    animation-delay: 1.5s;
}

.bubble-21 {
    width: 14px;
    height: 14px;
    right: 30%;
    bottom: 14%;
    animation-duration: 11s;
    animation-delay: 2.5s;
}

.bubble-22 {
    width: 18px;
    height: 18px;
    right: 35%;
    bottom: 18%;
    animation-duration: 12s;
    animation-delay: 0.5s;
}

.bubble-23 {
    width: 22px;
    height: 22px;
    left: 40%;
    bottom: 22%;
    animation-duration: 8.5s;
    animation-delay: 3.5s;
}

.bubble-24 {
    width: 17px;
    height: 17px;
    right: 40%;
    bottom: 17%;
    animation-duration: 10.5s;
    animation-delay: 1s;
}

.bubble-25 {
    width: 25px;
    height: 25px;
    left: 45%;
    bottom: 25%;
    animation-duration: 9.5s;
    animation-delay: 2s;
}

/* Conteneurs de fioles avec bulles */
.flask-container {
    position: absolute;
    z-index: 1;
}

.flask-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bulles sortant des fioles */
.flask-bubble {
    position: absolute;
    background-color: rgba(107, 107, 91, 0.4);
    border: 2px solid rgba(107, 107, 91, 0.6);
    border-radius: 50%;
    z-index: 1;
    animation: riseFromFlask linear infinite;
}

/* Animation de montée depuis la fiole */
@keyframes riseFromFlask {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-150px) scale(0.3);
        opacity: 0;
    }
}

/* Fiole 1 - Petite, gauche haut */
.flask-container-1 {
    width: 60px;
    top: 8%;
    left: 5%;
}

.flask-bubble-1-1 {
    width: 12px;
    height: 12px;
    top: 5px;
    left: 24px;
    animation-duration: 4s;
    animation-delay: 0s;
}

.flask-bubble-1-2 {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 28px;
    animation-duration: 5s;
    animation-delay: 1s;
}

/* Fiole 2 - Moyenne, droite haut */
.flask-container-2 {
    width: 80px;
    top: 12%;
    right: 8%;
}

.flask-bubble-2-1 {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 32px;
    animation-duration: 4.5s;
    animation-delay: 0.5s;
}

.flask-bubble-2-2 {
    width: 10px;
    height: 10px;
    top: 12px;
    left: 36px;
    animation-duration: 5.5s;
    animation-delay: 1.5s;
}

/* Fiole 3 - Grande, gauche */
.flask-container-3 {
    width: 100px;
    top: 25%;
    left: 3%;
}

.flask-bubble-3-1 {
    width: 16px;
    height: 16px;
    top: 10px;
    left: 40px;
    animation-duration: 5s;
    animation-delay: 0s;
}

.flask-bubble-3-2 {
    width: 12px;
    height: 12px;
    top: 15px;
    left: 44px;
    animation-duration: 6s;
    animation-delay: 2s;
}

/* Fiole 4 - Petite, droite */
.flask-container-4 {
    width: 65px;
    top: 28%;
    right: 6%;
}

.flask-bubble-4-1 {
    width: 11px;
    height: 11px;
    top: 6px;
    left: 26px;
    animation-duration: 4.2s;
    animation-delay: 0.8s;
}

.flask-bubble-4-2 {
    width: 9px;
    height: 9px;
    top: 11px;
    left: 29px;
    animation-duration: 5.2s;
    animation-delay: 1.8s;
}

/* Fiole 5 - Moyenne, centre gauche */
.flask-container-5 {
    width: 75px;
    top: 40%;
    left: 15%;
}

.flask-bubble-5-1 {
    width: 13px;
    height: 13px;
    top: 7px;
    left: 30px;
    animation-duration: 4.8s;
    animation-delay: 0.3s;
}

.flask-bubble-5-2 {
    width: 10px;
    height: 10px;
    top: 12px;
    left: 33px;
    animation-duration: 5.8s;
    animation-delay: 1.3s;
}

/* Fiole 6 - Grande, centre droite */
.flask-container-6 {
    width: 95px;
    top: 42%;
    right: 12%;
}

.flask-bubble-6-1 {
    width: 15px;
    height: 15px;
    top: 9px;
    left: 38px;
    animation-duration: 5.2s;
    animation-delay: 0.6s;
}

.flask-bubble-6-2 {
    width: 12px;
    height: 12px;
    top: 14px;
    left: 41px;
    animation-duration: 6.2s;
    animation-delay: 2.1s;
}

/* Fiole 7 - Petite, gauche milieu */
.flask-container-7 {
    width: 58px;
    top: 55%;
    left: 8%;
}

.flask-bubble-7-1 {
    width: 10px;
    height: 10px;
    top: 5px;
    left: 23px;
    animation-duration: 4.3s;
    animation-delay: 0.2s;
}

.flask-bubble-7-2 {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 26px;
    animation-duration: 5.3s;
    animation-delay: 1.2s;
}

/* Fiole 8 - Moyenne, droite milieu */
.flask-container-8 {
    width: 78px;
    top: 58%;
    right: 10%;
}

.flask-bubble-8-1 {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 31px;
    animation-duration: 4.7s;
    animation-delay: 0.7s;
}

.flask-bubble-8-2 {
    width: 11px;
    height: 11px;
    top: 13px;
    left: 34px;
    animation-duration: 5.7s;
    animation-delay: 1.7s;
}

/* Fiole 9 - Grande, gauche bas */
.flask-container-9 {
    width: 105px;
    top: 70%;
    left: 4%;
}

.flask-bubble-9-1 {
    width: 17px;
    height: 17px;
    top: 11px;
    left: 42px;
    animation-duration: 5.5s;
    animation-delay: 0.4s;
}

.flask-bubble-9-2 {
    width: 13px;
    height: 13px;
    top: 16px;
    left: 45px;
    animation-duration: 6.5s;
    animation-delay: 2.4s;
}

/* Fiole 10 - Petite, droite bas */
.flask-container-10 {
    width: 62px;
    top: 72%;
    right: 7%;
}

.flask-bubble-10-1 {
    width: 11px;
    height: 11px;
    top: 6px;
    left: 25px;
    animation-duration: 4.4s;
    animation-delay: 0.9s;
}

.flask-bubble-10-2 {
    width: 9px;
    height: 9px;
    top: 11px;
    left: 28px;
    animation-duration: 5.4s;
    animation-delay: 1.9s;
}

/* Fiole 11 - Moyenne, centre gauche bas */
.flask-container-11 {
    width: 72px;
    top: 85%;
    left: 18%;
}

.flask-bubble-11-1 {
    width: 13px;
    height: 13px;
    top: 7px;
    left: 29px;
    animation-duration: 4.6s;
    animation-delay: 0.1s;
}

.flask-bubble-11-2 {
    width: 10px;
    height: 10px;
    top: 12px;
    left: 32px;
    animation-duration: 5.6s;
    animation-delay: 1.1s;
}

/* Fiole 12 - Grande, centre droite bas */
.flask-container-12 {
    width: 92px;
    top: 88%;
    right: 15%;
}

.flask-bubble-12-1 {
    width: 15px;
    height: 15px;
    top: 9px;
    left: 37px;
    animation-duration: 5.1s;
    animation-delay: 0.5s;
}

.flask-bubble-12-2 {
    width: 12px;
    height: 12px;
    top: 14px;
    left: 40px;
    animation-duration: 6.1s;
    animation-delay: 2.2s;
}

/* Fiole 13 - Petite, centre */
.flask-container-13 {
    width: 55px;
    top: 18%;
    left: 35%;
}

.flask-bubble-13-1 {
    width: 10px;
    height: 10px;
    top: 5px;
    left: 22px;
    animation-duration: 4.1s;
    animation-delay: 0.3s;
}

.flask-bubble-13-2 {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 25px;
    animation-duration: 5.1s;
    animation-delay: 1.3s;
}

/* Fiole 14 - Moyenne, centre */
.flask-container-14 {
    width: 85px;
    top: 32%;
    left: 45%;
}

.flask-bubble-14-1 {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 34px;
    animation-duration: 4.9s;
    animation-delay: 0.6s;
}

.flask-bubble-14-2 {
    width: 11px;
    height: 11px;
    top: 13px;
    left: 37px;
    animation-duration: 5.9s;
    animation-delay: 1.6s;
}

/* Fiole 15 - Grande, centre */
.flask-container-15 {
    width: 98px;
    top: 48%;
    left: 38%;
}

.flask-bubble-15-1 {
    width: 16px;
    height: 16px;
    top: 10px;
    left: 39px;
    animation-duration: 5.3s;
    animation-delay: 0.2s;
}

.flask-bubble-15-2 {
    width: 12px;
    height: 12px;
    top: 15px;
    left: 42px;
    animation-duration: 6.3s;
    animation-delay: 2.3s;
}

/* Fiole 16 - Petite, centre */
.flask-container-16 {
    width: 68px;
    top: 62%;
    left: 42%;
}

.flask-bubble-16-1 {
    width: 12px;
    height: 12px;
    top: 6px;
    left: 27px;
    animation-duration: 4.5s;
    animation-delay: 0.8s;
}

.flask-bubble-16-2 {
    width: 9px;
    height: 9px;
    top: 11px;
    left: 30px;
    animation-duration: 5.5s;
    animation-delay: 1.8s;
}

/* Fiole 17 - Moyenne, centre */
.flask-container-17 {
    width: 82px;
    top: 76%;
    left: 50%;
}

.flask-bubble-17-1 {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 33px;
    animation-duration: 4.8s;
    animation-delay: 0.4s;
}

.flask-bubble-17-2 {
    width: 11px;
    height: 11px;
    top: 13px;
    left: 36px;
    animation-duration: 5.8s;
    animation-delay: 1.4s;
}

/* Fiole 18 - Grande, centre bas */
.flask-container-18 {
    width: 102px;
    top: 90%;
    left: 55%;
}

.flask-bubble-18-1 {
    width: 16px;
    height: 16px;
    top: 10px;
    left: 41px;
    animation-duration: 5.4s;
    animation-delay: 0.7s;
}

.flask-bubble-18-2 {
    width: 13px;
    height: 13px;
    top: 15px;
    left: 44px;
    animation-duration: 6.4s;
    animation-delay: 2.5s;
}

/* Fiole 19 - Petite, droite centre */
.flask-container-19 {
    width: 64px;
    top: 22%;
    right: 20%;
}

.flask-bubble-19-1 {
    width: 11px;
    height: 11px;
    top: 6px;
    left: 26px;
    animation-duration: 4.3s;
    animation-delay: 0.5s;
}

.flask-bubble-19-2 {
    width: 9px;
    height: 9px;
    top: 11px;
    left: 29px;
    animation-duration: 5.3s;
    animation-delay: 1.5s;
}

/* Fiole 20 - Moyenne, droite centre */
.flask-container-20 {
    width: 76px;
    top: 36%;
    right: 25%;
}

.flask-bubble-20-1 {
    width: 13px;
    height: 13px;
    top: 7px;
    left: 30px;
    animation-duration: 4.7s;
    animation-delay: 0.1s;
}

.flask-bubble-20-2 {
    width: 10px;
    height: 10px;
    top: 12px;
    left: 33px;
    animation-duration: 5.7s;
    animation-delay: 1.1s;
}

/* Fiole 21 - Grande, droite centre */
.flask-container-21 {
    width: 96px;
    top: 50%;
    right: 18%;
}

.flask-bubble-21-1 {
    width: 15px;
    height: 15px;
    top: 9px;
    left: 38px;
    animation-duration: 5.2s;
    animation-delay: 0.9s;
}

.flask-bubble-21-2 {
    width: 12px;
    height: 12px;
    top: 14px;
    left: 41px;
    animation-duration: 6.2s;
    animation-delay: 2.6s;
}

/* Fiole 22 - Petite, droite centre bas */
.flask-container-22 {
    width: 66px;
    top: 64%;
    right: 22%;
}

.flask-bubble-22-1 {
    width: 12px;
    height: 12px;
    top: 6px;
    left: 27px;
    animation-duration: 4.4s;
    animation-delay: 0.3s;
}

.flask-bubble-22-2 {
    width: 9px;
    height: 9px;
    top: 11px;
    left: 30px;
    animation-duration: 5.4s;
    animation-delay: 1.3s;
}

/* Fiole 23 - Moyenne, droite bas */
.flask-container-23 {
    width: 80px;
    top: 78%;
    right: 28%;
}

.flask-bubble-23-1 {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 32px;
    animation-duration: 4.9s;
    animation-delay: 0.6s;
}

.flask-bubble-23-2 {
    width: 11px;
    height: 11px;
    top: 13px;
    left: 35px;
    animation-duration: 5.9s;
    animation-delay: 1.6s;
}

/* Fiole 24 - Grande, gauche centre */
.flask-container-24 {
    width: 90px;
    top: 35%;
    left: 25%;
}

.flask-bubble-24-1 {
    width: 15px;
    height: 15px;
    top: 9px;
    left: 36px;
    animation-duration: 5.1s;
    animation-delay: 0.2s;
}

.flask-bubble-24-2 {
    width: 12px;
    height: 12px;
    top: 14px;
    left: 39px;
    animation-duration: 6.1s;
    animation-delay: 2.2s;
}

/* Fiole 25 - Moyenne, centre haut */
.flask-container-25 {
    width: 70px;
    top: 15%;
    left: 50%;
}

.flask-bubble-25-1 {
    width: 13px;
    height: 13px;
    top: 7px;
    left: 28px;
    animation-duration: 4.6s;
    animation-delay: 0.4s;
}

.flask-bubble-25-2 {
    width: 10px;
    height: 10px;
    top: 12px;
    left: 31px;
    animation-duration: 5.6s;
    animation-delay: 1.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .flask-container {
        width: 50px !important;
    }

    .flask-bubble {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Animation de secousse pour les fioles */
@keyframes shakeFlask {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    10% {
        transform: translate(-2px, -1px) rotate(-1deg);
    }

    20% {
        transform: translate(2px, 1px) rotate(1deg);
    }

    30% {
        transform: translate(-1px, 2px) rotate(-0.5deg);
    }

    40% {
        transform: translate(1px, -2px) rotate(0.5deg);
    }

    50% {
        transform: translate(-2px, 1px) rotate(-1deg);
    }

    60% {
        transform: translate(2px, -1px) rotate(1deg);
    }

    70% {
        transform: translate(-1px, -2px) rotate(-0.5deg);
    }

    80% {
        transform: translate(1px, 2px) rotate(0.5deg);
    }

    90% {
        transform: translate(-2px, -1px) rotate(-1deg);
    }
}

/* Appliquer l'animation de secousse à toutes les fioles avec des délais aléatoires */
.flask-container {
    animation: shakeFlask 3s ease-in-out infinite;
}

.flask-container-1 {
    animation-delay: 0s;
    animation-duration: 2.8s;
}

.flask-container-2 {
    animation-delay: 0.5s;
    animation-duration: 3.2s;
}

.flask-container-3 {
    animation-delay: 1s;
    animation-duration: 2.9s;
}

.flask-container-4 {
    animation-delay: 1.5s;
    animation-duration: 3.1s;
}

.flask-container-5 {
    animation-delay: 0.3s;
    animation-duration: 3s;
}

.flask-container-6 {
    animation-delay: 0.8s;
    animation-duration: 2.7s;
}

.flask-container-7 {
    animation-delay: 1.2s;
    animation-duration: 3.3s;
}

.flask-container-8 {
    animation-delay: 0.2s;
    animation-duration: 2.95s;
}

.flask-container-9 {
    animation-delay: 0.7s;
    animation-duration: 3.05s;
}

.flask-container-10 {
    animation-delay: 1.3s;
    animation-duration: 2.85s;
}

.flask-container-11 {
    animation-delay: 0.4s;
    animation-duration: 3.15s;
}

.flask-container-12 {
    animation-delay: 0.9s;
    animation-duration: 2.75s;
}

.flask-container-19 {
    animation-delay: 1.1s;
    animation-duration: 3.25s;
}

.flask-container-20 {
    animation-delay: 0.6s;
    animation-duration: 2.9s;
}

.flask-container-21 {
    animation-delay: 1.4s;
    animation-duration: 3.1s;
}

.flask-container-22 {
    animation-delay: 0.1s;
    animation-duration: 2.8s;
}

.flask-container-23 {
    animation-delay: 1.6s;
    animation-duration: 3.2s;
}

/* ============================================
   SECTION CONTACT
   ============================================ */

.section-contact {
    background-color: #E8E4D4;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-content {
    width: 100%;
    max-width: 450px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Titres de contact */
.contact-title {
    font-family: Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: #516745;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    color: #2C2C2C;
    background-color: white;
    border: 2px solid #A9A791;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #516745;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #8BA888 0%, #6B8A68 100%);
    border: 3px solid #516745;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(81, 103, 69, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn .btn-icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.submit-btn .btn-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.submit-btn .btn-hover-text {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #6B8A68 0%, #516745 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(81, 103, 69, 0.5);
}

.submit-btn:hover .btn-icon {
    transform: rotate(20deg) scale(1.2);
}

.submit-btn:hover .btn-text {
    opacity: 0;
    transform: translateY(-10px);
}

.submit-btn:hover .btn-hover-text {
    opacity: 1;
    transform: translateY(0);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(81, 103, 69, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.footer-section h3 {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #8BA888;
}

.footer-section h4 {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #A9A791;
}

.footer-section p {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #D9D7C3;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    color: #D9D7C3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8BA888;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #8BA888;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    background-color: #516745;
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4A4A4A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #A9A791;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #A9A791;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8BA888;
}

.footer-links span {
    color: #4A4A4A;
}

/* ============================================
   DESIGN GLOBAL - OCCUPATION MAXIMALE (DESKTOP)
   ============================================ */

.section-1,
.section-2,
.section-3,
.section-contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 2rem 0;
}

.section-1 .content-wrapper,
.section-3-content,
.green-content,
.contact-content {
    width: 100%;
    max-width: 100%;
    /* Occupation totale demandée */
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-1 .content-wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   DESIGN RESPONSIVE FINAL (MAX OCCUPANCY)
   ============================================ */

/* TABLETTES (max 1024px) */
@media (max-width: 1024px) {
    .navigation-bar {
        font-size: 1.4rem;
        padding: 1.2rem 1.5rem;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .handwritten-text {
        font-size: 2.22rem;
    }

    .transparency-title,
    .section-3-title {
        font-size: 3rem;
    }

    .contact-title {
        font-size: 3.5rem;
    }

    .section-1 .content-wrapper,
    .section-3-content,
    .green-content {
        width: 96%;
    }

    /* Reculer les fioles pour laisser la place au texte large */
    .flask-container-19,
    .flask-container-20,
    .flask-container-21,
    .flask-container-22,
    .flask-container-23 {
        display: none;
    }

    .flask-container {
        width: 60px !important;
        opacity: 0.6;
    }

    .flask-container-1,
    .flask-container-3,
    .flask-container-5,
    .flask-container-7,
    .flask-container-9,
    .flask-container-11 {
        left: 1% !important;
    }

    .flask-container-2,
    .flask-container-4,
    .flask-container-6,
    .flask-container-8,
    .flask-container-10,
    .flask-container-12 {
        right: 1% !important;
    }
}

/* MOBILES (max 768px) */
@media (max-width: 768px) {
    .logo-image {
        max-width: 180px;
    }

    .navigation-bar {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        padding: 0.7rem 0 !important;
        background-color: rgba(169, 167, 145, 0.95);
        backdrop-filter: blur(10px);
        width: 100% !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .burger-menu {
        display: none !important;
    }

    .nav-content {
        position: relative !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        left: auto !important;
        transform: none !important;
    }

    .navigation-bar a {
        flex: 1 1 33.333%;
        padding: 0.6rem 0.2rem;
        font-size: 0.8rem;
        color: #2C2C2C;
        text-align: center;
        border-radius: 6px;
        transition: all 0.3s ease;
        background-color: transparent;
        white-space: nowrap;
        display: block;
    }

    .navigation-bar a:hover,
    .navigation-bar a.active-link {
        background-color: #516745;
        color: white;
        transform: scale(1.05);
    }

    .navigation-bar a.active-link::after {
        display: none;
    }

    .separator {
        display: none !important;
    }

    .navigation-bar::before,
    .navigation-bar::after {
        display: none !important;
    }

    .logo-section,
    .navigation-bar,
    section,
    footer {
        width: 100% !important;
        margin: 0 !important;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .handwritten-text {
        font-size: 1.8rem;
    }

    .transparency-title,
    .section-3-title {
        font-size: 2.2rem;
    }

    .charter-text {
        font-size: 1.4rem;
    }

    .explanation-text {
        font-size: 1.1rem;
    }

    .section-3-text {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    .section-1 .content-wrapper,
    .section-3-content,
    .contact-content,
    .green-content {
        width: 100%;
        padding: 0 15px;
    }

    .section-1 .content-wrapper {
        height: 80vh;
    }

    /* Masquer presque toutes les fioles sur tablette pour aérer */
    .flask-container {
        display: none;
    }

    .flask-container-1,
    .flask-container-2,
    .flask-container-3,
    .flask-container-4,
    .flask-container-9,
    .flask-container-10,
    .flask-container-11,
    .flask-container-12 {
        display: block !important;
        width: 40px !important;
        opacity: 0.5;
    }

    .flask-container-1,
    .flask-container-3,
    .flask-container-9,
    .flask-container-11 {
        left: 2% !important;
    }

    .flask-container-2,
    .flask-container-4,
    .flask-container-10,
    .flask-container-12 {
        right: 2% !important;
    }

    /* Positionnement spécifique pour éviter les superpositions sur la hauteur */
    .flask-container-3 {
        top: 30% !important;
    }

    .flask-container-4 {
        top: 35% !important;
    }

    .flask-container-9 {
        top: 55% !important;
    }

    .flask-container-10 {
        top: 60% !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* PETITS MOBILES (max 480px) */
@media (max-width: 480px) {
    .logo-image {
        max-width: 140px;
    }

    .navigation-bar {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000;
        font-size: 0.75rem;
        letter-spacing: 0;
        padding: 0.4rem 0 !important;
        /* Pas de padding latéral */
        gap: 0;
        justify-content: center;
        /* Centrage strict */
        background-color: rgba(169, 167, 145, 0.95);
        backdrop-filter: blur(10px);
        width: 100% !important;
        border-radius: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .navigation-bar::before,
    .navigation-bar::after {
        display: none !important;
    }

    .navigation-bar a {
        padding: 0.4rem 0.1rem;
        background-color: transparent;
        border-radius: 20px;
        white-space: nowrap;
        flex: 1 1 0px;
        /* Largeur strictement égale */
        width: 0;
        min-width: 0;
        text-align: center;
        color: #2C2C2C;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation-bar a.active-link {
        background-color: #516745;
        color: white;
        box-shadow: 0 2px 6px rgba(81, 103, 69, 0.4);
    }

    .navigation-bar a.active-link::after {
        display: none;
    }

    .separator {
        display: none;
    }

    .navigation-bar::before,
    .navigation-bar::after {
        display: none !important;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .handwritten-text {
        font-size: 1.4rem;
    }

    .transparency-title,
    .section-3-title {
        font-size: 1.8rem;
    }

    .charter-text {
        font-size: 1.2rem;
    }

    .explanation-text {
        font-size: 0.95rem;
    }

    .section-3-text {
        font-size: 1.1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .section-contact {
        padding: 3rem 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .section-1 .content-wrapper,
    .section-3-content,
    .green-content {
        width: 100%;
        padding: 0 10px;
    }

    .section-1 .content-wrapper {
        height: 75vh;
    }

    /* UN PEU PLUS DE FIOLES SUR TÉLÉPHONE (Total 6) */
    .flask-container {
        display: none !important;
    }

    .flask-container-1,
    .flask-container-2,
    .flask-container-3,
    .flask-container-4,
    .flask-container-11,
    .flask-container-12 {
        display: block !important;
        width: 30px !important;
        opacity: 0.3;
    }

    .flask-container-1 {
        left: 1% !important;
        top: 15% !important;
    }

    .flask-container-2 {
        right: 1% !important;
        top: 20% !important;
    }

    .flask-container-3 {
        left: 1% !important;
        top: 40% !important;
    }

    .flask-container-4 {
        right: 1% !important;
        top: 45% !important;
    }

    .flask-container-11 {
        left: 1% !important;
        top: 70% !important;
    }

    .flask-container-12 {
        right: 1% !important;
        top: 75% !important;
    }
}