/*====================
1. VARIABLES & IMPORTS
====================*/
:root {
    --lotus-pond: #576049;
    --summer-twilight: #7A4547;
    --bark: #56382E;
    --alabaster: #F7F1DF;
    --soft-lichen: #A9B8A0;
    --lavender-mist: #D1C0BC;
}

@import url('https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css');

/*====================
2. RESET & BASE STYLES
====================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--bark);
    background-color: var(--alabaster);
    font-size: 16px;
}

/*====================
3. TYPOGRAPHY
====================*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--lotus-pond);
}

h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; line-height: 1.3; margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; line-height: 1.4; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; line-height: 1.4; margin-bottom: 0.8rem; }

/* Styles des titres de section */
section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--lotus-pond);
}

section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 2px;
    background: var(--summer-twilight);
    transition: width 0.3s ease;
}

section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background: var(--soft-lichen);
    transition: width 0.3s ease;
}

.script-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--summer-twilight);
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0.5rem 0 1.5rem;
}

/*====================
4. LAYOUT & CONTAINERS
====================*/
.section {
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.03);
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/*====================
5. COMPONENTS
====================*/
/* 5.1 Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--summer-twilight);
    color: var(--alabaster);
}

.btn-primary:hover {
    background-color: var(--lotus-pond);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--lotus-pond);
    color: var(--lotus-pond);
}

.btn-secondary:hover {
    background-color: var(--lotus-pond);
    color: var(--alabaster);
}

/*====================
5. COMPONENTS
====================*/
/* 5.1 Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--summer-twilight);
    color: var(--alabaster);
}

.btn-primary:hover {
    background-color: var(--lotus-pond);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--lotus-pond);
    color: var(--lotus-pond);
}

.btn-secondary:hover {
    background-color: var(--lotus-pond);
    color: var(--alabaster);
}

/* 5.2 Navigation */
.navbar {
    background-color: var(--alabaster);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: 45px;
    height: 45px;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links,
.nav-links ul,
.dropdown-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--summer-twilight);
    transition: width 0.3s ease;
}

.nav-links a:not(.dropdown-toggle):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a {
    color: var(--bark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown-toggle {
    position: relative;
    padding-right: 1.8em !important;
    color: var(--bark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.8em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: currentColor;
    opacity: 0.8;
    z-index: 2;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--summer-twilight);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background: var(--lotus-pond);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--lotus-pond);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: -1rem;
    background: var(--alabaster);
    min-width: 280px;
    padding: 0.8rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(86, 56, 46, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(122, 69, 71, 0.1);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    color: var(--bark);
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: rgba(122, 69, 71, 0.08);
    color: var(--summer-twilight);
    padding-left: 2rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--summer-twilight);
    transform: translateY(-50%);
    transition: width 0.3s ease;
    opacity: 0;
}

.dropdown-menu a:hover::before {
    width: 0.5rem;
    opacity: 1;
}

/* Navigation principale */
.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

/* Styles du dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 1.8em !important;
    color: var(--bark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-toggle{
    margin-right: -18px;
}

.dropdown-toggle:hover,
.dropdown:hover .dropdown-toggle {
    color: var(--summer-twilight);
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.8em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: currentColor;
    opacity: 0.8;
}

.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}

/* Style spécifique pour le lien actif dans le dropdown */
.dropdown-toggle.active {
    color: var(--summer-twilight);
}

.dropdown-toggle.active::after {
    color: var(--summer-twilight);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: -1rem;
    background: var(--alabaster);
    min-width: 280px;
    padding: 0.8rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(86, 56, 46, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(122, 69, 71, 0.1);
}

/* Assurer que le menu reste visible pendant le hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    color: var(--bark);
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: rgba(122, 69, 71, 0.08);
    color: var(--summer-twilight);
    padding-left: 2rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--summer-twilight);
    transform: translateY(-50%);
    transition: width 0.3s ease;
    opacity: 0;
}

.dropdown-menu a:hover::before {
    width: 0.5rem;
    opacity: 1;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem !important;
    }

    .dropdown-toggle::after {
        position: relative;
        right: 0;
        transform: none;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        margin-left: 1rem;
        border-left: 2px solid rgba(122, 69, 71, 0.2);
        min-width: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        margin: 0;
        border-radius: 4px;
    }

    .dropdown-menu a:hover {
        background: rgba(122, 69, 71, 0.05);
        padding-left: 1.5rem;
    }
}

/*====================
6. FOOTER
====================*/
footer {
    background-color: var(--lotus-pond);
    padding: 2.5rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(247, 241, 223, 0.1), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 35px;
    height: auto;
    opacity: 0.9;
}

.footer-brand p {
    color: var(--alabaster);
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--alabaster);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact {
    position: relative;
}

.footer-contact::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--alabaster);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.footer-contact:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 241, 223, 0.1);
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.copyright {
    color: var(--alabaster);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

/*====================
7. MEDIA QUERIES
====================*/

@media (max-width: 768px) { 
    body { font-size: 15px; } 
    h1 { font-size: 2rem; } 
    h2 { font-size: 1.75rem; } 
    h3 { font-size: 1.3rem; } 
    .script-text { font-size: 1.5rem; } 
    .navbar { padding: 0.8rem 1rem; }
    .nav-links { display: none; } 
    .section { padding: 3rem 1.5rem 1rem; } 
    footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: -1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar {
        padding: 0.8rem 1rem;
        background-color: var(--alabaster);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        padding: 0;
    }

    .logo {
        height: 40px;
        z-index: 1001;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
        padding: 0.5rem;
        margin-right: -0.5rem;
        transition: all 0.3s ease;
        border-radius: 4px;
    }
    
    .nav-toggle:hover {
        background-color: rgba(169, 184, 160, 0.1);
    }

    .nav-links {
        display: none;
        position: fixed;
        background-color: var(--alabaster);
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 2rem 5rem;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        backdrop-filter: blur(5px);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links > li {
        width: 100%;
        margin: 0.5rem 0;
        border-bottom: 1px solid rgba(87, 96, 73, 0.1);
    }
    
    .nav-links > li:last-child {
        border-bottom: none;
    }
    
    .nav-links > li > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
        color: var(--lotus-pond);
        font-weight: 500;
    }
    
    .nav-links > li > a.active {
        color: var(--summer-twilight);
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: translateY(0) rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        transform: translateY(0) rotate(-45deg);
    }
    
    /* Dropdown styling enhancement */
    .dropdown.active .dropdown-toggle {
        color: var(--summer-twilight);
        background-color: rgba(209, 192, 188, 0.15);
        border-radius: 8px;
    }
    
    .dropdown-menu {
        margin-left: 0;
        border-left: 3px solid var(--soft-lichen);
        background-color: rgba(247, 241, 223, 0.5);
        border-radius: 0 8px 8px 0;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(122, 69, 71, 0.08);
        padding-left: 2rem;
    }
}

/* Enhancement for very small screens */
@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .nav-links {
        padding: 1.5rem 1.5rem 5rem;
    }
    
    .nav-links > li > a {
        font-size: 1.1rem;
    }
}

/*====================
8. HERO SECTION
====================*/
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--alabaster);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 241, 223, 0.9) 0%, rgba(169, 184, 160, 0.8) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--summer-twilight);
    margin-bottom: 1rem;
    position: relative;
}

.hero-eyebrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--summer-twilight);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--bark);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--bark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: fit-content;
}

.hero-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.hero-feature i {
    color: var(--summer-twilight);
    font-size: 1.2rem;
}

.hero-feature span {
    font-weight: 400;
    color: var(--bark);
}

.hero-cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 15px rgba(122, 69, 71, 0.25);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(122, 69, 71, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--summer-twilight);
    color: var(--summer-twilight);
}

.btn-outline:hover {
    background-color: var(--summer-twilight);
    color: var(--alabaster);
}

.hero-image-container {
    position: relative;
    height: 550px;
    width: 100%;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.main-image {
    width: 80%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 3;
}

.secondary-image {
    width: 50%;
    height: 40%;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.tertiary-image {
    width: 40%;
    height: 35%;
    left: 40%;
    bottom: 5%;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--summer-twilight);
    border-radius: 20px;
    top: -15px;
    left: -15px;
    z-index: 0;
    opacity: 0.2;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-testimonial {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--summer-twilight);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--summer-twilight);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: white;
    font-size: 1.2rem;
}

.hero-testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--bark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 500;
    color: var(--summer-twilight);
}

/* Media queries pour la responsivité */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-image-container {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
        height: 450px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-eyebrow::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-feature {
        margin: 0 auto;
    }
    
    .hero-cta-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-section .container {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .main-image {
        width: 85%;
        height: 65%;
    }
    
    .secondary-image {
        width: 50%;
        height: 35%;
    }
    
    .tertiary-image {
        width: 40%;
        height: 30%;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-testimonial {
        padding: 1.5rem;
    }
    
    .hero-testimonial p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .hero-feature {
        padding: 0.6rem 1rem;
    }
}

/*====================
9. BENEFITS SECTION
====================*/

.container {
    padding:  1.5rem;
    padding-top: 1rem;
}

.benefits-section {
    background: linear-gradient(to bottom, rgba(247, 241, 223, 0.8), rgba(247, 241, 223, 0.4));
    padding: 1rem 0;
    padding-bottom: 0;
}

.benefits-list {
    max-width: 800px;
    margin: 2.5rem auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item i {
    color: var(--summer-twilight);
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.cta-block {
    text-align: center;
    margin: 3rem 0 1rem;
}

.emphasis{
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: bold;
}

.highlight{
    font-size: 17px;
}

/*====================
10. WHY SECTION
====================*/
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.reason-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(86, 56, 46, 0.05);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(86, 56, 46, 0.1);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--summer-twilight);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(86, 56, 46, 0.1);
    transition: all 0.3s ease;
}

.reason-icon i {
    font-size: 2rem;
}

.reason-card:hover .reason-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(86, 56, 46, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--lotus-pond);
}

/*====================
11. PROGRAM SECTION
====================*/
.program-section {
    background: linear-gradient(to bottom, rgba(247, 241, 223, 0.9), rgba(247, 241, 223, 0.8)), 
                url('../images/forest.JPG') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 1rem 0 3rem;
    position: relative;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--alabaster), transparent);
    z-index: 1;
}

.program-section .container {
    position: relative;
    z-index: 2;
}

.program-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.day-block {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--soft-lichen);
}

.day-block h3 {
    margin-bottom: 1.5rem;
    color: var(--lotus-pond);
    font-weight: 600;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--summer-twilight);
    border-radius: 50%;
    border: 3px solid var(--alabaster);
    box-shadow: 0 0 0 3px var(--soft-lichen);
    z-index: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    background-color: var(--lotus-pond);
}

.time {
    display: inline-block;
    background-color: var(--summer-twilight);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-item .content {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(86, 56, 46, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .content {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(86, 56, 46, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
}

.timeline-item h4 {
    margin-bottom: 0.5rem;
    color: var(--lotus-pond);
}

.program-flex {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .program-timeline {
    flex: 3;
  }
  
  .program-photos {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .program-photos h3 {
    color: var(--lotus-pond);
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .photo-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
  }

  /* Responsive design */
@media (max-width: 900px) {
    .program-flex {
      flex-direction: column;
    }
    
    .program-photos {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .none{
        display: none;
    }
  }

/*====================
12. INCLUSIONS SECTION
====================*/
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.inclusion-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.inclusion-item:hover {
    transform: translateY(-5px);
}

.inclusion-item i {
    font-size: 1.5rem;
    color: var(--summer-twilight);
    margin-right: 1rem;
}

.premium-option {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 2rem;
    background: linear-gradient(45deg, var(--summer-twilight), var(--lotus-pond));
    border-radius: 15px;
    color: var(--alabaster);
}

.premium-option h3,
.premium-option p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-option h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.premium-option p {
    font-size: 1.2rem;
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--summer-twilight);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.btn-light:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive design for premium option */
@media (max-width: 768px) {
    .premium-option {
        flex-direction: column-reverse;
    }
    
    .premium-image {
        min-height: 200px;
    }
    
    .premium-content {
        text-align: center;
    }
    
    .premium-option .btn-light {
        align-self: center;
    }
}

/*====================
13. PRICING SECTION
====================*/
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.08);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(86, 56, 46, 0.12);
}

.price-card.premium {
    border: 2px solid var(--summer-twilight);
}

.price {
    margin: 2rem 0;
}

.current {
    font-size: 2.5rem;
    color: var(--summer-twilight);
    font-weight: bold;
}

.original {
    text-decoration: line-through;
    color: #999;
    margin-left: 1rem;
}

.features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

#standard{
    margin-top: 2.6rem;
}

/*====================
14. TESTIMONIALS SECTION
====================*/
.testimonials-section {
    padding: 1rem 0;
    background-color: var(--alabaster);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(86, 56, 46, 0.15);
}

.testimonial-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--soft-lichen);
    opacity: 0.5;
}

.testimonial-content p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--bark);
    line-height: 1.8;
}

.author {
    font-weight: 500;
    color: var(--summer-twilight);
}

/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-image {
        height: 200px;
    }
}

/*====================
15. TEAM SECTION
====================*/
.team-section {
    background-color: var(--alabaster);
    position: relative;
    overflow: hidden;
    padding: 1rem 0 3rem;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/forest.JPG') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(86, 56, 46, 0.15);
}

.team-member-header {
    display: flex;
    padding: 2rem 2rem 0;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--alabaster);
    box-shadow: 0 5px 15px rgba(86, 56, 46, 0.1);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

#coralie{
    object-position: center 45%;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    flex: 1;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--lotus-pond);
}

.role {
    color: var(--summer-twilight);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--soft-lichen);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--summer-twilight);
    transform: translateY(-3px);
}

.bio {
    padding: 1.5rem 2rem 2rem;
}

.bio p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--bark);
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.expertise-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(169, 184, 160, 0.15);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--lotus-pond);
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: rgba(169, 184, 160, 0.3);
    transform: translateY(-2px);
}

.team-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.05);
}

.team-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--bark);
}

.team-cta .btn {
    margin-top: 0.5rem;
}

.team-cta .btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .team-member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-photo {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 120px;
        height: 120px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .expertise {
        justify-content: center;
    }
}

/*====================
16. CONTACT SECTION
====================*/

.contact-section{
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1rem 0 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(86, 56, 46, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(86, 56, 46, 0.1);
}

.contact-icon {
    flex: 0 0 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    background: rgba(169, 184, 160, 0.1);
    border-radius: 50%;
    border: 2px solid var(--soft-lichen);
}

.contact-item i {
    font-size: 2rem;
    color: var(--summer-twilight);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-content {
    flex: 1;
}

.contact-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--bark);
}

.contact-link {
    color: var(--summer-twilight);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--summer-twilight);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--lotus-pond);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-email {
    border-left: 4px solid var(--summer-twilight);
}

.contact-call {
    border-left: 4px solid var(--lotus-pond);
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .contact-email, .contact-call {
        border-left: none;
        border-top: 4px solid var(--summer-twilight);
    }
    
    .contact-call {
        border-top-color: var(--lotus-pond);
    }
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
}

.final-cta i {
    color: var(--summer-twilight);
    margin-right: 0.5rem;
}

/*====================
17. RESPONSIVE DESIGN
====================*/
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .benefit-item,
    .inclusion-item {
        padding: 1rem;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-quote {
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .timeline-item {
        flex-direction: column;
    }

    .time {
        margin-bottom: 0.5rem;
    }
}