html, body {
    min-height: 100%;
}

body {
    background: linear-gradient(to bottom, #f5f1eb, #ebe3d8);
    color: #1f1f1f;
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* MENU */

nav {
    padding: 18px 10px;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    border-bottom: 1px solid #d8d0c5;
    z-index: 20;
}

nav a {
    display: inline-block;
    text-align: center;
    margin: 6px 8px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    color: #5f7d6e;
}

/* BANNIÈRES */

.bannierephrase {
    width: 100%;
    text-align: center;
    padding: 16px 10px;
    background: rgba(255,255,255,0.70);
    border-bottom: 1px solid #d8d0c5;
    font-size: 22px;
    letter-spacing: 2px;
    color: #5f7d6e;
    font-style: italic;
    box-sizing: border-box;
}

.bannierepdf {
    display: block;
    width: 100%;
    padding: 14px 10px;
    background: #5f7d6e;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    font-style: italic;
    box-sizing: border-box;
}

.bannierepdf:hover {
    background: #1f1f1f;
}

/* STRUCTURE */

section {
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 60px auto;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 58px;
    letter-spacing: 5px;
    color: #5f7d6e;
    margin-bottom: 25px;
}

h2 {
    font-size: 32px;
    font-weight: normal;
    color: #6d8a78;
}

p,
li {
    font-size: 20px;
    line-height: 1.7;
}

ul {
    text-align: left;
    display: inline-block;
}

/* BLOCS */

.carte {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border-radius: 25px;
    padding: 35px;
    margin: 35px auto;
    border: 1px solid #ddd3c7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.appel {
    margin-top: 45px;
    padding: 40px;
    background: rgba(255,255,255,0.65);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* BOUTONS */

.bouton {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 35px;
    border-radius: 50px;
    border: 1px solid #5f7d6e;
    background-color: #5f7d6e;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.bouton:hover {
    background-color: #1f1f1f;
    color: white;
    transform: scale(1.03);
}

.carte .bouton {
    margin-top: 15px;
}

/* TEXTES */

.citation {
    font-style: italic;
    font-size: 23px;
    margin-top: 35px;
    color: #5e554a;
}

.grandecitation {
    font-size: 38px;
    line-height: 1.4;
    margin-top: 45px;
    color: #5f7d6e;
    font-weight: bold;
}

/* LOGO */

.logo {
    width: 160px;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    opacity: 0.92;
}

/* GALERIES */

.galerie {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.photo {
    width: 180px;
    height: 320px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.photo:hover {
    transform: scale(1.03);
}

/* VIDÉOS */

video {
    margin-top: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.videoverticale {
    width: 320px;
    max-width: 100%;
    border-radius: 25px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FOOTER */

footer {
    padding: 45px 20px;
    text-align: center;
    border-top: 1px solid #d8d0c5;
    color: #6d6258;
    font-size: 15px;
    line-height: 1.8;
    background-color: rgba(255,255,255,0.4);
    margin-top: auto;
}

footer p {
    font-size: 15px;
    line-height: 1.6;
}

/* MOBILE */

@media screen and (max-width: 768px) {

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 12px 8px;
    }

    nav a {
        width: auto;
        padding: 8px 12px;
        font-size: 14px;
        margin: 0;
        background: rgba(255,255,255,0.75);
        border-radius: 20px;
    }

    .bannierephrase {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 12px 8px;
    }

    .bannierepdf {
        font-size: 15px;
        padding: 12px 8px;
    }

    section {
        margin: 35px auto;
        padding: 14px;
    }

    h1 {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    h2 {
        font-size: 24px;
    }

    p,
    li {
        font-size: 17px;
        line-height: 1.6;
    }

    .carte,
    .appel {
        padding: 22px;
        margin: 24px auto;
        border-radius: 20px;
    }

    .bouton {
        width: 100%;
        box-sizing: border-box;
        font-size: 17px;
        padding: 15px;
        margin-top: 12px;
    }

    .logo {
        width: 110px;
        max-width: 70%;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .citation {
        font-size: 19px;
        margin-top: 25px;
    }

    .grandecitation {
        font-size: 30px;
    }

    .photo {
        width: 140px;
        height: 250px;
    }

}

 /* WHATSAPP FLOTTANT */

.whatsappfixe {
    display: block !important;
    position: fixed !important;
    bottom: 18px !important;
    right: 18px !important;
    background: #25D366 !important;
    color: white !important;
    padding: 18px 24px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 18px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
    z-index: 999999 !important;
}

.whatsappfixe:hover {
    background: #1f1f1f !important;
}

@media screen and (max-width: 768px) {

    body {
        padding-bottom: 90px;
    }

    .whatsappfixe {
        display: block !important;
        position: fixed !important;
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        text-align: center !important;
        padding: 18px !important;
        font-size: 18px !important;
        border-radius: 50px !important;
        z-index: 999999 !important;
    }

}   }

}