/*====================
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: linear-gradient(135deg, var(--lotus-pond), var(--soft-lichen));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(87, 96, 73, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 96, 73, 0.3);
    background-color: var(--lotus-pond);
    color: var(--alabaster);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(3px);
}

:-ms-fullscreen

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* 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. URBAN WORKSHOPS SECTION
====================*/
/* Urban Workshops Section */
.urban-subsection {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, rgba(247, 241, 223, 0.8), rgba(209, 192, 188, 0.2));
    border-radius: 15px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.05);
}

.urban-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 184, 160, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.urban-header {
    text-align: center;
    padding: 0 2rem 0rem;
    position: relative;
    z-index: 1;
}

.urban-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--summer-twilight);
}

.urban-header-text {
    max-width: 700px;
    margin: 0 auto;
}

.urban-content {
    padding: 1rem 2rem;
    position: relative;
    z-index: 1;
}

/* Urban Benefits Section */
.urban-benefits {
    margin-top: 3.5rem;
    text-align: center;
    padding: 0 rem 0 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
}

.urban-benefits h4 {
    color: var(--bark);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.urban-benefits h4 i {
    color: var(--summer-twilight);
}

/* Urban Events Container */
.urban-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
}

/* Event Cards */
.event-card {
    background: linear-gradient(135deg, rgba(247, 241, 223, 0.5), rgba(255, 255, 255, 0.95));
    border-left: 2px solid var(--lotus-pond);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(86, 56, 46, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(86, 56, 46, 0.15);
}

/* Event Image */
.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(122, 69, 71, 0.85);
    color: var(--alabaster);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
}

/* Event Details */
.event-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--bark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(169, 184, 160, 0.3);
}

.event-card h5 i {
    color: var(--summer-twilight);
}

.event-date, .event-location {
    font-size: 0.9rem;
    color: var(--bark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-date i, .event-location i {
    color: var(--lotus-pond);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.event-description {
    margin: 1.2rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.event-price {
    background: rgba(169, 184, 160, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    margin: 0.5rem 0 1.2rem;
    font-size: 0.9rem;
    color: var(--bark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-price i {
    color: var(--lotus-pond);
}

.event-card .cta-buttons {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.event-card .btn {
    min-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.event-card .btn i {
    transition: transform 0.3s ease;
}

.event-card .btn:hover i {
    transform: translateX(3px);
}

/* Urban Features List */
.urban-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
    text-align: left;
}

.urban-features li {
    padding: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.urban-features li:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.urban-features li i {
    color: var(--summer-twilight);
    margin-top: 0.3rem;
    min-width: 16px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-text strong {
    color: var(--bark);
    font-weight: 500;
    display: block;
}

.feature-text span {
    color: var(--bark);
    opacity: 0.85;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .urban-events {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .urban-subsection {
        padding: 2.5rem 0 3rem;
        margin: 2rem 0;
    }
    
    .urban-events {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-details {
        padding: 1.25rem;
    }
    
    .urban-benefits {
        padding: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .urban-features {
        grid-template-columns: 1fr;
    }
}

/*====================
8. 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;
    }
}

@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;
    }
}

/*====================
7. HERO SECTION
====================*/
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(87, 96, 73, 0.7) 0%, rgba(87, 96, 73, 0.4) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    background-color: rgba(247, 241, 223, 0.8);
    border-radius: 15px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--summer-twilight);
    margin: 0.5rem 0 2rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--bark);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.btn:hover i {
    transform: translateX(2px);
}

.btn-primary {
    background-color: var(--summer-twilight);
    color: var(--alabaster);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--lotus-pond);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for the hero section */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeIn 1.2s ease-out forwards;
}

/* Responsive styles for hero section */
@media (max-width: 992px) {
    .hero-content {
        padding: 3rem 2.5rem;
        max-width: 500px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
    }
}

/*====================
8. ABOUT SECTION
====================*/
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--alabaster);
    overflow: hidden;
}

.about-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern5.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    z-index: 1;
}

/* Header Styles */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, rgba(122, 69, 71, 0), rgba(122, 69, 71, 0.7), rgba(122, 69, 71, 0));
}

.about-tagline {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--lotus-pond);
    margin-bottom: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    background-color: rgba(169, 184, 160, 0.1);
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--bark);
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Description Column */
.about-description {
    display: flex;
    align-items: center;
}

.about-description-container {
    padding-right: 30px;
}

.about-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--bark);
    margin-bottom: 25px;
    font-weight: 500;
    border-left: 3px solid var(--summer-twilight);
    padding-left: 20px;
}

.about-intro strong {
    color: var(--summer-twilight);
    font-weight: 700;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bark);
    margin-bottom: 30px;
    opacity: 0.85;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--summer-twilight);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bark);
    opacity: 0.7;
}

/* Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--lotus-pond), var(--soft-lichen));
    transition: height 0.4s ease;
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-lichen) 0%, var(--lotus-pond) 100%);
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(87, 96, 73, 0.2);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--bark);
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.about-card:hover h3 {
    color: var(--summer-twilight);
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bark);
    opacity: 0.8;
    margin: 0;
}

/* Image Column */
.about-image-column {
    position: relative;
}

.about-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.image-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: white;
    border-radius: 0 0 15px 15px;
}

.image-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 10px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.image-quote blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--lavender-mist);
    opacity: 0.7;
}

.image-quote cite {
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.8;
}

/* Minimal CTA */
.minimal-cta {
    margin: 0 auto 0;
    text-align: center;
    padding: 20px 0;
    position: relative;
    max-width: 300px;
}

.minimal-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--summer-twilight);
    opacity: 0.3;
}

.minimal-cta-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--summer-twilight);
    transition: all 0.3s ease;
}

.minimal-cta-link span {
    margin-right: 12px;
    position: relative;
}

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

.minimal-cta-link:hover {
    color: var(--summer-twilight);
    opacity: 0.8;
}

.minimal-cta-link:hover span::after {
    width: 100%;
}

.minimal-cta-link i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.minimal-cta-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .minimal-cta {
        margin: 30px auto 0;
    }
}

/* CTA Styles */
.cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bark);
    margin: 2.5rem auto 1rem;
    max-width: 650px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-text i {
    color: var(--summer-twilight);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-cards {
        grid-row: 1;
        grid-column: 2;
    }
    
    .about-description {
        grid-row: 1;
        grid-column: 1;
    }
    
    .about-image-column {
        grid-row: 2;
        grid-column: 1 / span 2;
        height: 500px;
    }
    
    .about-header h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-cards {
        grid-row: 2;
        grid-column: 1;
    }
    
    .about-description {
        grid-row: 1;
        grid-column: 1;
    }
    
    .about-image-column {
        grid-row: 3;
        grid-column: 1;
        height: 500px;
    }
    
    .about-description-container {
        padding-right: 0;
    }
    
    .about-header h2 {
        font-size: 2.8rem;
    }
    
    .about-elegant-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-elegant-cta h3 {
        font-size: 1.8rem;
    }
    
    .about-elegant-cta {
        padding: 40px 20px;
    }
    
    .image-quote blockquote {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-tagline {
        font-size: 0.9rem;
    }
    
    .about-image-column {
        height: 400px;
    }
    
    .about-elegant-cta h3 {
        font-size: 1.6rem;
    }
    
    .decoration-icon {
        width: 35px;
        height: 35px;
        margin: 0 15px;
    }
    
    .decoration-icon i {
        font-size: 1rem;
    }
}

/*====================
9. TEAM SECTION
====================*/
.team-section {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #fff, rgba(247, 241, 223, 0.5));
    border-top: 1px solid rgba(86, 56, 46, 0.2);
    border-bottom: 1px solid rgba(86, 56, 46, 0.2);
}

.team-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--summer-twilight);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.team-section .section-header h2 i {
    margin-right: 10px;
    color: var(--lotus-pond);
}

.team-section .section-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bark);
}

/* Team Layout */
.team-row {
    display: flex;
    gap: 30px;
    margin: 45px 0 30px;
}

/* Team Cards */
.team-card {
    flex: 1;
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(86, 56, 46, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(86, 56, 46, 0.1);
}

/* Card Media */
.card-media {
    width: 240px;
    min-width: 240px;
    overflow: hidden;
    position: relative;
}

.card-media img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .card-media img {
    transform: scale(1.05);
}

#coralie {
    transform: scale(1.15);
    position: absolute;
    top: -37px; 
}

/* Card Content */
.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Card Header */
.card-header {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(169, 184, 160, 0.2);
}

.card-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--summer-twilight);
    margin: 0 0 5px;
    line-height: 1.1;
}

.member-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lotus-pond);
    letter-spacing: 0.03em;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--summer-twilight);
    opacity: 0.7;
    transition: width 0.3s ease;
}

.team-card:hover .card-header::after {
    width: 80px;
}

/* Member Badges */
.member-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.member-badges span {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--bark);
    background-color: rgba(169, 184, 160, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.member-badges span:hover {
    background-color: rgba(169, 184, 160, 0.2);
}

.member-badges span i {
    color: var(--summer-twilight);
    margin-right: 6px;
    font-size: 0.85rem;
}

/* Member Description */
.member-description {
    margin-bottom: 15px;
}

.member-description p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--bark);
    margin-bottom: 10px;
}

.member-description p:last-child {
    margin-bottom: 0;
}

/* Team Footer */
.team-footer {
    padding: 20px 0;
}

.commitment-box {
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.commitment-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M10 0a10 10 0 110 20 10 10 0 01-20 0z" fill="%23A9B8A0" fill-opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.25;
    z-index: -1;
}

.commitment-box h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--summer-twilight);
    margin-bottom: 1rem;
}

.commitment-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--bark);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-box .btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(122, 69, 71, 0.2);
}

.commitment-box .btn i {
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .card-media {
        width: 200px;
        min-width: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 900px) {
    .team-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .card-media {
        width: 220px;
        min-width: 220px;
    }
}

@media (max-width: 600px) {
    .team-card {
        flex-direction: column;
    }

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

    #roxane{
        object-position: center 20%;
    }
    
    .card-media {
        width: 100%;
        height: 350px;
    }
    
    .card-content {
        padding: 20px 15px;
    }
    
    .member-badges {
        margin-bottom: 12px;
    }
    
    .card-header h3 {
        font-size: 1.8rem;
    }
}

/*====================
4. OFFERS SECTION
====================*/
.offers-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(247, 241, 223, 0.6));
    position: relative;
    border-bottom: 1px solid var(--bark);
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="%23576049" stroke-width="0.5" opacity="0.05"><circle cx="12" cy="12" r="10"/></svg>');
    background-size: 60px 60px;
    opacity: 0.2;
    z-index: 0;
}

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

.offers-section .section-header {
    text-align: center;
    margin: 0 auto 3.5rem;
}

.offers-section .section-header h2 {
    color: var(--summer-twilight);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.offers-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--summer-twilight);
}

.offers-section .section-header h2 i {
    margin-right: 0.8rem;
}

.offers-section .section-header p {
    font-size: 1.1rem;
    color: var(--bark);
    margin: 0 auto;
    max-width: 100%;
}

.retreats-subsection {
    margin-bottom: 4rem;
}

.retreats-subsection h3 {
    font-size: 1.8rem;
    color: var(--lotus-pond);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
}

.retreats-subsection h3 i {
    margin-right: 0.8rem;
    color: var(--lotus-pond);
}

.retreats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.retreat-card {
    background: var(--alabaster);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(86, 56, 46, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 2px solid var(--bark);
}

.retreat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(86, 56, 46, 0.12);
}

.retreat-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.retreat-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(86, 56, 46, 0.5) 100%);
    z-index: 1;
    opacity: 0.7;
}

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

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

.retreat-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
}

.retreat-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    z-index: 0;
}

.retreat-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--summer-twilight);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.retreat-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    z-index: 0;
}

.retreat-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--summer-twilight);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.retreat-date {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--bark);
    background: rgba(169, 184, 160, 0.15);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

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

.retreat-description {
    flex-grow: 1;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

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

.retreat-description strong {
    color: var(--lotus-pond);
}

.morocco-subsection,
.mountain-subsection,
.urban-subsection {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(86, 56, 46, 0.05);
    border: 1px solid rgba(169, 184, 160, 0.1);
}

.morocco-subsection h3,
.mountain-subsection h3,
.urban-subsection h3 {
    font-size: 1.8rem;
    color: var(--summer-twilight);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.morocco-subsection h3 i,
.mountain-subsection h3 i,
.urban-subsection h3 i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--summer-twilight);
}

.morocco-subsection {
    background: linear-gradient(to bottom right, white, rgba(209, 192, 188, 0.1));
    border-left: 3px solid var(--summer-twilight);
    position: relative;
    box-shadow: 0 15px 35px rgba(86, 56, 46, 0.1);
}

.morocco-subsection::before {
    content: 'Premium';
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--summer-twilight);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(122, 69, 71, 0.25);
}

/* Effet de brillance subtil */
.morocco-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.morocco-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
}

.morocco-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(86, 56, 46, 0.1);
    height: 100%;
    position: relative;
}

.morocco-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(86, 56, 46, 0.4) 100%);
}

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

.morocco-image:hover img {
    transform: scale(1.03);
}

.morocco-details .retreat-date {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    background: rgba(169, 184, 160, 0.12);
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
}

.morocco-features,
.mountain-features,
.urban-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.morocco-features li,
.mountain-features li,
.urban-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.morocco-features i,
.mountain-features i,
.urban-features i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--summer-twilight);
}

.offers-conclusion {
    text-align: center;
    padding-bottom: 3rem;
    border-radius: 12px;
}

.highlight {
    color: var(--summer-twilight);
    margin: 2rem 0 1.5rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--soft-lichen);
    transition: width 0.3s ease;
}

.highlight:hover::after {
    width: 140px;
}

.highlight i {
    color: var(--summer-twilight);
    font-size: 1.4rem;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bark);
    margin: 2.5rem auto 1rem;
    max-width: 650px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-text i {
    color: var(--summer-twilight);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-buttons .btn-primary {
    background: var(--summer-twilight);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(122, 69, 71, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: var(--bark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(122, 69, 71, 0.3);
}

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

h4.script-text {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--summer-twilight);
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .morocco-content {
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .morocco-image{
        max-height: 450px;
    }
}

/* Hiking */

.hiking-subsection {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(86, 56, 46, 0.05);
    border: 1px solid rgba(169, 184, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.hiking-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 184, 160, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hiking-subsection h3 {
    font-size: 1.8rem;
    color: var(--lotus-pond);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
}

.hiking-subsection h3 i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--lotus-pond);
    background: rgba(169, 184, 160, 0.15);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
}

.hiking-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(86, 56, 46, 0.07);
}

.hiking-details {
    background: linear-gradient(135deg, rgba(247, 241, 223, 0.5), rgba(255, 255, 255, 0.95));
    padding: 1.8rem;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    border-left: 4px solid var(--lotus-pond);
}

.hiking-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.8rem;
}

.hiking-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

.hiking-features i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--lotus-pond);
}

.hiking-features strong {
    color: var(--bark);
    font-weight: 600;
}

.hiking-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(86, 56, 46, 0.1);
    position: relative;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
    height: 100%;
    min-height: 300px;
}

.hiking-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(87, 96, 73, 0.3) 0%, transparent 40%);
    z-index: 1;
}

.hiking-image:hover {
    transform: rotate(0);
}

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

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

.hiking-subsection .cta-text {
    text-align: left;
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: var(--bark);
}

.hiking-subsection .cta-buttons {
    justify-content: flex-start;
}

.hiking-subsection .btn-secondary {
    background: var(--lotus-pond);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(87, 96, 73, 0.2);
}

.hiking-subsection .btn-secondary:hover {
    background: var(--summer-twilight);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(87, 96, 73, 0.3);
}

@media (max-width: 992px) {
    .hiking-content {
        grid-template-columns: 1fr;
    }
    
    .hiking-image {
        transform: rotate(0);
        order: -1;
        max-height: 350px;
    }
    
    .hiking-details {
        border-left: none;
        border-top: 4px solid var(--lotus-pond);
    }
}

@media (max-width: 768px) {
    .hiking-subsection {
        padding: 1.5rem;
    }
    
    .hiking-subsection h3 {
        font-size: 1.5rem;
    }
    
    .hiking-image {
        min-height: 250px;
    }
}

/*====================
5. BLOG SECTION
====================*/
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff, rgba(247, 241, 223, 0.5));
    position: relative;
    overflow: hidden;
}

.blog-section .section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-section .section-header h2 {
    color: var(--summer-twilight);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.blog-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--summer-twilight);
}

.blog-section .section-header h2 i {
    margin-right: 0.8rem;
}

.blog-section .section-header p {
    font-size: 1.2rem;
    color: var(--bark);
    max-width: 650px;
    margin: 0 auto;
}

/* Mise en page avec blog-grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(86, 56, 46, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(209, 192, 188, 0.1);
}

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

.blog-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--summer-twilight);
    box-shadow: 0 3px 10px rgba(86, 56, 46, 0.1);
    backdrop-filter: blur(5px);
}

.blog-category i {
    margin-right: 0.3rem;
}

.blog-card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    color: var(--summer-twilight);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-content p {
    color: var(--bark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: rgba(86, 56, 46, 0.7);
}

.blog-meta span {
    margin-right: 1.2rem;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.4rem;
    color: var(--summer-twilight);
    opacity: 0.7;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--summer-twilight);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.2rem;
    margin-top: auto;
}

.btn-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: var(--bark);
    border-bottom-color: var(--summer-twilight);
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 0 2rem;
    }
    .blog-grid {
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
}
 
/* Section ressources et newsletter */

.blog-cta-combined {
    background: linear-gradient(135deg, var(--summer-twilight) 0%, var(--lotus-pond) 100%);
    color: white;
    border-radius: 15px;
    padding: 3.5rem;
    margin-top: 3rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    box-shadow: 0 25px 50px rgba(86, 56, 46, 0.15);
    overflow: hidden;
    z-index: 1;
}

.blog-cta-combined::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.blog-cta-combined::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 250px;
    height: 250px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.07"><path d="M50 0 L75 25 L50 50 L25 25 Z M50 50 L75 75 L50 100 L25 75 Z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    transform: rotate(15deg);
}

.cta-left, .cta-right {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-divider {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.resource-icon, .newsletter-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-cta-combined:hover .resource-icon,
.blog-cta-combined:hover .newsletter-icon {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.resource-content, .newsletter-content {
    flex: 1;
}

.resource-content h3, .newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.highlight-text {
    position: relative;
    z-index: 1;
}

.resource-content p, .newsletter-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-action {
    grid-column: 1 / -1;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: white;
    color: var(--summer-twilight);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: white;
    background-color: var(--lotus-pond);
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(5px);
}

.cta-detail {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.resource-content h3, .newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.resource-content h3::after, .newsletter-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
}


@media (max-width: 991px) {
    .blog-cta-combined {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 2.5rem;
    }
    
    .cta-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
    
    .cta-left, .cta-right {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .resource-content p, .newsletter-content p {
        margin-bottom: 1rem;
    }
    
    .resource-content h3, .newsletter-content h3 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/*====================
6. TESTIMONIALS SECTION
====================*/
.testimonials-section {
    background-color: var(--alabaster);
    padding: 1rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(169, 184, 160, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(122, 69, 71, 0.07) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-section .section-header {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonials-section .section-header h2 {
    color: var(--summer-twilight);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.testimonials-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--summer-twilight);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
}

.testimonial-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.5s ease;
}

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

.testimonials-conclusion {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.testimonials-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--summer-twilight);
    opacity: 0.3;
}

.testimonials-conclusion .cta-text {
    font-size: 1.2rem;
    color: var(--bark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonials-conclusion .btn {
    padding: 0.8rem 1.8rem;
    display: inline-block;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .testimonial-image {
        height: 250px;
    }
}

/* Testimonial Modal Styles */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.modal-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    cursor: zoom-out;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

/*====================
7. CONTACT SECTION
====================*/
.contact-section {
    background-color: var(--alabaster);
    padding: 5rem 0;
    position: relative;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(247, 241, 223, 0.7), rgba(247, 241, 223, 0.9)),
                      url('images/pattern.jpg');
    background-size: cover;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(169, 184, 160, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(122, 69, 71, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section .section-header h2 {
    color: var(--summer-twilight);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.contact-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--summer-twilight);
}

.contact-section .section-header p {
    font-size: 1.2rem;
    color: var(--bark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(86, 56, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--summer-twilight), var(--lotus-pond));
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    gap: 2rem;
    position: relative;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(122, 69, 71, 0.2), transparent);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    color: var(--bark);
    transition: transform 0.3s ease;
}

.contact-info p:hover {
    transform: translateY(-3px);
}

.contact-info i {
    font-size: 1.3rem;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--summer-twilight);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(122, 69, 71, 0.15);
    transition: all 0.3s ease;
}

.contact-info p:hover i {
    transform: scale(1.1);
    background-color: var(--lotus-pond);
}

.contact-info strong {
    font-weight: 600;
    margin-right: 0.5rem;
}

.contact-info a {
    color: var(--summer-twilight);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 600;
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--summer-twilight);
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.contact-info a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--lotus-pond);
}

.contact-content .cta-text {
    text-align: center;
    font-size: 1.15rem;
    color: var(--bark);
    margin: 2rem auto;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}


@media (max-width: 992px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .contact-info::after {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-content {
        padding: 2.5rem 2rem;
    }
    
    .contact-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-content {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: 0;
    }
    
    .contact-info i {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/*====================
11. NEWSLETTER POPUP
====================*/
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(86, 56, 46, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.newsletter-popup.show {
    opacity: 1;
    visibility: visible;
}

.newsletterpop-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, #fff, rgba(247, 241, 223, 0.9));
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(86, 56, 46, 0.2);
    transform: translateY(30px);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.newsletter-popup.show .newsletterpop-content {
    transform: translateY(0);
}

.newsletterpop-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(169, 184, 160, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.newsletter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: var(--bark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.newsletter-close:hover {
    color: var(--summer-twilight);
    background-color: rgba(247, 241, 223, 0.5);
    transform: rotate(90deg);
}

.newsletter-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--bark);
    margin-bottom: 0.8rem;
}

.newsletter-header h3 i {
    color: var(--summer-twilight);
    margin-right: 0.5rem;
}

.newsletter-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--summer-twilight);
    margin-bottom: 1rem;
}

.newsletter-body {
    position: relative;
    z-index: 1;
}

.newsletter-body p {
    margin-bottom: 1.5rem;
    color: var(--bark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form .form-group {
    margin-bottom: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(169, 184, 160, 0.4);
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: var(--bark);
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--summer-twilight);
    box-shadow: 0 0 0 2px rgba(122, 69, 71, 0.1);
}

.btn-newsletter {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--summer-twilight), #8d5456);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(122, 69, 71, 0.2);
    text-align: center;
    margin-top: 1.5rem;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #8d5456, var(--summer-twilight));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 69, 71, 0.3);
}

.newsletter-privacy {
    text-align: center;
    margin-top: 1rem;
    color: rgba(86, 56, 46, 0.6);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 2rem;
    }
    
    .newsletter-header h3 {
        font-size: 1.6rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.3rem;
    }
}

/* Messages de succès et d'erreur pour la newsletter */
.newsletter-success {
    background: linear-gradient(135deg, rgba(87, 96, 73, 0.1), rgba(169, 184, 160, 0.2));
    border-left: 3px solid var(--lotus-pond);
    padding: 1.2rem;
    margin: 1rem 0;
    border-radius: 6px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.newsletter-success i {
    color: var(--lotus-pond);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-success p {
    color: var(--bark);
    font-weight: 400;
}

.newsletter-error {
    background: linear-gradient(135deg, rgba(122, 69, 71, 0.1), rgba(209, 192, 188, 0.2));
    border-left: 3px solid var(--summer-twilight);
    padding: 0.8rem 1rem;
    margin: 0.8rem 0;
    border-radius: 6px;
    color: var(--summer-twilight);
    font-size: 0.9rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

