
:root {
    /* Color Palette - South of France */
    --lavender: #8B7AB8;
    --lavender-light: #B8A9D9;
    --lavender-pale: #E8E3F3;
    --azure: #0077BE;
    --azure-light: #4DA6D6;
    --terracotta: #D4745E;
    --terracotta-dark: #B85D48;
    --olive: #6B7F39;
    --olive-light: #8FA048;
    --sand: #F4E8D8;
    --cream: #FFF9F0;
    --warm-white: #FEFBF6;
    --deep-blue: #1A3A52;
    --gold: #D4A76A;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(139, 122, 184, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 122, 184, 0.15);
    --shadow-lg: 0 8px 32px rgba(139, 122, 184, 0.2);
    --shadow-xl: 0 16px 48px rgba(139, 122, 184, 0.25);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
	--font-script: 'Baguet Script', cursive;
    --container-width: 1400px;
    --section-padding: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--deep-blue);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background Elements */
.lavender-field {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--lavender-pale) 50%, 
        var(--lavender-light) 100%);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.olive-branch {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--olive-light) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.olive-branch-1 {
    top: 20%;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.olive-branch-2 {
    bottom: 30%;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, -50px) rotate(-5deg); }
    75% { transform: translate(20px, -30px) rotate(3deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-script);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-blue);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.description-text p {
    white-space: pre-line;
}

/* ===================================
   NAVIGATION - VERSION CORRIGÉE
   =================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 251, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--lavender-pale);
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	font-family : var(--font-script);
	transform: translateY(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease;  /* ← 0.6s au lieu de 0.3s */
    will-change: transform;
}

@keyframes slideDown {
    from { 
        transform: translateY(-100%); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}


nav .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.6rem;
    font-family: var(--font-script);
    color: var(--deep-blue);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.3s ease;
    order: 1;  /* Logo en premier */
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
}

.logo-icon img {
    width: 134%;
    height: 124%;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(212, 116, 94, 0.25));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon img {
    filter: drop-shadow(0 5px 18px rgba(212, 116, 94, 0.4));
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .main {
    font-size: 3rem;
    color: var(--terracotta);
    font-weight: 700;
}

.logo-text .sub {
    font-size: 1.7rem;
    color: var(--olive);
    font-weight: 400;
    letter-spacing: 2.5px;

}

/* Menu de navigation au centre */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0 auto;  /* Centre le menu */
    order: 2;  /* Menu au centre */
}

.nav-links a {
    text-decoration: none;
    color: var(--terracotta);
    font-weight: 500;
    font-size: 1.35rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--lavender);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender), var(--terracotta));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Boutons de langue À DROITE en desktop */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;  /* Pousse complètement à droite */
    order: 3;  /* En dernier = à droite */
    z-index: 1002;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--terracotta);
    background: transparent;
    color: var(--terracotta);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    border-radius: 2px;
}

.lang-btn.active {
    background: var(--terracotta);
    color: white;
}



.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--deep-blue);
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- Overlay global (garde-le si tu veux l'effet) --- */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center, 
        rgba(254, 251, 246, 0.2) 0%, 
        rgba(26, 58, 82, 0.4) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* --- Image + fondu horizontal pour supprimer la démarcation --- */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: url("img/paysage.jpg")
                center/cover no-repeat;

    filter: blur(3px);
    opacity: 0.35;
    transform: scale(1);
    transition: opacity 0.5s ease, filter 0.5s ease, transform 1s ease;

    /* --- FONDU MODERNE SUR TOUS LES BORDS --- */
    mask-image: radial-gradient(
        circle at center,
        black 55%,        /* centre net */
        transparent 100%  /* fondu complet sur tous les bords */
    );
    -webkit-mask-image: radial-gradient(
        circle at center,
        black 55%,
        transparent 100%
    );

    z-index: -1;
}



/* --- Effet hover --- */
.hero:hover::after {
    opacity: 0.45;
    filter: blur(1.5px);
    transform: scale(1.05);
}


/* --- Contenu --- */
.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2; /* au-dessus de tout */
}

/* --- Badge --- */
.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--lavender-light), var(--lavender));
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    box-shadow: 0 4px 20px rgba(139, 122, 184, 0.3);
}

/* --- Titre --- */
.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Sous-titre --- */
.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--terracotta);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    font-family: var(--font-display);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

/* --- Description --- */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--deep-blue);
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.8;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}


@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.3rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
	justify-content: center;
}

/* Bouton Primary - Terracotta */
.cta-button.primary {
    background: linear-gradient(135deg, 
        #D4745E 0%, 
        #E89880 50%, 
        #D4745E 100%
    );
    color: white;
    box-shadow: 
        0 8px 24px rgba(212, 116, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Effet de brillance qui glisse - Primary */
.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, 
        #8B7AB8 0%, 
        #B8A9D9 50%, 
        #8B7AB8 100%
    );
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(139, 122, 184, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Bouton Secondary - Azur */
.cta-button.secondary {
    background: linear-gradient(135deg, 
        #D4745E 0%, 
        #E89880 50%, 
        #D4745E 100%
    );
    color: white;
    box-shadow: 
        0 8px 24px rgba(0, 119, 190, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Effet de brillance qui glisse - Secondary */
.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.cta-button.secondary:hover::before {
    left: 100%;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, 
        #8B7AB8 0%, 
        #B8A9D9 50%, 
        #8B7AB8 100%
    );
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(107, 127, 57, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Le texte reste au-dessus de l'effet */
.cta-button span {
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--lavender);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: var(--section-padding) 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    scroll-margin-top: 100px;  /* ← Offset pour navigation fixe */
}

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

.section-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lavender);
    background: var(--lavender-pale);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--terracotta);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--olive);
    font-weight: 400;
    opacity: 0.9;
}

/* ===================================
   GALLERY
   =================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
    filter: grayscale(50%);
}

.placeholder-text {
    font-size: 1.1rem;
    color: var(--deep-blue);
    opacity: 0.6;
    font-weight: 500;
}

.gallery-overlay span {
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 116, 94, 0.8);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #D4745E 2%, transparent 30%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: white;
    font-size: 1.3rem;
    font-family: var(--font-script);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-note {
    text-align: center;
    color: var(--olive);
    font-style: italic;
    padding: 1.5rem;
    background: var(--lavender-pale);
    border-left: 4px solid var(--lavender);
    border-radius: 2px;
}

/* Carousel styles */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    opacity: 0.4;
    transition: opacity 0.3s ease, 

}

.gallery-item:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--terracotta-dark);
    opacity: 1;
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }


/* ===================================
   DESCRIPTION
   =================================== */

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.description-text {
    background: white;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--terracotta);
}

.description-text h3 {
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.description-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--deep-blue);
    opacity: 0.9;
}

.highlight-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--lavender-pale), var(--sand));
    border-left: 4px solid var(--olive);
    margin: 2rem 0;
    border-radius: 2px;
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-family: var(--font-body);
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--lavender), var(--terracotta));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--terracotta);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-family: var(--font-body);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--deep-blue);
    opacity: 0.7;
    margin: 0;
}

/* ===================================
   BOOKING / CALENDAR
   =================================== */

.booking-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--lavender-pale);
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--deep-blue);
}

.booking-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--deep-blue);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--lavender);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-widget {
    background: var(--lavender-pale);
    border-radius: 2px;
    overflow: hidden;
    border: 2px solid var(--lavender-light);
}

.booking-widget-content {
    padding: 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-placeholder {
    text-align: center;
}

.booking-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.booking-placeholder h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
    font-family: var(--font-display);
}

.booking-placeholder p {
    font-size: 1.1rem;
    color: var(--deep-blue);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.booking-demo-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--lavender);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 122, 184, 0.3);
}

.booking-demo-btn:hover {
    background: var(--lavender-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 122, 184, 0.4);
}

.booking-instructions {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: 2px;
}

.booking-instructions h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
    font-family: var(--font-body);
}

.booking-instructions ol {
    padding-left: 1.5rem;
}

.booking-instructions li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--deep-blue);
}

/* ===================================
   ACTIVITIES
   =================================== */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--lavender);
}

.activity-image {
    height: 200px;
    background: linear-gradient(135deg, var(--lavender-pale), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.activity-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 58, 82, 0.1) 100%);
}

.activity-image-placeholder {
    font-size: 5rem;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.activity-content {
    padding: 2rem;
}

.activity-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.activity-distance {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--terracotta);
    background: rgba(212, 116, 94, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-content p {
    color: var(--deep-blue);
    opacity: 0.85;
    line-height: 1.8;
}

/* ===================================
   ACCES
   =================================== */

.access-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;

}

.access-info {
    background: linear-gradient(135deg, var(--lavender-pale), var(--sand));
    padding: 3rem;
    border-radius: 2px;
    border-top: 4px solid var(--terracotta);
    box-shadow: var(--shadow-md);
}

.access-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--deep-blue);
}

/* Carte d'adresse */
.address-card {
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.address-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.address-details h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--terracotta);
    font-family: var(--font-display);
}

.address-line {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

/* Détails d'accès */
.access-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.access-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.access-detail-item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--deep-blue);
    font-family: var(--font-body);
    font-weight: 700;
}

.detail-content p {
    font-size: 0.95rem;
    color: var(--deep-blue);
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

/* Bouton itinéraire */
.directions-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--azure), var(--azure-light));
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.3);
}

.directions-btn:hover {
    background: linear-gradient(135deg, var(--azure-light), var(--azure));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.4);
}

.directions-btn .btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.directions-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Carte Google Maps */
.map-container {
    position: relative;
    width: 100%;
    height: calc(100% - 120px); /* 40px en haut + 40px en bas */
    margin: 60px 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--lavender-pale);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Instructions pour la carte */
.map-instructions {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sand);
    border-left: 4px solid var(--azure);
    border-radius: 2px;
}

.map-instructions h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
    font-family: var(--font-body);
}

.map-instructions ol {
    padding-left: 1.5rem;
}

.map-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--deep-blue);
}

.map-instructions a {
    color: var(--azure);
    text-decoration: underline;
    font-weight: 600;
}

.map-instructions a:hover {
    color: var(--terracotta);
}

/* Responsive */
@media (max-width: 1024px) {

    .map-container {
        height: 450px;
    }
}

@media (max-width: 640px) {
    .access-info {
        padding: 2rem;
    }

    .address-card {
        flex-direction: column;
        text-align: center;
    }
	
	.access-container {
    display: inline;
    align-items: start;

}

    .map-container {
        height: 350px;
    }

    .access-info h3 {
        font-size: 2rem;
    }

    .map-instructions {
        padding: 1.5rem;
    }
	.gallery-item {
        height: 300px;
    }
}

/* ===================================
   CONTACT
   =================================== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--lavender-pale), var(--sand));
    padding: 3rem;
    border-radius: 2px;
    border-top: 4px solid var(--terracotta);
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--deep-blue);
    opacity: 0.85;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-item-content h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--deep-blue);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--deep-blue);
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--lavender);
    opacity: 1;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--lavender-pale);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lavender-pale);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--warm-white);
    color: var(--deep-blue);
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--lavender);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 122, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(212, 116, 94, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--terracotta-dark), var(--deep-blue));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 116, 94, 0.4);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: linear-gradient(135deg, var(--deep-blue), #0f2738) ;
    color: var(--cream);
    padding: 2rem 10rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lavender), var(--terracotta), var(--olive), var(--azure));
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--lavender-light);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--lavender-light);
    transform: translateX(5px);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--lavender);
    transform: translateY(-5px);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE - VERSION CORRIGÉE
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }

	.gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .description-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   RESPONSIVE FIX – SANS CHANGER LE STYLE
   =================================== */

/* TABLETTE / MOBILE LARGE */
@media (max-width: 968px) {

@media (max-width: 968px) {
    nav {
        transform: translateY(0) !important; /* empêche la navbar de remonter */
        transition: none !important;         /* évite les animations parasites */
    }
}


    nav .container {
        padding: 0 2rem;
        gap: 0.5rem;
		padding-bottom : 2rem;
    }

    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
    }

    .logo-icon { display: none; }

    .logo-text .main {
        font-size: 1.4rem;
    }

    .logo-text .sub {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* LANG SWITCHER */
    .lang-switcher {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-left: auto;   /* pousse le bouton complètement à droite */
    order: 4;            /* s'assure qu'il passe après les langues */
}


    /* MENU MOBILE */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--warm-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 1rem;
        transition: left 0.35s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--lavender-pale);
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* HERO */
    .hero {
        margin-top: 70px;
        padding: 2.5rem 1.5rem;
    }

    /* GRILLES */
    .features-grid,
    .activities-grid,
    .accessibility-grid,
    .description-content,
    .booking-container,
    .contact-container,
    .access-container {
        grid-template-columns: 1fr !important;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item {
        height: 260px;
    }

    /* FORMULAIRE */
    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        scroll-margin-top: 90px;
    }
}

/* MOBILE MOYEN */
@media (max-width: 640px) {

    nav {
        height: 75px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-text .main {
        font-size: 2rem;
    }

    .logo-text .sub {
        font-size: 1rem;
    }

    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .hero {
        margin-top: 65px;
        padding: 2rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 240px;
    }

    section {
        padding: 3rem 1rem;
        scroll-margin-top: 85px;
    }

}

/* PETIT MOBILE */
@media (max-width: 480px) {

    nav {
        height: 60px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-text .main {
        font-size: 1rem;
    }

    .logo-text .sub {
        font-size: 0.55rem;
    }

    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero {
        margin-top: 60px;
        padding: 1.5rem 0.5rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    section {
        scroll-margin-top: 80px;
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        filter: drop-shadow(0 2px 8px rgba(212, 116, 94, 0.2)); 
    }
    50% { 
        filter: drop-shadow(0 4px 12px rgba(212, 116, 94, 0.4)); 
    }
}

.logo-icon img {
    animation: pulse-glow 4s ease-in-out infinite;
}

.logo:hover .logo-icon img {
    animation: none;
    filter: drop-shadow(0 6px 16px rgba(212, 116, 94, 0.5));
}




/* Effet texture terracotta sur les cartes */
.feature-card,
.activity-card,
.address-card {
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(212, 116, 94, 0.02) 49%, rgba(212, 116, 94, 0.02) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(212, 116, 94, 0.02) 49%, rgba(212, 116, 94, 0.02) 51%, transparent 51%);
    background-size: 20px 20px;
}

/* Animation de flottement pour les cartes */
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card:hover,
.activity-card:hover {
    animation: float-card 2s ease-in-out infinite;
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
	right : 0;
    width: 2px;              /* devient une barre verticale */
    height: 0%;              /* progresse en hauteur */
    background: var(--terracotta);
    z-index: 1001;
    transition: height 0.1s ease;
}
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background:  var(--terracotta);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 122, 184, 0.4);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:active {
    transform: translateY(0) scale(0.9);
}

@media (min-width: 969px) {
    .back-to-top {
        display: none; /* Seulement sur mobile */
    }
}

/* Version finale optimisée */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 1rem 0.6rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--lavender-pale), white);
        border-radius: 50%;
    }
    
    .feature-card h4 {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 0.5rem;
    }
    
    .feature-card {
        padding: 0.8rem 0.4rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-card h4 {
        font-size: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.7rem;
    }
}

