@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;600;700&display=swap');

.modal-content textarea {
    width: 98% !important;
    min-height: 140px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #FFDBAA;
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.02em;
    background-color: #ffffff;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content textarea:focus {
    border-color: #71797E;
    box-shadow: 0 0 0 3px rgba(250, 161, 182, 0.2);
    outline: none;
}/* Import de la police depuis Google Fonts */


html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fef5f1;
    color: #2c3e50;
    line-height: 1.8;
    letter-spacing: 0.03em;
    word-spacing: 0.08em;
}

p, li {
    /*line-height: 1.8;
    letter-spacing: 0.03em;
    word-spacing: 0.08em;
    margin-bottom: 1.2em;*/
	font-size:1.6rem;
}

h1, h2, h3 {
    /*color: #71797E;*/
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
    line-height: 1.4;
}


h1, h2, h3, h4, .admin-nav a, .price {
    font-family: 'Lora', serif;
}

.content {
    max-width:1100px;
    margin: 10px auto 120px auto;
    padding: 60px 30px;
}

.content a {

    text-decoration:none;
    color:#111111;
}

.header {
    background-color: #FFFFFF;
    color: #2c3e50;
    padding: 20px;
    text-align: center;
    /*border-bottom: 3px solid #71797E;*/
}

    .header img.logo {
        width: 300px;
        height: auto;
        display: block;
        margin: 0 auto 20px auto;
    }



nav {
    display: flex;
    justify-content: center; /* centrer horizontalement */
    gap: 30px;
    align-items: center;
    position: relative;
    padding: 20px 0;
    font-family: 'Open Sans', sans-serif;
}

    nav a {
        text-decoration: none;
        color: #0D1B2A;
        font-weight: 500;
        position: relative;
        text-transform: uppercase;
        text-decoration: none;
    }


        nav a:hover,
        nav a.active {
            color: #e67f51; /* couleur au survol ou si actif */
            text-decoration: none;
        }

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    top: 100%;
    left: 0;
    flex-direction: column;
    text-align: left;
}

    .dropdown-content a {
        padding: 10px 15px;
        display: block;
        color: #0D1B2A;
        white-space: nowrap;
    }

        .dropdown-content a:hover {
            background-color: #FEF5F1;
        }

.dropdown:hover .dropdown-content {
    display: flex;
}






.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    float: left;
    margin-right: 20px;
}

footer {
    background-color: #71797E;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    clear: both;
}



.button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ffc9aa;
    color: #2C3E50;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    font-weight: 400;
    text-transform:uppercase;
    font-size: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
    cursor: pointer;
    text-align:left;
    /*transition: transform 0.2s ease, box-shadow 0.3s ease;*/
}

    .button:hover {
        background-color: #ffe3d3;
    }

#contactForm {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 30px auto;
}

    #contactForm label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

    #contactForm input,
    #contactForm textarea {
        width: 98% !important;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #FFDBAA;
        border-radius: 5px;
        font-size: 1.5rem;
        font-family: 'DM Sans', sans-serif;
        line-height: 1.6;
        letter-spacing: 0.02em;
    }

        #contactForm input:focus,
        #contactForm textarea:focus {
            outline: none;
            border-color: #71797E;
            box-shadow: 0 0 0 2px rgba(250, 161, 182, 0.2);
        }

        #contactForm .aspNetButton,
        #contactForm input[type="submit"],
        #contactForm button {
            background-color: #71797E;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
        }

            #contactForm .aspNetButton:hover,
            #contactForm input[type="submit"]:hover,
            #contactForm button:hover {
                background-color: #ffc9aa;
            }



.accordion-toggle {
    background-color: #FFFFFF;
    color: #2c3e50;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    border-radius: 5px;
}

    .accordion-toggle:hover {
        background-color: #FFDBAA;
    }

.accordion-panel {
    padding: 0 15px;
    background-color: #FFFFFF;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

    .accordion-panel p {
        margin: 15px 0;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 98% !important;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .modal-content input {
        width: 98% !important;
        padding: 10px;
        margin-top: 8px;
        margin-bottom: 16px;
        border: 1px solid #FFDBAA;
        border-radius: 4px;
    }

.modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5em;
    color: #666;
    cursor: pointer;
}

.custom-footer {
    background-color: #FFFFFF;
    text-align: center;
    padding: 30px 15px;
    /*margin-top: 60px;*/
    /*border-top: 1px solid #FFDBAA;*/
}

    .custom-footer .footer-links {
        margin-bottom: 10px;
    }

        .custom-footer .footer-links a {
            margin: 0 12px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            text-transform:uppercase;
        }

            .custom-footer .footer-links a:hover {
             
                color: #e67f51; /* couleur au survol ou si actif */
                text-decoration: none;
            }

    .custom-footer .footer-social {
        margin: 10px 0;
    }

.footer-social a {
    text-decoration: none;
}

.header-social {
    text-align: right;
    margin-top: -40px;
    margin-right: 15px;
}

    .header-social a {
        margin: 0 8px;
        color: #71797E;
        font-size: 2rem;
        transition: color 0.3s ease;
        text-decoration: none;
    }

        .header-social a:hover {
            color: #e68ba2;
        }


.affiliations {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    /*border-top: 2px solid #FFDBAA;*/
    margin-top: 60px;
	
	
}

blockquote
{
	font-size:1.6rem !important;
}


.affiliations-title {
    font-size: 1.6rem;
    color: #71797E;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    font-family: 'DM Sans', sans-serif;
}

.affiliations-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

    .affiliations-logos img {
        max-height: 80px;
        max-width: 200px;
        object-fit: contain;
        filter: grayscale(0.1);
        transition: transform 0.3s ease;
    }

        .affiliations-logos img:hover {
            transform: scale(1.05);
        }

.intro-video {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    margin: 40px auto;
    border-radius: 12px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.video-title {
    font-family: 'DM Sans', sans-serif;
    color: #71797E;
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.intro-video video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #FFDBAA;
    margin-top: 40px;
}



    .page-banner .inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .page-banner img {
        width: 100%;
        height: auto;
        display: block;
        /* facultatif pour style doux */
    }



.gallery-title {
    font-family: 'DM Sans', sans-serif;
    color: #71797E;
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

    .gallery-images img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        max-height: 280px;
        object-fit: cover;
    }

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

.nourishment-gallery {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

    .nourishment-gallery .gallery-title {
        font-family: 'DM Sans', sans-serif;
        color: #71797E;
        font-size: 1.6rem;
        margin-bottom: 30px;
        letter-spacing: 0.03em;
    }

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

    .image-grid img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        object-fit: cover;
    }

        .image-grid img:hover {
            transform: scale(1.02);
        }
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

    .burger div {
        width: 25px;
        height: 3px;
        background-color: #0D1B2A;
    }

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #ccc;
        z-index: 1000;
    }

        nav.active {
            display: flex;
        }

    .burger {
        display: flex;
    }
}

