/* ========================================
   La Balade du Lay - Styles
   ======================================== */

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

:root {
    --green-dark: #1a3c18;
    --green: #2d5a27;
    --green-light: #4a8c3f;
    --green-pale: #e8f0e6;
    --gold: #c9952b;
    --gold-light: #e8c76a;
    --gold-pale: #fdf6e3;
    --cream: #faf8f4;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-600: #525252;
    --gray-800: #262626;
    --text: #333333;
    --text-light: #666666;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background: #b8861f;
    border-color: #b8861f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 149, 43, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline:hover {
    background: var(--gold-light);
    color: var(--green-dark);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 60, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-link--cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 24px;
}

.nav-link--cta:hover {
    background: #b8861f;
    transform: translateY(-1px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay sombre pour lisibilite (pas de vert) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.5) 100%);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 24px 40px;
    max-width: 800px;
}

.hero-content--split {
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-affiche {
    flex: 0 0 340px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-affiche-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Logo cercle blanc */
.hero-logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease both;
    overflow: hidden;
    padding: 6px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s ease 0.1s both;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 900;
    margin-bottom: 6px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 4px;
    animation: fadeInUp 0.8s ease 0.3s both;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-organizer {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.35s both;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.hero-info {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px 20px;
    margin-bottom: 14px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-info-item + .hero-info-item::before {
    content: '·';
    margin-right: 0;
    font-size: 1.4rem;
    opacity: 0.5;
    color: var(--gold-light);
}

.hero-info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold-light);
}

.hero-theme {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--white);
    margin-bottom: 14px;
    animation: fadeInUp 0.8s ease 0.5s both;
    background: rgba(201, 149, 43, 0.3);
    border: 1.5px solid rgba(201, 149, 43, 0.5);
    padding: 8px 22px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-theme span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-hero-cta {
    padding: 7px 22px;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    border-width: 1.5px;
}

.hero .btn {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.5;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* --- Section Common --- */
.section {
    padding: 60px 0;
}

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

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--green-dark);
    margin-bottom: 10px;
}

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

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    min-height: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

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

/* --- Presentation Section --- */
.section-presentation {
    background: var(--cream);
}

.presentation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}

.presentation-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.presentation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentation-icon svg {
    width: 56px;
    height: 56px;
}

.presentation-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.presentation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.presentation-text strong {
    color: var(--green);
}

/* --- Menu Section --- */
.section-menu {
    background: var(--green-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-menu::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(74, 140, 63, 0.08);
}

/* Trail Header */
.trail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
    gap: 6px;
}

.trail-header .section-title {
    margin-bottom: 0;
}

.trail-header-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.trail-prices {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 10px 28px;
    flex-shrink: 0;
}

.trail-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trail-price-label {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

.trail-price-label em {
    font-style: normal;
    font-size: 0.8rem;
    opacity: 0.7;
}

.trail-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.trail-price-value small {
    font-size: 0.9rem;
    vertical-align: super;
}

.trail-price-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
}

/* Trail Layout */
.trail {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

/* Ligne centrale pointillee */
.trail::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(201, 149, 43, 0.35) 0px,
        rgba(201, 149, 43, 0.35) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%);
    z-index: 0;
}

/* Hiking boot emoji */
.trail-boot {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 20px;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
    transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bootWalk 0.5s ease-in-out infinite alternate;
}

@keyframes bootWalk {
    from { transform: translate(-50%, -50%) translateY(0) rotate(-5deg); }
    to { transform: translate(-50%, -50%) translateY(-5px) rotate(5deg); }
}

.trail-boot.at-stop {
    animation: bootArrive 0.5s ease forwards;
}

@keyframes bootArrive {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.3) rotate(0deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

/* Trail stops */
.trail-stops {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 0;
}

.trail-stop {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.3;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
}

.trail-stop.active {
    opacity: 1;
    transform: translateY(0);
}

/* Alternance gauche / droite */
.trail-stop--start {
    justify-content: center;
    padding: 0 0 10px;
}

.trail-stop--left {
    justify-content: flex-start;
    padding-right: calc(50% + 24px);
    flex-direction: row-reverse;
}

.trail-stop--right {
    justify-content: flex-end;
    padding-left: calc(50% + 24px);
}

.trail-stop--left .trail-stop-card {
    text-align: right;
}

.trail-stop--end {
    justify-content: center;
    padding-top: 10px;
}

/* Marker (emoji) */
.trail-stop-marker {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 149, 43, 0.12);
    border: 2px solid rgba(201, 149, 43, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.trail-stop.active .trail-stop-marker {
    background: rgba(201, 149, 43, 0.3);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 149, 43, 0.3);
    transform: scale(1.1);
}

.trail-stop-icon {
    font-size: 1.5rem;
}

/* Card */
.trail-stop-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
    flex-shrink: 1;
}

.trail-stop.active .trail-stop-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(201, 149, 43, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.trail-stop-num {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    font-weight: 700;
}

.trail-stop-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2px 0;
    line-height: 1.2;
}

.trail-stop-card p {
    font-size: 0.82rem;
    opacity: 0.55;
    margin: 0;
}

/* Start & End special styling */
.trail-stop--start .trail-stop-marker,
.trail-stop--end .trail-stop-marker {
    width: 58px;
    height: 58px;
    background: rgba(201, 149, 43, 0.2);
    border-color: var(--gold-light);
}

.trail-stop--start .trail-stop-icon,
.trail-stop--end .trail-stop-icon {
    font-size: 1.7rem;
}

.trail-stop--start .trail-stop-card,
.trail-stop--end .trail-stop-card {
    background: rgba(201, 149, 43, 0.1);
    border-color: rgba(201, 149, 43, 0.25);
}

/* --- Infos Section --- */
.section-infos {
    background: var(--white);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.info-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.info-card h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-card ul {
    margin-top: 4px;
}

.info-card li {
    padding: 4px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.infos-rules {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 40px;
    border-left: 4px solid var(--green);
}

.infos-rules h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.rules-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.rules-warnings {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 50, 50, 0.06);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #c0392b;
}

.warning-item svg {
    color: #c0392b;
    flex-shrink: 0;
}

.rules-note {
    font-size: 0.88rem !important;
    font-style: italic;
    opacity: 0.7;
}

/* --- Billetterie Section --- */
.section-billetterie {
    background: var(--green);
    position: relative;
}

.section-billetterie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 10%, rgba(74, 140, 63, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(26, 60, 24, 0.4) 0%, transparent 50%);
}

.billetterie-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.billetterie-notices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.notice svg {
    flex-shrink: 0;
    color: var(--gold-light);
}

.notice--warning {
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.25);
    grid-column: 1 / -1;
}

.notice--warning svg {
    color: #ffc107;
}

.billetterie-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.billetterie-widget iframe {
    border-radius: var(--radius-sm);
}

/* --- Editions Section --- */
.section-editions {
    background: var(--cream);
}

/* Carrousel d'affiches */
.affiches-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

.carousel-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-md);
    cursor: grab;
}

.carousel-track-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
    padding: 10px 0;
    user-select: none;
    -webkit-user-select: none;
}

.carousel-slide {
    flex: 0 0 180px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.carousel-slide--current img {
    border: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(201, 149, 43, 0.3);
}

.carousel-year {
    display: block;
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green);
}

.carousel-slide--current .carousel-year {
    color: var(--gold);
    font-size: 1.05rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--green-light);
    background: var(--white);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.carousel-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
    opacity: 0.6;
}

.carousel-dots {
    display: none;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    opacity: 0.4;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.carousel-dot.active {
    opacity: 1;
    background: var(--gold);
    transform: scale(1.3);
}

/* --- Section Découvrir (SEO) --- */
.section-decouvrir {
    background: var(--cream);
    border-top: 1px solid var(--gray-200);
}

.decouvrir-content {
    max-width: 850px;
    margin: 0 auto;
}

.decouvrir-block {
    margin-bottom: 36px;
}

.decouvrir-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    text-align: center;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green);
    box-shadow: var(--shadow-sm);
}

.decouvrir-h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.decouvrir-block p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 14px;
}

.decouvrir-block strong {
    color: var(--green);
}

.decouvrir-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 36px 0;
}

.decouvrir-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.decouvrir-card-icon {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.decouvrir-card h3 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.decouvrir-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

.decouvrir-card strong {
    color: var(--green);
}

/* Mosaïque photos */
.decouvrir-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mosaic-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
}

.mosaic-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.06);
}

.mosaic-wide {
    grid-column: span 2;
}

.mosaic-wide img {
    height: 220px;
}

.decouvrir-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.decouvrir-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.6;
}

.decouvrir-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.decouvrir-list li strong {
    color: var(--green);
}

.decouvrir-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

/* --- Footer --- */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-address {
    margin-top: 12px;
    font-weight: 600;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer-link svg {
    flex-shrink: 0;
    color: var(--gold-light);
}

.footer-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem !important;
    opacity: 1 !important;
    margin-bottom: 4px;
}

.footer-event .btn {
    margin-top: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* --- Affiche --- */
.affiche-container {
    margin-top: 60px;
    text-align: center;
}

.affiche-frame {
    display: inline-block;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 149, 43, 0.15);
    transition: all var(--transition);
    max-width: 420px;
}

.affiche-frame:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(201, 149, 43, 0.25);
}

.affiche-img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: auto;
}

.affiche-caption {
    margin-top: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* --- Wave Separators --- */
.wave-separator {
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    width: 100%;
    height: 100%;
}

.wave-green-to-cream {
    background: var(--cream);
    margin-top: -1px;
}

.wave-dark-to-white {
    background: var(--green-dark);
    margin-bottom: -1px;
}

/* --- Photo Band --- */
.photo-band {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.photo-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 24, 0.5), rgba(26, 60, 24, 0.7));
}

.photo-band-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--white);
}

.photo-band-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    opacity: 0.9;
    text-align: center;
    padding: 0 24px;
}

.photo-band-icon {
    opacity: 0.8;
}

/* --- Floating Leaves --- */
.floating-leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-presentation {
    position: relative;
}

.leaf {
    position: absolute;
    animation: floatLeaf 15s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 8%;
    animation-delay: -5s;
}

.leaf-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

/* --- Menu Decoration --- */
/* (menu-deco removed) */

/* --- Rules Header --- */
.rules-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rules-header h3 {
    margin-bottom: 0;
}

/* --- Info Card Icon (larger) --- */
.info-card-icon {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card-icon svg {
    width: 40px;
    height: 40px;
}

/* --- Footer Logo --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo h3 {
    margin-bottom: 0;
}

/* --- Nav Logo Icon --- */
.nav-logo-icon {
    flex-shrink: 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Scroll reveal */
.presentation-card,
.info-card,
.edition-item,
.decouvrir-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.presentation-card.visible,
.info-card.visible,
.edition-item.visible,
.decouvrir-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.edition-item--pause.visible {
    opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .presentation-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .trail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trail-header-left .section-title {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 44px 0;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .nav-logo-icon {
        width: 30px;
        height: 24px;
    }

    .nav-cta-mobile {
        display: inline-block;
        background: var(--gold);
        color: var(--white);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .nav-link--cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

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

    .nav-link {
        padding: 14px 20px;
        font-size: 1.05rem;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-link--cta {
        margin-top: 16px;
        text-align: center;
    }

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

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

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

    .hero-content {
        padding: 60px 16px 16px;
    }

    .hero-logo-circle {
        width: 56px;
        height: 56px;
        margin-bottom: 4px;
    }

    .hero-badge {
        padding: 4px 14px;
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .hero-organizer {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .hero-content--split {
        flex-direction: column;
        gap: 0;
    }

    .hero-affiche {
        display: none;
    }

    .hero-text {
        align-items: center;
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        margin-bottom: 6px;
    }

    .hero-info-item {
        font-size: 0.85rem;
    }

    .hero-info-item svg {
        width: 16px;
        height: 16px;
    }

    .hero-info-item + .hero-info-item::before {
        display: none;
    }

    .hero-theme {
        padding: 5px 14px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .hero-theme span {
        font-size: 0.75rem;
    }

    .btn-hero-cta {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .hero-scroll {
        bottom: 4px;
    }

    .hero-scroll svg {
        width: 22px;
        height: 22px;
    }

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

    .billetterie-notices {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-event .btn {
        display: inline-flex;
    }

    .infos-rules {
        padding: 28px 24px;
    }

    .rules-warnings {
        flex-direction: column;
    }

    /* Trail mobile */
    .trail::before {
        left: 28px;
    }

    .trail-boot {
        display: none;
    }

    .trail-stop--left,
    .trail-stop--right {
        padding-left: 62px;
        padding-right: 0;
        justify-content: flex-start;
        flex-direction: row;
    }

    .trail-stop--left .trail-stop-card {
        text-align: left;
    }

    .trail-stop--start,
    .trail-stop--end {
        padding-left: 62px;
        justify-content: flex-start;
    }

    .trail-stop-marker {
        position: absolute;
        left: 4px;
        width: 48px;
        height: 48px;
    }

    .trail-stop--start .trail-stop-marker,
    .trail-stop--end .trail-stop-marker {
        width: 48px;
        height: 48px;
        left: 4px;
    }

    .trail-prices {
        padding: 8px 20px;
    }

    .trail-price-value {
        font-size: 1.5rem;
    }

    /* Carousel mobile - full width single poster */
    .affiches-carousel {
        gap: 0;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .carousel-slide img {
        height: auto;
        max-height: 55vh;
        object-fit: contain;
        border-radius: var(--radius-md);
    }

    .carousel-year {
        font-size: 1.1rem;
        margin-top: 10px;
    }

    .carousel-slide--current .carousel-year {
        font-size: 1.2rem;
    }

    .carousel-hint {
        display: none;
    }

    /* Dots indicator for mobile carousel */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green-light);
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        opacity: 1;
        background: var(--gold);
        transform: scale(1.3);
    }

    /* Découvrir SEO section mobile */
    .decouvrir-grid {
        grid-template-columns: 1fr;
    }

    .decouvrir-intro {
        padding: 20px;
        font-size: 1.05rem;
    }

    .decouvrir-card {
        padding: 24px 20px;
    }

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

    .mosaic-item img {
        height: 140px;
    }

    .mosaic-wide img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 65px 12px 24px;
    }

    .hero-logo-circle {
        width: 64px;
        height: 64px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-theme {
        font-size: 1.05rem;
        padding: 7px 16px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}
