/* ============================================
   FunRC - Futuristic Warm RC Theme
   Warm cyberpunk design with tech accents
   ============================================ */

:root {
    --warm-orange: #ff6b35;
    --warm-orange-light: #ff8c5a;
    --warm-yellow: #ffc107;
    --warm-gold: #f5a623;
    --warm-red: #e63946;
    --warm-brown: #8b5e3c;
    --warm-cream: #fff8f0;
    --warm-beige: #f5e6d3;
    --dark-bg: #1a1208;
    --dark-card: #241a0c;
    --dark-card-hover: #3a2a15;
    --text-light: #ffeedd;
    --text-muted: #c4a882;
    --font-display: 'Fredoka One', cursive;
    --font-handwritten: 'Permanent Marker', cursive;
    --font-body: 'Nunito', sans-serif;
    --glow-orange: 0 0 30px rgba(255, 107, 53, 0.4);
    --glow-fire: 0 0 60px rgba(255, 107, 53, 0.2), 0 0 120px rgba(255, 193, 7, 0.1);
    --neon-glow: 0 0 10px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.2);
    --cyber-line: rgba(255, 107, 53, 0.06);
    --glass-bg: rgba(30, 22, 12, 0.8);
    --glass-bg-hover: rgba(40, 30, 16, 0.85);
    --radius: 4px;
    --radius-sm: 3px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
    font-family: 'Againts';
    src: url('fonts/againts.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--dark-bg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-road {
    position: relative; width: 280px; height: 40px;
    border-bottom: 2px dashed rgba(255,107,53,0.3);
}
.loader-rc {
    position: absolute; bottom: 4px; left: -40px; font-size: 1.8rem;
    color: var(--warm-orange);
    animation: rc-drive 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255,107,53,0.5));
    transform: scaleX(-1);
}
.loader-dust {
    position: absolute; bottom: 2px; left: -40px; width: 20px; height: 8px;
    background: radial-gradient(ellipse, rgba(196,168,130,0.4), transparent);
    border-radius: 50%; filter: blur(3px);
    animation: rc-drive 1.8s ease-in-out infinite, dust-fade 1.8s ease-in-out infinite;
}
@keyframes rc-drive {
    0% { left: -40px; }
    100% { left: 290px; }
}
@keyframes dust-fade {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    30%, 70% { opacity: 1; transform: scale(1.5); }
}
.loader-text {
    font-family: var(--font-body); font-size: 0.85rem;
    color: var(--text-muted); letter-spacing: 1px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, var(--cyber-line) 59px, var(--cyber-line) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, var(--cyber-line) 59px, var(--cyber-line) 60px);
    background-size: 60px 60px;
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a { color: var(--warm-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--warm-yellow); }

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

/* --- Embers --- */
.embers-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.ember {
    position: absolute; width: 4px; height: 4px;
    background: var(--warm-orange); border-radius: 50%; opacity: 0;
    animation: ember-rise linear infinite;
    box-shadow: 0 0 6px var(--warm-orange), 0 0 12px rgba(255, 193, 7, 0.3);
}
@keyframes ember-rise {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.8; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100vh) scale(0); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 60px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(180deg, rgba(10, 6, 4, 0.9) 0%, rgba(10, 6, 4, 0.5) 60%, transparent 100%);
    backdrop-filter: blur(12px);
    display: flex; align-items: center;
}
.navbar::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--warm-orange), var(--warm-yellow), var(--warm-orange), transparent 95%);
    opacity: 0; transition: opacity 0.4s ease;
    z-index: -1;
}
.navbar.scrolled::after { opacity: 0.4; }
.navbar.scrolled {
    background: rgba(10, 7, 3, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 107, 53, 0.2);
    height: 55px;
}
.nav-container {
    max-width: 1300px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px; margin-right: 30px;
    color: var(--text-light); font-family: var(--font-display); font-size: 1.5rem; text-decoration: none;
    position: relative; flex-shrink: 0;
}
.nav-logo img {
    width: 42px; height: 42px; border-radius: 50%; vertical-align: middle;
    border: 2px solid var(--warm-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.15);
    transition: var(--transition);
}
.nav-logo:hover img { transform: rotate(15deg) scale(1.1); box-shadow: 0 0 25px rgba(255, 107, 53, 0.6); }
.nav-logo span {
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-menu { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-link {
    color: rgba(255, 238, 221, 0.75); padding: 8px 10px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.75rem; transition: var(--transition); position: relative;
    text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid transparent; white-space: nowrap;
}
.nav-link i { margin-right: 5px; font-size: 0.75rem; opacity: 0.7; transition: var(--transition); }
.nav-link:hover i, .nav-link.active i { opacity: 1; }
.nav-link:hover, .nav-link.active {
    color: var(--warm-orange); background: rgba(255, 107, 53, 0.06);
    border-color: rgba(255, 107, 53, 0.2);
    text-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px; transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--warm-orange);
}
.nav-link:hover::after, .nav-link.active::after { width: 40%; }
.nav-social {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6) !important; border-radius: 50%; font-size: 0.85rem;
    transition: var(--transition); text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
}
.nav-social:hover { background: var(--warm-orange); color: #fff !important; border-color: var(--warm-orange); transform: scale(1.1); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001;
}
.nav-toggle span { width: 28px; height: 3px; background: var(--text-light); border-radius: 3px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; background: #0a0604;
}
.hero-bg-layer {
    position: absolute; inset: -30px; z-index: 0;
    background: url('../img/hero-bg.jpg') center center / cover no-repeat;
    filter: brightness(0.55) saturate(1.2) contrast(1.1);
    animation: hero-bg-drift 25s ease-in-out infinite alternate;
}
@keyframes hero-bg-drift {
    0% { transform: scale(1.08) translate(0, 0); }
    50% { transform: scale(1.12) translate(-15px, -8px); }
    100% { transform: scale(1.08) translate(8px, 5px); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 50% 45%, transparent 0%, rgba(10,6,4,0.4) 55%, rgba(10,6,4,0.75) 100%),
        radial-gradient(ellipse at 50% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,6,4,0.5) 0%, rgba(10,6,4,0.1) 30%, rgba(10,6,4,0.1) 50%, rgba(10,6,4,0.6) 100%);
}
.hero-scanlines {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}
.hero-light-sweep {
    position: absolute; z-index: 1; pointer-events: none;
    width: 1200px; height: 1200px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    overflow: visible;
    -webkit-mask-image: radial-gradient(circle, white 5%, transparent 70%);
    mask-image: radial-gradient(circle, white 5%, transparent 70%);
}
.hero-light-sweep::before {
    content: ''; position: absolute; inset: 0;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255,170,50,0.08) 3deg,
        transparent 12deg,
        transparent 120deg,
        rgba(255,170,50,0.08) 123deg,
        transparent 132deg,
        transparent 240deg,
        rgba(255,170,50,0.08) 243deg,
        transparent 252deg,
        transparent 360deg
    );
    animation: light-sweep-rotate 10s linear infinite;
}
@keyframes light-sweep-rotate { to { transform: rotate(360deg); } }

.hero-rc-left, .hero-rc-right { display: none; }

.hero-content {
    position: relative; z-index: 10; text-align: center; padding: 0 20px;
}

/* Staggered entrance */
.animate-in {
    opacity: 0; transform: translateY(30px);
    animation: stagger-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}
@keyframes stagger-in { to { opacity: 1; transform: translateY(0); } }

/* Title */
.hero-welcome {
    display: block; font-family: var(--font-body); font-size: 1.5rem;
    font-weight: 300; color: var(--text-muted); margin-bottom: 16px;
    letter-spacing: 4px; text-transform: uppercase;
}
.hero-brand {
    display: block; font-family: 'Againts', var(--font-display); font-size: clamp(4rem, 12vw, 7.5rem); padding: 0.15em 0;
    background: linear-gradient(
        170deg,
        #b8860b 0%,
        #daa520 12%,
        #ffd700 22%,
        #fffbe6 32%,
        #fff 38%,
        #fffbe6 42%,
        #ffd700 52%,
        #daa520 62%,
        #b8860b 72%,
        #daa520 82%,
        #ffd700 90%,
        #b8860b 100%
    );
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter:
        drop-shadow(0 1px 0 rgba(255,255,230,0.5))
        drop-shadow(0 -1px 0 rgba(100,70,0,0.5))
        drop-shadow(0 5px 3px rgba(0,0,0,0.8))
        drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    line-height: 1; letter-spacing: 8px;
}

/* Logo inline with rings */
.hero-logo-inline-wrap {
    display: block; position: relative; width: 90px; height: 90px;
    margin: 16px auto 0; overflow: visible;
}
.hero-logo-inline-wrap .hero-inline-logo {
    width: 65px; height: 65px;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border: none; background: none;
    filter: drop-shadow(0 0 12px rgba(255,107,53,0.7)) drop-shadow(0 0 30px rgba(255,107,53,0.3));
    z-index: 3; object-fit: contain;
    animation: logo-breathe 4s ease-in-out infinite alternate;
}
@keyframes logo-breathe {
    from { filter: drop-shadow(0 0 10px rgba(255,107,53,0.6)) drop-shadow(0 0 25px rgba(255,107,53,0.25)); }
    to { filter: drop-shadow(0 0 18px rgba(255,107,53,0.8)) drop-shadow(0 0 40px rgba(255,193,7,0.35)); }
}
.hero-logo-inline-wrap .hero-logo-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--warm-orange); border-right-color: rgba(255,193,7,0.5);
    animation: ring-spin 6s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255,107,53,0.4));
}
.hero-logo-inline-wrap .hero-logo-ring-inner {
    position: absolute; inset: 6px; border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: var(--warm-yellow); border-left-color: rgba(255,107,53,0.3);
    animation: ring-spin 4s linear infinite reverse;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-subtitle {
    font-family: var(--font-handwritten); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--warm-orange-light); margin: 14px 0 8px;
    text-shadow: 0 0 20px rgba(255,107,53,0.2);
}
.hero-description {
    font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 20px; line-height: 1.7;
}
.hero-description strong { color: var(--warm-orange); }

/* Stats */
.hero-stats { display: flex; justify-content: center; gap: 40px; margin: 30px 0; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0; transition: var(--transition); }
.stat-item:hover { transform: translateY(-3px); }
.stat-number {
    display: block; font-family: var(--font-display); font-size: 2.5rem;
    color: #fff; line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.stat-label i { color: var(--warm-orange); margin-right: 4px; }

/* Buttons */
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-family: var(--font-body);
    font-weight: 700; font-size: 0.85rem; cursor: pointer; border: none; text-decoration: none;
    letter-spacing: 1px; text-transform: uppercase; position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Scan line effect on hover */
.btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: none;
}
.btn:hover::after { left: 100%; transition: left 0.5s ease; }
.btn-warm {
    background: rgba(255,107,53,0.12);
    color: var(--warm-orange);
    border: 1px solid rgba(255,107,53,0.3);
    backdrop-filter: blur(10px);
}
.btn-warm:hover { transform: translateY(-2px); background: rgba(255,107,53,0.2); border-color: var(--warm-orange); color: var(--warm-orange); }
.btn-outline {
    background: rgba(255,107,53,0.05); color: var(--warm-orange);
    border: 1px solid rgba(255,107,53,0.3); backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,107,53,0.1); border-color: var(--warm-orange); transform: translateY(-2px); color: var(--warm-orange); box-shadow: var(--neon-glow); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-banner { background: linear-gradient(90deg, var(--warm-orange), var(--warm-red), var(--warm-orange)); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 50px; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-size: 1.1rem; color: #fff; white-space: nowrap; display: flex; align-items: center; gap: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   RC IMAGE DIVIDER - Scrolling photo strip
   ============================================ */
.rc-divider {
    overflow: hidden; position: relative; z-index: 1;
    height: 120px; background: var(--dark-bg);
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}
.rc-divider::before, .rc-divider::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
    pointer-events: none;
}
.rc-divider::before { left: 0; background: linear-gradient(90deg, var(--dark-bg), transparent); }
.rc-divider::after { right: 0; background: linear-gradient(-90deg, var(--dark-bg), transparent); }
.rc-divider-track {
    display: flex; gap: 8px; animation: rc-scroll 30s linear infinite;
    width: max-content; height: 100%;
}
.rc-divider-track img {
    height: 100%; width: 200px; object-fit: cover; border-radius: 8px;
    filter: saturate(1.2) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
}
.rc-divider-track img:hover {
    transform: scale(1.1); filter: saturate(1.5) brightness(1.1); z-index: 3;
}
@keyframes rc-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   RC ACTION BANNER - Full width CTA with image
   ============================================ */
.rc-action-banner {
    position: relative; z-index: 1; padding: 80px 20px; text-align: center;
    overflow: hidden; min-height: 350px; display: flex; align-items: center; justify-content: center;
}
.rc-action-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    background-attachment: fixed; filter: brightness(0.35) saturate(1.2);
    transition: transform 0.5s ease;
}
.rc-action-banner:hover .rc-action-bg { transform: scale(1.03); }
.rc-action-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(10, 6, 4, 0.6) 50%, rgba(255, 193, 7, 0.1) 100%);
}
.rc-action-content { position: relative; z-index: 2; max-width: 700px; }
.rc-action-content h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-light); margin-bottom: 16px;
}
.rc-action-content h2 i { color: var(--warm-orange); margin-right: 10px; }
.rc-action-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 30px; line-height: 1.8; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; background: rgba(255, 107, 53, 0.06); color: var(--warm-orange);
    padding: 6px 20px; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 700;
    margin-bottom: 16px; border: 1px solid rgba(255, 107, 53, 0.15);
    letter-spacing: 2px; text-transform: uppercase;
}
.section-tag i { margin-right: 6px; }
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-light); margin-bottom: 12px; line-height: 1.2;
    position: relative; display: inline-block;
    transition: text-shadow 0.6s ease;
}
.section-title.title-visible {
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
}
.section-title::after {
    content: ''; display: block; margin: 16px auto 0;
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--warm-orange), transparent);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-title.title-visible::after { width: 120px; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.since-badge {
    display: inline-block; margin-top: 16px;
    background: rgba(255, 107, 53, 0.1); border: 1px solid rgba(255, 107, 53, 0.25);
    padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; color: var(--warm-orange-light); font-weight: 600;
}
.since-badge i { margin-right: 6px; }

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%), var(--dark-bg);
    position: relative; overflow: hidden;
}
.about::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06), transparent 70%);
    animation: float-blob 15s ease-in-out infinite alternate;
}
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 40px) scale(1.2); }
    100% { transform: translate(40px, -30px) scale(0.9); }
}
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; position: relative; z-index: 1; }
.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: var(--radius); padding: 36px 28px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
/* Corner accents - HUD style */
.about-card::before, .about-card::after {
    content: ''; position: absolute; width: 20px; height: 20px; transition: all 0.4s ease;
}
.about-card::before {
    top: -1px; left: -1px;
    border-top: 2px solid rgba(255, 107, 53, 0.3); border-left: 2px solid rgba(255, 107, 53, 0.3);
}
.about-card::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3); border-right: 2px solid rgba(255, 107, 53, 0.3);
}
.about-card:hover { transform: translateY(-8px); border-color: rgba(255, 107, 53, 0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--neon-glow); }
.about-card:hover::before, .about-card:hover::after { width: 30px; height: 30px; border-color: var(--warm-orange); filter: drop-shadow(0 0 4px rgba(255,107,53,0.5)); }
.about-icon {
    width: 56px; height: 56px;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--warm-orange); margin-bottom: 20px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; z-index: 1;
}
.about-card:hover .about-icon { border-color: var(--warm-orange); box-shadow: var(--neon-glow); transform: scale(1.05); }
.about-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 12px; color: var(--warm-cream); position: relative; z-index: 1; }
.about-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; position: relative; z-index: 1; }
.about-card p strong { color: var(--warm-orange-light); }

/* ============================================
   MACHINES
   ============================================ */
.machines { background: radial-gradient(ellipse at 70% 30%, rgba(255, 193, 7, 0.05) 0%, transparent 50%), linear-gradient(180deg, var(--dark-bg), #1f150a); }
.machines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.machine-card {
    background: var(--dark-card); border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.machine-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-fire); border-color: rgba(255, 107, 53, 0.3); }
.machine-image { position: relative; height: 220px; overflow: hidden; }
.machine-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.machine-card:hover .machine-image img { transform: scale(1.1); }
.machine-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(26, 18, 8, 0.85); color: var(--warm-orange);
    padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    border: 1px solid rgba(255, 107, 53, 0.3); backdrop-filter: blur(10px);
}
.machine-badge.hot { background: rgba(230, 57, 70, 0.85); color: #fff; border-color: rgba(230, 57, 70, 0.5); }
.machine-badge.crawler { background: rgba(139, 94, 60, 0.85); color: var(--warm-cream); border-color: rgba(139, 94, 60, 0.5); }
.machine-info { padding: 24px; }
.machine-info h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; color: var(--warm-cream); }
.machine-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.machine-specs { display: flex; gap: 12px; flex-wrap: wrap; }
.machine-specs span {
    background: rgba(255, 107, 53, 0.1); color: var(--warm-orange-light);
    padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.machine-specs span i { margin-right: 4px; }

/* ============================================
   PISTES
   ============================================ */
.pistes {
    background: radial-gradient(ellipse at 50% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), var(--dark-bg);
    position: relative; overflow: hidden;
}
.pistes-bg-image {
    position: absolute; inset: 0; z-index: 0;
    background: url('../img/galerie/20240714_085902522_iOS.jpg') center center / cover no-repeat;
    filter: brightness(0.12) saturate(0.6); opacity: 0.5;
}
.pistes .container { position: relative; z-index: 1; }
.pistes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.piste-card {
    background: var(--glass-bg); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: var(--radius); padding: 0; text-align: center; transition: var(--transition); position: relative;
    overflow: hidden;
}
.piste-card:hover { border-color: rgba(255, 107, 53, 0.25); box-shadow: var(--neon-glow); }
.piste-card-image {
    width: 100%; height: 160px; overflow: hidden; position: relative;
}
.piste-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.85) saturate(1.1);
}
.piste-card:hover .piste-card-image img { transform: scale(1.1); filter: brightness(1) saturate(1.3); }
.piste-card-image::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(transparent, rgba(42, 31, 16, 0.95));
}
.piste-card .piste-icon, .piste-card h3, .piste-card p, .piste-card .piste-features { padding: 0 30px; }
.piste-card .piste-icon { padding-top: 20px; }
.piste-card .piste-features { padding-bottom: 30px; }
.piste-card.featured { border-color: var(--warm-orange); background: linear-gradient(180deg, rgba(255, 107, 53, 0.1), var(--dark-card)); transform: scale(1.03); }
.piste-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red));
    color: #fff; padding: 5px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.piste-card:hover { transform: translateY(-8px); box-shadow: var(--glow-fire); }
.piste-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.piste-icon { font-size: 2.5rem; color: var(--warm-orange); margin-bottom: 20px; transition: var(--transition); }
.piste-card:hover .piste-icon { transform: scale(1.15); filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
.piste-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; color: var(--warm-cream); }
.piste-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.piste-features { list-style: none; text-align: left; }
.piste-features li {
    padding: 8px 0; color: var(--text-muted); font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; gap: 10px;
}
.piste-features li:last-child { border-bottom: none; }
.piste-features i { color: var(--warm-orange); font-size: 0.8rem; }

/* ============================================
   TEAM
   ============================================ */
.equipe {
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%), linear-gradient(180deg, #1f150a, var(--dark-bg));
    position: relative; overflow: hidden;
}
.equipe::after {
    content: '\f0c0'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: -3%; top: 20%; font-size: 18rem; color: rgba(255,107,53,0.02);
    pointer-events: none;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: var(--radius); padding: 40px 28px; text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.team-card::before, .team-card::after {
    content: ''; position: absolute; width: 20px; height: 20px; transition: all 0.4s ease;
}
.team-card::before { top: -1px; right: -1px; border-top: 2px solid rgba(255,107,53,0.3); border-right: 2px solid rgba(255,107,53,0.3); }
.team-card::after { bottom: -1px; left: -1px; border-bottom: 2px solid rgba(255,107,53,0.3); border-left: 2px solid rgba(255,107,53,0.3); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--neon-glow); border-color: rgba(255, 107, 53, 0.25); }
.team-card:hover::before, .team-card:hover::after { width: 30px; height: 30px; border-color: var(--warm-orange); filter: drop-shadow(0 0 4px rgba(255,107,53,0.5)); }
.team-photo { position: relative; width: 130px; height: 130px; margin: 0 auto 24px; }
.team-photo img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    border: 3px solid var(--warm-orange); transition: var(--transition);
}
.team-card:hover .team-photo img { border-color: var(--warm-yellow); box-shadow: 0 0 40px rgba(255, 107, 53, 0.4); }
.team-glow {
    position: absolute; inset: -5px; border-radius: 50%;
    background: conic-gradient(var(--warm-orange), var(--warm-yellow), var(--warm-orange));
    opacity: 0; z-index: -1; transition: opacity 0.4s ease; animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.team-card:hover .team-glow { opacity: 0.5; }
.team-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--warm-cream); margin-bottom: 6px; }
.team-role {
    display: inline-block; background: rgba(255, 107, 53, 0.12); color: var(--warm-orange);
    padding: 4px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; margin-bottom: 16px;
}
.team-role i { margin-right: 4px; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   GALLERY
   ============================================ */
.galerie { background: var(--dark-bg); }
.gallery-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    background: var(--dark-card); color: var(--text-muted); border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 8px 22px; border-radius: 50px; font-family: var(--font-body);
    font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--warm-orange); color: #fff; border-color: var(--warm-orange); box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; height: 250px;
    transition: var(--transition); border: 1px solid rgba(255, 107, 53, 0.06);
}
.gallery-item:hover { border-color: rgba(255, 107, 53, 0.3); box-shadow: var(--neon-glow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(26, 18, 8, 0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 24px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--warm-orange); margin-bottom: 10px; }
.gallery-overlay span { color: var(--text-light); font-weight: 700; font-size: 0.95rem; }
.gallery-item.hidden { display: none; }

/* Gallery masonry & load more */
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-masonry .gallery-item { height: 280px; }
.gallery-masonry .gallery-item:nth-child(3n+1) { height: 320px; }
.gallery-masonry .gallery-item:nth-child(5n+2) { height: 240px; }
.gallery-hidden { display: none !important; }
.gallery-hidden.gallery-visible { display: block !important; }
.gallery-load-more { text-align: center; margin-top: 40px; }
.gallery-load-more .btn { font-size: 0.95rem; }

/* ============================================
   EVENTS
   ============================================ */
.evenements { background: radial-gradient(ellipse at 60% 40%, rgba(255, 107, 53, 0.06) 0%, transparent 50%), linear-gradient(180deg, var(--dark-bg), #1f150a); }
.events-timeline { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.event-card {
    display: flex; gap: 24px; background: var(--dark-card);
    border: 1px solid rgba(255, 107, 53, 0.1); border-radius: var(--radius);
    padding: 28px; transition: var(--transition); align-items: flex-start;
}
.event-card:hover { transform: translateX(8px); border-color: rgba(255, 107, 53, 0.3); box-shadow: var(--glow-fire); }
.event-date {
    min-width: 90px; text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 193, 7, 0.1));
    border-radius: var(--radius-sm); padding: 14px 10px; flex-shrink: 0;
}
.event-day { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--warm-orange); line-height: 1.2; }
.event-month { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.event-content h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--warm-cream); margin-bottom: 8px; }
.event-content h3 i { color: var(--warm-orange); margin-right: 8px; }
.event-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.event-tag { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.event-tag.free { background: rgba(76, 175, 80, 0.15); color: #66bb6a; border: 1px solid rgba(76, 175, 80, 0.2); }
.event-tag.special { background: rgba(255, 193, 7, 0.15); color: var(--warm-yellow); border: 1px solid rgba(255, 193, 7, 0.2); }
.event-tag.charity { background: rgba(230, 57, 70, 0.15); color: #ef5350; border: 1px solid rgba(230, 57, 70, 0.2); }
.event-tag.adventure { background: rgba(139, 94, 60, 0.15); color: #c49a6c; border: 1px solid rgba(139, 94, 60, 0.2); }

/* ============================================
   REGLEMENT
   ============================================ */
.reglement {
    background: var(--dark-bg); position: relative; overflow: hidden;
}
.reglement::before {
    content: ''; position: absolute; top: 0; left: -10%; width: 120%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent);
}
.reglement::after {
    content: '\f0e3'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 5%; top: 15%; font-size: 15rem; color: rgba(255,107,53,0.03);
    transform: rotate(15deg); pointer-events: none;
}
/* Reglement Accordion */
.reglement-accordion {
    max-width: 800px; margin: 0 auto; position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 8px;
}
.reg-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.08); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s ease;
}
.reg-item:hover { border-color: rgba(255, 107, 53, 0.25); }
.reg-item.open { border-color: rgba(255, 107, 53, 0.3); box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08); }
.reg-header {
    width: 100%; display: flex; align-items: center; gap: 16px;
    padding: 18px 24px; background: none; border: none; cursor: pointer;
    color: var(--warm-cream); font-family: var(--font-body); font-size: 1rem;
    text-align: left; transition: all 0.3s ease;
}
.reg-header:hover { background: rgba(255, 107, 53, 0.05); }
.reg-num {
    font-family: var(--font-display); font-size: 1.3rem; color: var(--warm-orange);
    opacity: 0.4; min-width: 30px; transition: all 0.3s ease;
}
.reg-item.open .reg-num, .reg-header:hover .reg-num { opacity: 1; }
.reg-title { flex: 1; font-weight: 700; }
.reg-title i { color: var(--warm-orange); margin-right: 10px; font-size: 0.9rem; }
.reg-arrow {
    color: var(--warm-orange); font-size: 0.8rem; transition: transform 0.3s ease;
    opacity: 0.5;
}
.reg-item.open .reg-arrow { transform: rotate(180deg); opacity: 1; }
.reg-body {
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 24px;
}
.reg-item.open .reg-body { max-height: 400px; padding: 0 24px 20px; }
.reg-body ul { list-style: none; padding-left: 46px; }
.reg-body li {
    color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
    padding: 6px 0; position: relative;
}
.reg-body li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--warm-orange); font-size: 0.75rem;
    position: absolute; left: -26px; top: 9px;
}
/* ============================================
   FAQ
   ============================================ */
.faq {
    background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.04), transparent 50%), var(--dark-bg);
    position: relative; overflow: hidden;
}
.faq::after {
    content: '\f059'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 3%; top: 15%; font-size: 14rem; color: rgba(255,107,53,0.02);
    pointer-events: none;
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(255,107,53,0.08); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(255,107,53,0.25); }
.faq-item.open { border-color: rgba(255,107,53,0.3); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 24px; background: none; border: none; cursor: pointer;
    color: var(--warm-cream); font-family: var(--font-body); font-size: 0.95rem;
    font-weight: 700; text-align: left; transition: all 0.3s ease;
}
.faq-question:hover { background: rgba(255,107,53,0.05); }
.faq-arrow { color: var(--warm-orange); font-size: 0.8rem; transition: transform 0.3s ease; opacity: 0.5; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); opacity: 1; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.faq-answer strong { color: var(--warm-orange); }

.reg-footer {
    text-align: center; color: var(--text-muted); font-size: 0.85rem;
    margin-top: 30px; font-style: italic; opacity: 0.7;
    position: relative; z-index: 1;
}
.reg-footer i { color: var(--warm-orange); margin-right: 6px; }

/* ============================================
   COTISATION / PRICING
   ============================================ */
.cotisation {
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%), linear-gradient(180deg, #1f150a, var(--dark-bg));
    position: relative; overflow: hidden;
}
.cotisation::before {
    content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.06), transparent 70%);
    animation: float-blob 20s ease-in-out infinite alternate;
}
.cotisation::after {
    content: '\f004'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 3%; bottom: 10%; font-size: 12rem; color: rgba(255,107,53,0.03);
    transform: rotate(-15deg); pointer-events: none;
}
/* Join Steps */
.join-steps {
    display: flex; align-items: flex-start; justify-content: center; gap: 16px;
    max-width: 1000px; margin: 0 auto 40px; position: relative; z-index: 1;
    flex-wrap: wrap;
}
.join-step {
    flex: 1; min-width: 240px; max-width: 320px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.08); border-radius: var(--radius);
    padding: 36px 28px; text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.join-step p { flex: 1; }
.join-step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--warm-orange), var(--warm-yellow));
    transform: scaleX(0); transition: transform 0.5s ease;
}
.join-step:hover { transform: translateY(-8px); border-color: rgba(255, 107, 53, 0.3); box-shadow: var(--glow-fire); }
.join-step:hover::before { transform: scaleX(1); }
.join-step-number {
    position: absolute; top: 12px; right: 16px;
    font-family: var(--font-display); font-size: 3rem; color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}
.join-step:hover .join-step-number { color: rgba(255, 107, 53, 0.25); }
.join-step-icon {
    width: 65px; height: 65px; margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 193, 7, 0.1));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--warm-orange);
    transition: all 0.4s ease;
}
.join-step:hover .join-step-icon { transform: scale(1.15); box-shadow: 0 0 30px rgba(255, 107, 53, 0.3); }
.join-step h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--warm-cream); margin-bottom: 12px; }
.join-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.join-step p strong { color: var(--warm-orange-light); }

.join-step-arrow {
    display: flex; align-items: center; color: var(--warm-orange); font-size: 1.5rem;
    opacity: 0.3; padding-top: 60px;
}

.join-pricing {
    max-width: 900px; margin: 0 auto 30px; position: relative; z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.1); border-radius: var(--radius);
    padding: 32px; overflow: hidden;
}
.join-pricing::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--warm-orange), var(--warm-yellow), var(--warm-orange));
    background-size: 200% 100%; animation: gradient-slide 3s ease infinite;
}
.join-pricing-title {
    font-family: var(--font-display); font-size: 1.25rem; color: var(--warm-cream);
    margin-bottom: 20px; text-align: center;
}
.join-pricing-title i { color: var(--warm-orange); margin-right: 10px; }
.join-table-wrap { overflow-x: auto; margin-bottom: 16px; }
.join-table {
    width: 100%; border-collapse: collapse; font-size: 0.92rem;
}
.join-table thead th {
    background: rgba(255, 107, 53, 0.12); color: var(--warm-orange);
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 14px 18px; text-align: left;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}
.join-table tbody td {
    padding: 14px 18px; color: var(--text-muted); border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease;
}
.join-table tbody tr:hover td { background: rgba(255, 107, 53, 0.05); }
.join-table tbody tr:last-child td { border-bottom: none; }
.join-table strong { color: var(--warm-cream); }
.join-price {
    display: inline-block; font-family: var(--font-display); font-size: 1.2rem;
    color: var(--warm-orange); font-weight: 700;
}
.join-yes { color: #4caf50; font-weight: 600; }
.join-yes i { margin-right: 4px; }
.join-no { color: #e57373; font-weight: 600; }
.join-no i { margin-right: 4px; }
.join-info-small {
    font-size: 0.85rem; color: var(--text-muted); opacity: 0.7;
    text-align: center; font-style: italic;
}
.join-info-small i { color: var(--warm-orange); margin-right: 6px; }

.join-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.temoignages { background: radial-gradient(ellipse at 40% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%), var(--dark-bg); }
.testimonials-slider { max-width: 700px; margin: 0 auto; position: relative; min-height: 200px; }
.testimonial-card {
    background: var(--dark-card); border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius); padding: 40px; text-align: center; display: none; animation: fadeIn 0.6s ease;
}
.testimonial-card.active { display: block; }
.testimonial-stars { margin-bottom: 20px; }
.testimonial-stars i { color: var(--warm-yellow); font-size: 1.1rem; margin: 0 2px; }
.testimonial-card p { color: var(--text-light); font-size: 1.1rem; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { color: var(--warm-orange); font-weight: 700; font-size: 0.9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.testimonial-dot {
    width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 107, 53, 0.2);
    cursor: pointer; transition: var(--transition); border: none;
}
.testimonial-dot.active { background: var(--warm-orange); box-shadow: 0 0 15px rgba(255, 107, 53, 0.4); }

/* ============================================
   BLOG / ACTUS
   ============================================ */
.blog { background: radial-gradient(ellipse at 60% 40%, rgba(255, 107, 53, 0.06) 0%, transparent 50%), linear-gradient(180deg, var(--dark-bg), #1f150a); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.blog-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--warm-orange), transparent);
    opacity: 0; transition: opacity 0.4s ease;
    z-index: 2;
}
.blog-card:hover { box-shadow: var(--neon-glow); border-color: rgba(255, 107, 53, 0.25); }
.blog-card:hover::before { opacity: 1; }
.blog-image { position: relative; height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-date {
    position: absolute; top: 14px; left: 14px;
    background: rgba(26, 18, 8, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3); border-radius: var(--radius-sm);
    padding: 8px 14px; text-align: center; min-width: 60px;
}
.blog-day { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--warm-orange); line-height: 1; }
.blog-month { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-top: 2px; }
.blog-content { padding: 24px; }
.blog-content h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--warm-cream); margin-bottom: 10px; line-height: 1.3; }
.blog-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; }
.blog-meta span { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; }
.blog-meta i { color: var(--warm-orange); margin-right: 4px; font-size: 0.75rem; }
/* Blog pagination */
.blog-pagination {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px;
}
.blog-page-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.08); color: var(--warm-orange);
    font-size: 1rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.blog-page-btn:hover { background: var(--warm-orange); color: #fff; border-color: var(--warm-orange); }
.blog-page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.blog-page-btn:disabled:hover { background: rgba(255, 107, 53, 0.08); color: var(--warm-orange); }
.blog-page-dots { display: flex; gap: 10px; }
.blog-dot {
    width: 12px; height: 12px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255, 107, 53, 0.25); transition: var(--transition);
}
.blog-dot.active { background: var(--warm-orange); box-shadow: 0 0 12px rgba(255, 107, 53, 0.5); transform: scale(1.2); }
.blog-dot:hover { background: rgba(255, 107, 53, 0.5); }

.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-read-more {
    color: var(--warm-orange); font-size: 0.85rem; font-weight: 700; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.blog-read-more i { margin-left: 4px; transition: transform 0.3s ease; }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }
.blog-card { cursor: pointer; }

/* Blog Modal */
.blog-modal {
    position: fixed; inset: 0; z-index: 10001; display: none;
    align-items: center; justify-content: center; padding: 30px;
}
.blog-modal.active { display: flex; }
.blog-modal-backdrop {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}
.blog-modal-container {
    position: relative; z-index: 2; background: var(--dark-card);
    border: 1px solid rgba(255, 107, 53, 0.2); border-radius: var(--radius);
    max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto;
    animation: modal-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 107, 53, 0.1);
}
@keyframes modal-slide-up {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.blog-modal-close {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: rgba(0, 0, 0, 0.6); color: #fff; font-size: 1.1rem;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.blog-modal-close:hover { background: var(--warm-orange); transform: rotate(90deg); }
.blog-modal-img-wrap { position: relative; width: 100%; height: 300px; overflow: hidden; }
.blog-modal-img { width: 100%; height: 100%; object-fit: cover; }
.blog-modal-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(transparent, var(--dark-card));
}
.blog-modal-date {
    position: absolute; top: 16px; left: 16px;
    background: rgba(26, 18, 8, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3); border-radius: var(--radius-sm);
    padding: 8px 16px; color: var(--warm-orange); font-weight: 700; font-size: 0.9rem;
}
.blog-modal-body { padding: 30px; }
.blog-modal-body h2 {
    font-family: var(--font-display); font-size: 1.6rem; color: var(--warm-cream);
    margin-bottom: 12px; line-height: 1.3;
}
.blog-modal-author {
    display: inline-block; background: rgba(255, 107, 53, 0.1); color: var(--warm-orange);
    padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    margin-bottom: 20px;
}
.blog-modal-text {
    color: var(--text-muted); font-size: 1rem; line-height: 1.9; white-space: pre-line;
}
.blog-modal-gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px;
    margin-top: 20px;
}
.blog-modal-gallery img {
    width: 100%; height: 120px; object-fit: cover; border-radius: 8px;
    cursor: pointer; transition: var(--transition); border: 2px solid transparent;
}
.blog-modal-gallery img:hover { border-color: var(--warm-orange); transform: scale(1.05); }

/* Image Lightbox (for blog images) */
.img-lightbox-overlay {
    position: fixed; inset: 0; z-index: 20000;
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.img-lightbox-overlay.active { opacity: 1; }
.img-lb-main {
    max-width: 90vw; max-height: 85vh; border-radius: var(--radius);
    box-shadow: 0 0 80px rgba(255, 107, 53, 0.15);
    animation: lb-zoom-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lb-zoom-in { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.img-lb-close {
    position: absolute; top: 20px; right: 24px; z-index: 3;
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: rgba(255, 107, 53, 0.2); color: #fff; font-size: 1.2rem;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.img-lb-close:hover { background: var(--warm-orange); transform: rotate(90deg); }
.img-lb-prev, .img-lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: rgba(255, 107, 53, 0.15); color: #fff; font-size: 1.3rem;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.img-lb-prev { left: 20px; }
.img-lb-next { right: 20px; }
.img-lb-prev:hover, .img-lb-next:hover { background: var(--warm-orange); transform: translateY(-50%) scale(1.1); }
.img-lb-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6); color: var(--text-muted); padding: 6px 18px;
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%), linear-gradient(180deg, var(--dark-bg), #1f150a);
    position: relative; overflow: hidden;
}
.contact::before {
    content: ''; position: absolute; top: 0; left: -10%; width: 120%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.2), transparent);
}
.contact::after {
    content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 2%; bottom: 10%; font-size: 14rem; color: rgba(255,107,53,0.02);
    transform: rotate(10deg); pointer-events: none;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
.contact-left { display: flex; flex-direction: column; gap: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex; gap: 20px; background: var(--glass-bg);
    border: 1px solid rgba(255, 107, 53, 0.08); border-radius: var(--radius);
    padding: 24px; transition: var(--transition); align-items: flex-start;
    backdrop-filter: blur(10px);
}
.contact-card:hover { border-color: rgba(255, 107, 53, 0.25); transform: translateX(5px); box-shadow: var(--neon-glow); }
.contact-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 193, 7, 0.1));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--warm-orange);
}
.contact-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--warm-cream); margin-bottom: 6px; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-card small { color: var(--warm-orange-light); font-size: 0.8rem; }
.fb-link { color: var(--warm-orange); font-weight: 700; font-size: 0.88rem; }
.fb-link:hover { color: var(--warm-yellow); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255, 107, 53, 0.15); }
.map-cta { text-align: center; margin-top: 16px; }
.map-cta p { color: var(--text-muted); font-size: 0.9rem; }
.map-cta i { color: var(--warm-orange); margin-right: 6px; }

/* Contact Form */
.contact-form-card {
    background: linear-gradient(145deg, rgba(42, 31, 16, 0.9), rgba(30, 20, 10, 0.95));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.15); border-radius: var(--radius);
    padding: 32px; position: relative; overflow: hidden;
}
.contact-form-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--warm-orange), var(--warm-yellow), var(--warm-orange));
    background-size: 200% 100%; animation: gradient-slide 3s ease infinite;
}
.contact-form-card h3 {
    font-family: var(--font-display); font-size: 1.3rem; color: var(--warm-cream);
    margin-bottom: 24px;
}
.contact-form-card h3 i { color: var(--warm-orange); margin-right: 10px; }

.contact-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-field { margin-bottom: 18px; }
.contact-form label {
    display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
    margin-bottom: 6px;
}
.contact-form label i { color: var(--warm-orange); margin-right: 6px; font-size: 0.8rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 53, 0.12); border-radius: 10px;
    color: var(--cream); font-family: var(--font-body); font-size: 0.95rem;
    outline: none; transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--warm-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.06);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(196, 168, 130, 0.4); }
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--dark-card); color: var(--cream); }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

.char-count { display: block; text-align: right; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

.captcha-field { position: relative; }
.captcha-q {
    display: inline-block; background: rgba(255, 107, 53, 0.15);
    color: var(--warm-orange); padding: 2px 12px; border-radius: 6px;
    font-weight: 800; font-size: 1rem; margin: 0 4px;
    font-family: var(--font-display);
}

.btn-submit {
    width: 100%; justify-content: center; margin-top: 6px;
    font-size: 1.05rem; padding: 16px;
}
.btn-submit:disabled {
    opacity: 0.6; cursor: not-allowed; transform: none !important;
    box-shadow: none !important;
}

.form-result {
    margin-top: 16px; padding: 14px 18px; border-radius: 10px;
    font-size: 0.9rem; font-weight: 600; display: none;
    animation: stagger-in 0.4s ease forwards;
}
.form-result.success {
    display: block; background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3); color: #81c784;
}
.form-result.error {
    display: block; background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.3); color: #ef9a9a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1f150a, #100b05); padding: 80px 0 30px; position: relative;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}
.footer::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--warm-orange), var(--warm-yellow), var(--warm-orange), transparent);
    opacity: 0.5;
}
.footer-campfire { text-align: center; margin-bottom: 40px; }
/* Footer top - logo centre */
.footer-top { text-align: center; margin-bottom: 30px; }
.footer-logo {
    width: 60px; height: 60px; border-radius: 50%; display: inline-block;
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    object-fit: cover; margin-bottom: 10px;
}
.footer-flame {
    font-size: 0.8rem; cursor: default; display: inline-block;
    opacity: 0.3; transition: all 0.3s ease;
}
.footer-flame:hover { opacity: 0.6; }
@keyframes flame-dance {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.1); }
}
.footer-slogan {
    color: var(--text-muted); font-size: 0.9rem; font-style: italic;
}

/* Footer nav - liens en ligne */
.footer-nav {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
    margin-bottom: 28px; padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.08);
}
.footer-nav a {
    color: var(--text-muted); font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: var(--transition); text-decoration: none;
}
.footer-nav a:hover { color: var(--warm-orange); }

/* Footer info - facebook + adresse en ligne */
.footer-info {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 28px;
}
.footer-fb {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,107,53,0.06); border: 1px solid rgba(255,107,53,0.15);
    color: var(--warm-orange) !important; padding: 6px 16px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.8rem; transition: var(--transition); text-decoration: none;
}
.footer-fb:hover { background: var(--warm-orange); color: #fff !important; border-color: var(--warm-orange); }
.footer-sep { color: rgba(255,107,53,0.2); }
.footer-address { color: var(--text-muted); font-size: 0.82rem; }
.footer-address i { color: var(--warm-orange); margin-right: 4px; }

.footer-bottom { border-top: 1px solid rgba(255, 107, 53, 0.08); padding-top: 24px; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-red));
    color: #fff; border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer;
    z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition); box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(26, 18, 8, 0.97); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,107,53,0.2);
    padding: 18px 24px; transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; display: flex; align-items: center; gap: 12px; min-width: 280px; }
.cookie-icon { font-size: 1.5rem; color: var(--warm-orange); flex-shrink: 0; }
.cookie-text p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.cookie-text a { color: var(--warm-orange); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 9px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
    cursor: pointer; border: none; transition: all 0.2s;
}
.cookie-accept { background: var(--warm-orange); color: #fff; }
.cookie-accept:hover { background: var(--warm-orange-light); transform: translateY(-1px); }
.cookie-refuse { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15); }
.cookie-refuse:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.cookie-details {
    max-width: 1100px; margin: 0 auto; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.cookie-details.open { max-height: 200px; padding-top: 14px; }
.cookie-details p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }
.cookie-details strong { color: var(--warm-cream); }

/* ============================================
   LEGAL MODAL
   ============================================ */
.footer-legal { margin-top: 8px; }
.footer-legal a { color: var(--text-muted); font-size: 0.78rem; text-decoration: underline; opacity: 0.6; }
.footer-legal a:hover { opacity: 1; color: var(--warm-orange); }
.legal-modal {
    position: fixed; inset: 0; z-index: 10002; display: none;
    align-items: center; justify-content: center; padding: 30px;
}
.legal-modal.active { display: flex; }
.legal-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); }
.legal-modal-box {
    position: relative; z-index: 2; background: var(--dark-card);
    border: 1px solid rgba(255,107,53,0.2); border-radius: var(--radius);
    max-width: 650px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 36px;
}
.legal-close {
    position: absolute; top: 14px; right: 14px; background: rgba(255,107,53,0.1);
    border: none; color: #fff; width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.legal-close:hover { background: var(--warm-orange); }
.legal-modal-box h2 { font-family: var(--font-display); color: var(--warm-orange); font-size: 1.4rem; margin-bottom: 24px; }
.legal-modal-box h3 { color: var(--warm-cream); font-size: 1rem; margin: 20px 0 8px; }
.legal-modal-box p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px; z-index: 10001;
    background: linear-gradient(90deg, var(--warm-orange), var(--warm-yellow), var(--warm-orange));
    width: 0%; transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255,107,53,0.5), 0 0 20px rgba(255,107,53,0.2);
}

/* ============================================
   SCROLL ANIMATIONS - Modern & Smooth
   ============================================ */
[data-aos] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: blur(4px);
}
[data-aos].aos-animate { filter: blur(0); }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-60px); }
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(60px); }
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.8) rotate(-2deg); }
[data-aos="zoom-in"].aos-animate { opacity: 1; transform: scale(1) rotate(0); }
[data-aos="flip-left"] { transform: perspective(800px) rotateY(25deg) translateX(-20px); }
[data-aos="flip-left"].aos-animate { opacity: 1; transform: perspective(800px) rotateY(0) translateX(0); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95);
    z-index: 10000; display: none; align-items: center; justify-content: center;
    padding: 40px; animation: fadeIn 0.3s ease;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 0 60px rgba(255, 107, 53, 0.2); }
.lightbox-close {
    position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem;
    cursor: pointer; background: none; border: none; transition: var(--transition);
}
.lightbox-close:hover { color: var(--warm-orange); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.2); border: 2px solid rgba(255, 107, 53, 0.4);
    color: #fff; font-size: 1.5rem; cursor: pointer; width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); backdrop-filter: blur(10px);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--warm-orange); border-color: var(--warm-orange); transform: translateY(-50%) scale(1.1); }

/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection { background: rgba(255, 107, 53, 0.3); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--warm-brown); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--warm-orange); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-nav { gap: 6px 16px; }
}
@media (max-width: 768px) {
    .hero-rc-left, .hero-rc-right { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh;
        background: rgba(26, 18, 8, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 80px 30px 30px; transition: right 0.4s ease;
        gap: 4px; overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1rem; padding: 12px 16px; }
    .section { padding: 70px 0; }
    .hero-stats { gap: 20px; }
    .stat-item { padding: 12px 16px; }
    .stat-number { font-size: 2.2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form .form-row-2 { grid-template-columns: 1fr; }
    .footer-info { flex-direction: column; gap: 10px; }
    .footer-sep { display: none; }
    .pistes-grid { grid-template-columns: 1fr; }
    .piste-card.featured { transform: none; }
    .piste-card.featured:hover { transform: translateY(-8px); }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .rules-grid { grid-template-columns: 1fr; }
    .gallery-grid, .gallery-masonry { grid-template-columns: 1fr 1fr; }
    .gallery-masonry .gallery-item, .gallery-masonry .gallery-item:nth-child(3n+1), .gallery-masonry .gallery-item:nth-child(5n+2) { height: 220px; }
    .blog-grid { grid-template-columns: 1fr; }
    .join-steps { flex-direction: column; align-items: center; }
    .join-step { max-width: 100%; }
    .join-step-arrow { display: none; }
    .join-table { font-size: 0.82rem; }
    .join-table thead th, .join-table tbody td { padding: 10px 12px; }
    .join-pricing { padding: 20px 16px; }
    .rc-divider { height: 80px; }
    .rc-divider-track img { width: 140px; }
    .rc-action-banner { padding: 60px 20px; min-height: 280px; }
    .rc-action-bg { background-attachment: scroll; }
    .rc-action-content h2 { font-size: 1.5rem; }
    .rc-action-content p { font-size: 1rem; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
    .gallery-grid, .gallery-masonry { grid-template-columns: 1fr; }
    .gallery-masonry .gallery-item, .gallery-masonry .gallery-item:nth-child(3n+1), .gallery-masonry .gallery-item:nth-child(5n+2) { height: 200px; }
    .hero-main-logo { width: 75px; height: 75px; }
    .hero-logo-showcase { width: 105px; height: 105px; }
    .about-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
}
