/* =========================================
   Festival Passions en Luberon
   Modern & Minimalist Design
   ========================================= */

@font-face {
    font-family: 'Gliker';
    src: url('../fonts/Gliker-Regular.woff2') format('woff2'),
         url('../fonts/Gliker-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-primary: #722F37;
    --color-primary-light: #8B3D47;
    --color-primary-dark: #5A252C;

    --color-bg: #FAFAF8;
    --color-bg-alt: #F5F2ED;
    --color-bg-dark: #1A1A1A;

    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    --color-text-muted: #9A9A9A;

    --color-white: #FFFFFF;
    --color-black: #0D0D0D;

    --color-border: #E8E5E0;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Sections */
.section {
    padding: var(--space-3xl) 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* =========================================
   Navigation
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xs) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 0.3px white) drop-shadow(0 0 0.3px white);
    transition: var(--transition-fast);
}

.nav.scrolled .nav-logo-img {
    filter: drop-shadow(0 0 0.3px black) drop-shadow(0 0 0.3px black);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.nav.scrolled .logo-text {
    color: var(--color-black);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    position: relative;
}

.nav.scrolled .nav-menu a {
    color: var(--color-text);
}

.nav-menu a:hover {
    color: var(--color-white);
}

.nav.scrolled .nav-menu a:hover {
    color: var(--color-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition-fast);
}

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

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    background-color: var(--color-white);
    color: var(--color-black) !important;
    border-radius: var(--radius-sm);
}

.nav-cta::after {
    display: none !important;
}

.nav.scrolled .nav-cta {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

/* Dropdown menus */
.has-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
}

.nav.scrolled .nav-dropdown-toggle {
    color: var(--color-text);
}

.nav-dropdown-toggle:hover {
    color: var(--color-white);
}

.nav.scrolled .nav-dropdown-toggle:hover {
    color: var(--color-primary);
}

.nav-chevron {
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .nav-chevron,
.has-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 180px;
    padding: var(--space-xs) 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1001;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav-dropdown li {
    width: 100%;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1.1rem;
    font-size: 0.875rem;
    color: var(--color-text) !important;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.nav.scrolled .nav-toggle span {
    background-color: var(--color-black);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: -35% 0;
    background-image: image-set(
        url('../images/photos-web/hero-allee-chateau.webp') type('image/webp'),
        url('../images/photos-web/hero-allee-chateau.jpg') type('image/jpeg')
    );
    background-position: center 45%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #1A1A1A;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 20, 22, 0.15) 0%,
        rgba(42, 20, 22, 0.25) 30%,
        rgba(42, 20, 22, 0.75) 58%,
        rgba(42, 20, 22, 0.93) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-2xl);
    padding-bottom: 7rem;
    margin-bottom: 8vh;
    max-width: 900px;
}

.hero-edition {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-title-accent {
    font-style: italic;
    color: #D4A0A6;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-support {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.hero-support-logo {
    display: block;
    height: 95px;
    width: auto;
    background-color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
    width: 100%;
}

/* =========================================
   Introduction
   ========================================= */
.intro-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ornament-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to var(--dir, right), var(--color-primary), transparent);
}

.ornament-line:first-child {
    --dir: right;
}

.ornament-line:last-child {
    --dir: left;
}

.ornament-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 1;
}

.intro {
    padding: var(--space-3xl) 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* =========================================
   Cards Grid
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.cards-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Card */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #E8E5E0 100%);
}

/* Card Logo variant (for logos instead of photos) */
.card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: var(--space-lg);
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.card-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: none;
    transition: var(--transition-base);
}

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

.card-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #E8E5E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.card-content {
    padding: var(--space-md);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.card-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link svg {
    transition: var(--transition-fast);
}

.card-link:hover svg {
    transform: translate(2px, -2px);
}

.card-link-disabled {
    color: var(--color-text-muted);
    pointer-events: none;
}

/* Card Compact */
.card-compact {
    padding: 0;
    overflow: hidden;
}

.card-compact .card-content {
    padding: var(--space-md);
}

.card-compact .card-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.card-compact .card-logo {
    aspect-ratio: 3/2;
    padding: var(--space-md);
}

.card-compact .card-logo img {
    max-width: 95%;
    max-height: 95%;
}

/* =========================================
   Bien-être Gallery
   ========================================= */
.bien-etre-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    height: 500px;
}

.bien-etre-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.bien-etre-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bien-etre-gallery-item:hover img {
    transform: scale(1.04);
}

/* Photo 77 - stand minéraux : colonne 1, toute la hauteur */
.bien-etre-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Photo 79 - bols tibétains paysage : colonnes 2-3, rangée 1 */
.bien-etre-gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
}

/* Photo 78 - pierres détail : colonne 4, toute la hauteur */
.bien-etre-gallery-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1 / 3;
}

/* Photo 81 - massage : colonnes 2-3, rangée 2 */
.bien-etre-gallery-item:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

@media (max-width: 768px) {
    .bien-etre-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .bien-etre-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 3/4;
    }

    .bien-etre-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        aspect-ratio: 3/4;
    }

    .bien-etre-gallery-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: 3/4;
    }

    .bien-etre-gallery-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 480px) {
    .bien-etre-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   Producteurs Gallery
   ========================================= */
.producteurs-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    height: 500px;
}

.producteurs-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.producteurs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.producteurs-gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .producteurs-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .producteurs-gallery-item {
        aspect-ratio: 3/4;
    }
}

@media (max-width: 480px) {
    .producteurs-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   Activités Gallery
   ========================================= */
.activites-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    height: 560px;
}

.activites-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.activites-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.activites-gallery-item:hover img {
    transform: scale(1.04);
}

/* Portrait gauche (âne + Luberon) : pleine hauteur */
.activites-gallery-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

/* Paysage haut (balade à dos d'âne) : large */
.activites-gallery-item:nth-child(2) {
    grid-column: 4 / 10;
    grid-row: 1;
}

/* Portrait droit (enfant cygne) : pleine hauteur */
.activites-gallery-item:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 3;
}

/* Paysage bas-gauche (atelier Praxède) */
.activites-gallery-item:nth-child(4) {
    grid-column: 4 / 7;
    grid-row: 2;
}

/* Paysage bas-droit (folklore Rocher Mistral) */
.activites-gallery-item:nth-child(5) {
    grid-column: 7 / 10;
    grid-row: 2;
}

@media (max-width: 768px) {
    .activites-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .activites-gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 3/4;
    }

    .activites-gallery-item:nth-child(2),
    .activites-gallery-item:nth-child(5) {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .activites-gallery {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Partners
   ========================================= */
.partners-category {
    margin-bottom: var(--space-2xl);
}

.partners-category:last-child {
    margin-bottom: 0;
}

.partners-category-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--space-lg);
}


/* =========================================
   Association
   ========================================= */
.association-content {
    max-width: 900px;
    margin: 0 auto;
}

.association-text {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.association-text .lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.association-text p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    text-align: center;
}

.team-member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
}

.team-member-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.team-member-role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* =========================================
   Luberon
   ========================================= */
.luberon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.luberon-text .section-label,
.luberon-text .section-title {
    text-align: left;
}

.luberon-text .section-title {
    margin-bottom: var(--space-lg);
}

.luberon-text .lead {
    margin-bottom: var(--space-lg);
}

.luberon-features {
    margin-bottom: var(--space-lg);
}

.luberon-features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.luberon-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.luberon-features strong {
    color: var(--color-text);
}

.luberon-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
}

.luberon-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-border) 100%);
    border-radius: var(--radius-lg);
}

/* =========================================
   Contact
   ========================================= */
.contact {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.contact .section-label {
    color: var(--color-primary-light);
}

.contact .section-title {
    color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

.contact-info {
    padding-right: var(--space-xl);
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-info .section-title {
    margin-bottom: var(--space-lg);
}

.contact-details {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.contact-details strong {
    color: var(--color-white);
}

.contact-social {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.contact-social:hover {
    color: var(--color-white);
}

/* Contact Form */
.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.contact-form .btn-primary {
    margin-top: var(--space-sm);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-sm);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.footer-link {
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8125rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-credit {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit-link {
    font-family: 'Gliker', sans-serif;
    color: #D97757;
    transition: var(--transition-fast);
}

.footer-credit-link:hover {
    color: #e8956f;
}

/* =========================================
   Animations
   ========================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .luberon-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .luberon-image {
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-info .section-label,
    .contact-info .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background-color: var(--color-bg-dark);
        transition: var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        color: var(--color-white) !important;
    }

    .nav-menu a.nav-cta {
        color: var(--color-black) !important;
        font-size: 1.125rem;
        padding: 0.65rem 2rem !important;
    }

    .nav-menu > li {
        text-align: center;
    }

    /* Mobile dropdowns: flatten into simple list */
    .nav-dropdown-toggle {
        font-size: 1.5rem;
        color: var(--color-white) !important;
        justify-content: center;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: var(--space-xs) 0 var(--space-sm);
        min-width: 0;
        display: none;
    }

    .has-dropdown.open .nav-dropdown {
        display: flex;
    }

    .nav-dropdown a {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 1.125rem;
        padding: 0.4rem 0;
        text-align: center;
    }

    .nav-dropdown a:hover {
        background: transparent;
        color: var(--color-white) !important;
    }

    .nav-logo-img {
        height: 50px;
    }

    /* Logo text masqué sur mobile (gain de place + évite le wrap) */
    .logo-text {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero : photo qui couvre vraiment le viewport sur mobile */
    .hero-background {
        inset: 0;
        background-size: cover;
        background-position: center 40%;
    }

    .hero-content {
        padding: var(--space-lg);
        padding-bottom: 5rem;
        margin-bottom: 4vh;
    }

    .hero-title {
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--space-md);
    }

    .hero-support {
        margin-bottom: var(--space-lg);
    }

    .hero-support-logo {
        height: 75px;
        padding: 0.65rem 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Cartes-logos : carré 1:1 trop volumineux en mobile mono-colonne */
    .card-logo {
        aspect-ratio: auto;
        height: 170px;
        padding: var(--space-lg);
    }

    .card-logo img {
        max-width: 60%;
        max-height: 75%;
    }

    /* Card content centré sur mobile pour équilibrer avec le logo centré */
    .card-content {
        text-align: center;
        padding: var(--space-lg) var(--space-md);
    }

    .card-link {
        justify-content: center;
    }

    /* Cards compactes (producteurs, bien-être, marché, partenaires) :
       même rendu centré que les cards standards (vignerons/activités) */
    .card-compact .card-logo {
        aspect-ratio: auto;
        height: 170px;
        padding: var(--space-lg);
    }

    .card-compact .card-logo img {
        max-width: 60%;
        max-height: 75%;
    }

    .card-compact .card-content {
        text-align: center;
        padding: var(--space-lg) var(--space-md);
    }

    /* Grille en 1 colonne, cards centrées avec une largeur max raisonnable */
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Forcer la grille small à 1 colonne aussi (sinon repeat(auto-fill, minmax(250px,1fr)) gagne) */
    .cards-grid-small {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

    /* iPhone SE & petits écrans : ajustements hero */
    .hero-edition {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .hero-content {
        padding: var(--space-md);
        padding-bottom: 4.5rem;
    }

    .hero-cta {
        gap: 0.5rem;
    }

    .hero-cta .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.8125rem;
    }

    .hero-support-logo {
        height: 65px;
        padding: 0.55rem 0.9rem;
    }

    /* Photo break un peu plus court sur très petits écrans */
    .photo-break {
        min-height: 280px;
        height: 40vh;
    }

    .card-logo {
        height: 150px;
        padding: var(--space-md);
    }

    .card-logo img {
        max-width: 70%;
        max-height: 80%;
    }

    .card-content {
        padding: var(--space-md);
    }

    /* Card compacte : aligner les dimensions du logo sur les cards standards */
    .card-compact .card-logo {
        height: 150px;
        padding: var(--space-md);
    }

    .card-compact .card-logo img {
        max-width: 70%;
        max-height: 80%;
    }

    .card-compact .card-content {
        padding: var(--space-md);
    }
}

/* =========================================
   Programme Section
   ========================================= */
.programme-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-left: 2px solid var(--color-primary);
    margin-left: 1rem;
    padding-left: 2.5rem;
}

.programme-item {
    position: relative;
    padding-bottom: var(--space-lg);
}

.programme-item::before {
    content: '';
    position: absolute;
    left: -2.85rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-bg-alt);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.programme-item:last-child {
    padding-bottom: 0;
}

.programme-time {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.programme-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.programme-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.programme-content p:last-child {
    margin-bottom: 0;
}

.programme-note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-primary) !important;
}

.badge-new {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    vertical-align: middle;
    margin-left: 0.5rem;
}

.btn-billetterie {
    border-color: var(--color-white);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .programme-timeline {
        padding-left: 2rem;
    }

    .programme-item::before {
        left: -2.35rem;
    }
}

/* =========================================
   Photo Break (parallax dividers)
   ========================================= */
.photo-break {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.photo-break-img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 170%;
    top: -35%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.photo-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

.photo-break-caption {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

/* =========================================
   Photo Gallery (Masonry)
   ========================================= */
.gallery {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-dark);
}

.gallery .section-label {
    color: var(--color-primary-light);
}

.gallery .section-title {
    color: var(--color-white);
}

.gallery .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.gallery-masonry {
    columns: 4;
    column-gap: var(--space-sm);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@media (max-width: 1024px) {
    .gallery-masonry {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        columns: 1;
    }
}

/* =========================================
   Luberon Image (actual photo)
   ========================================= */
.luberon-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* =========================================
   Photo Credit
   ========================================= */
.photo-credit {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    padding-top: var(--space-lg);
}

/* =========================================
   Print Styles
   ========================================= */
@media print {
    .nav,
    .hero-scroll,
    .contact-form {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .section {
        padding: var(--space-lg) 0;
    }
}
