/* ============================================================
   ACBA - Aéroclub du Bassin d'Arcachon
   Stylesheet principal
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Caveat:wght@500;600&display=swap');

:root {
    /* Palette ACBA — Indigo, Or, Noir */
    --sky-50: #eef0ff; --sky-100: #dce0ff; --sky-200: #b8c0ff;
    --sky-300: #8088dd; --sky-400: #5555cc; --sky-500: #3838aa;
    --sky-600: #2d2d99; --sky-700: #252588; --sky-800: #1c1c6e; --sky-900: #141455;
    --gold: #e8c800; --gold-light: #fff8d0; --gold-dark: #c4a800;
    --sand: #f4f3f0; --sand-dark: #e5e3de; --dune: #c4a87c;
    --sunset: #e8c800; --pine: #2d5a3d;
    --dark: #0a0a14; --text: #1a1a2e; --text-light: #5a5a7c; --white: #ffffff;
    --radius: 12px; --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08); --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: var(--sky-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky-800); }
img { max-width: 100%; height: auto; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; }
.nav--transparent { background: transparent; }
.nav--solid, .nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-md); padding: 10px 32px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); font-weight: 700; font-size: 17px; transition: color 0.3s; }
.nav--solid .nav-logo, .nav.scrolled .nav-logo { color: var(--sky-800); }
.nav-logo-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--white); color: var(--sky-700); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.nav--solid .nav-logo-icon, .nav.scrolled .nav-logo-icon { background: var(--sky-700); color: var(--white); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; border: none; background: none; color: rgba(255,255,255,0.85); cursor: pointer; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
.nav--solid .nav-link, .nav.scrolled .nav-link { color: var(--text-light); }
.nav-link:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.nav--solid .nav-link:hover, .nav.scrolled .nav-link:hover { background: var(--sky-50); color: var(--sky-700); }
.nav-link--active { background: rgba(255,255,255,0.15) !important; }
.nav--solid .nav-link--active, .nav.scrolled .nav-link--active { background: var(--sky-50) !important; color: var(--sky-700) !important; }
.nav-cta { padding: 10px 22px; border-radius: 50px; border: none; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px; background: var(--white); color: var(--sky-700); box-shadow: 0 2px 12px rgba(0,0,0,0.15); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.nav--solid .nav-cta, .nav.scrolled .nav-cta { background: var(--sky-600); color: var(--white); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); color: var(--sky-700); }
.nav--solid .nav-cta:hover, .nav.scrolled .nav-cta:hover { color: var(--white); }
.nav-user { display: flex; align-items: center; gap: 8px; padding: 6px 16px 6px 8px; border-radius: 50px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.nav--solid .nav-user, .nav.scrolled .nav-user { background: var(--sky-50); border-color: var(--sky-100); }
.nav-user-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--sky-500); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.nav-user-name { font-size: 13px; font-weight: 500; color: var(--white); }
.nav--solid .nav-user-name, .nav.scrolled .nav-user-name { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 8px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.05); min-width: 220px; overflow: hidden; z-index: 110; }
.nav-dropdown-trigger { background: none; border: none; cursor: pointer; font-family: inherit; }
.nav-dropdown--hover:hover > .nav-dropdown-menu,
.nav-dropdown--hover:focus-within > .nav-dropdown-menu { display: block; }
.nav-dropdown-item { display: block; padding: 10px 16px; font-size: 14px; color: var(--text); transition: background 0.15s; text-decoration: none; }
.nav-dropdown-item:hover { background: var(--sky-50); color: var(--sky-700); }
.nav-dropdown-divider { height: 1px; background: var(--sand-dark); margin: 4px 0; }

/* Mobile menu */
.menu-btn { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; position: relative; z-index: 101; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); position: absolute; left: 7px; transition: all 0.3s; }
.nav--solid .menu-btn span, .nav.scrolled .menu-btn span { background: var(--text); }
.menu-btn span:nth-child(1) { top: 10px; } .menu-btn span:nth-child(2) { top: 17px; } .menu-btn span:nth-child(3) { top: 24px; }
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,24,36,0.97); z-index: 99; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 22px; font-weight: 300; padding: 10px 24px; letter-spacing: 1px; text-decoration: none; }
.mobile-section { text-align: center; }
.mobile-section summary { color: var(--white); font-size: 22px; font-weight: 300; padding: 10px 24px; letter-spacing: 1px; cursor: pointer; list-style: none; }
.mobile-section summary::-webkit-details-marker { display: none; }
.mobile-section summary::after { content: ' ▾'; font-size: 14px; opacity: .7; }
.mobile-section[open] summary::after { content: ' ▴'; }
.mobile-section a { display: block; font-size: 17px; padding: 8px 24px; opacity: .8; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #0a0a18 url('../../image/gallerie/23.jpg') center/cover no-repeat; }
.hero::before { content:''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(10,10,24,0.85) 0%, rgba(20,20,85,0.78) 30%, rgba(37,37,136,0.65) 55%, rgba(56,56,170,0.55) 75%, rgba(85,85,204,0.5) 100%); }
.hero::after { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse 120% 60% at 20% 80%, rgba(232,200,0,0.15) 0%, transparent 60%), radial-gradient(ellipse 80% 40% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 80px; max-width: 800px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 50px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 13px; font-weight: 500; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(40px,7vw,76px); line-height: 1.05; color: var(--white); margin-bottom: 24px; text-shadow: 0 2px 40px rgba(0,0,0,0.15); }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-sub { font-size: clamp(16px,2.2vw,20px); font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 560px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat-num { font-size: 36px; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.5px; }

/* Page hero (smaller, for inner pages) */
.page-hero {
    position: relative;
    padding: 160px 24px 90px;
    text-align: center;
    background: linear-gradient(165deg, #0a0a18, #1c1c6e 60%, #3838aa);
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(10,10,24,0.82) 0%, rgba(28,28,110,0.7) 50%, rgba(56,56,170,0.55) 100%);
    z-index: 1;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,5vw,52px); font-weight: 700; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.page-hero p { font-size: 18px; font-weight: 300; opacity: 0.92; max-width: 560px; margin: 0 auto; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; border: none; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.btn-primary { background: var(--sky-600); color: var(--white); box-shadow: 0 2px 12px rgba(45,45,153,0.3); }
.btn-primary:hover { background: var(--sky-700); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(45,45,153,0.4); color: var(--white); }
.btn-white { background: var(--white); color: var(--sky-700); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); color: var(--sky-700); }
.btn-outline { padding: 12px 28px; border: 1.5px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); color: var(--white); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-danger { background: #dc3545; color: var(--white); }
.btn-danger:hover { background: #c82333; color: var(--white); }
.btn-success { background: var(--pine); color: var(--white); }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 100px 24px; }
.section--sand { background: var(--sand); }
.section--dark { background: linear-gradient(135deg, var(--dark), var(--sky-900)); color: var(--white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--sky-500); margin-bottom: 16px; }
.section--dark .section-label { color: rgba(255,255,255,0.45); }
.section-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(30px,4.5vw,48px); color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.section--dark .section-title { color: var(--white); }
.section-desc { font-size: 17px; color: var(--text-light); line-height: 1.7; font-weight: 300; }
.section--dark .section-desc { color: rgba(255,255,255,0.6); }
.container { max-width: 1100px; margin: 0 auto; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.card h3 { font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--text-light); line-height: 1.6; font-weight: 300; }

/* Grid layouts */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* ─── OFFER CARDS ────────────────────────────────────────── */
.offer-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-persons { font-size: 13px; color: var(--sky-500); font-weight: 500; margin-bottom: 12px; }
.offer-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.offer-price { font-size: 28px; font-weight: 700; color: var(--sky-700); }
.offer-price span { font-size: 14px; font-weight: 400; color: var(--text-light); }

/* ─── FLEET CARDS ────────────────────────────────────────── */
.fleet-card { background: var(--sky-50); border-radius: var(--radius); padding: 24px; border: 2px solid transparent; transition: all 0.25s; cursor: pointer; }
.fleet-card:hover, .fleet-card.active { border-color: var(--sky-400); background: var(--white); box-shadow: 0 8px 30px rgba(45,45,153,0.1); }
.fleet-type { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; background: var(--sky-100); color: var(--sky-700); }
.fleet-reg { font-family: monospace; font-size: 13px; color: var(--text-light); margin: 6px 0 8px; }
.fleet-specs { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); }
.fleet-detail { background: linear-gradient(135deg, var(--sky-700), var(--sky-900)); border-radius: var(--radius-lg); padding: 40px; color: var(--white); margin-top: 32px; }
.fleet-detail h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; }
.fleet-detail p { font-weight: 300; opacity: 0.9; line-height: 1.7; }

/* ─── CAMERA CARDS ───────────────────────────────────────── */
.camera-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--dark); position: relative; aspect-ratio: 16/10; }
.camera-card img { width: 100%; height: 100%; object-fit: cover; }
.camera-label { position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 8px; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); color: var(--white); font-size: 13px; font-weight: 500; }
.camera-live { width: 8px; height: 8px; border-radius: 50%; background: #ff4444; animation: pulse 1.5s infinite; }

/* ─── MEMBER / ADMIN AREA ────────────────────────────────── */
.app-layout { display: flex; min-height: 100vh; padding-top: 65px; }
.sidebar { width: 260px; background: var(--white); border-right: 1px solid var(--sand-dark); padding: 24px 0; flex-shrink: 0; position: sticky; top: 65px; height: calc(100vh - 65px); overflow-y: auto; }
.sidebar-section { padding: 0 16px; margin-bottom: 24px; }
.sidebar-section-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); padding: 8px 12px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-light); transition: all 0.15s; text-decoration: none; }
.sidebar-link:hover { background: var(--sky-50); color: var(--sky-700); }
.sidebar-link--active { background: var(--sky-50); color: var(--sky-700); font-weight: 600; }
.sidebar-link .icon { font-size: 18px; width: 24px; text-align: center; }
.sidebar-badge { margin-left: auto; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; background: var(--sky-100); color: var(--sky-700); }

/* ─── Sidebar collapsible sections ─── */
.sidebar-group { margin-bottom: 8px; }
.sidebar-group > summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    user-select: none;
    border-radius: 6px;
    margin: 0 8px;
    transition: background .15s ease;
}
.sidebar-group > summary::-webkit-details-marker { display: none; }
.sidebar-group > summary:hover { background: var(--sand); color: var(--text); }
.sidebar-group > summary .icon { font-size: 16px; width: auto; }
.sidebar-chevron {
    display: inline-block;
    font-size: 10px;
    width: 12px;
    transition: transform .2s ease;
    color: var(--text-light);
}
.sidebar-group:not([open]) .sidebar-chevron { transform: rotate(-90deg); }
.sidebar-group > .sidebar-section {
    margin-bottom: 4px;
    padding-top: 4px;
    animation: sidebarExpand .18s ease-out;
}
@keyframes sidebarExpand {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sidebar-section--footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--sand-dark);
}
.main-content { flex: 1; padding: 32px 40px; background: var(--sand); min-height: calc(100vh - 65px); }
.main-content h1 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 8px; }
.main-content .subtitle { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }

/* ─── TABLES ─────────────────────────────────────────────── */
.table-wrapper { background: var(--white); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.table-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--sand); flex-wrap: wrap; gap: 12px; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-light); background: var(--sky-50); border-bottom: 1px solid var(--sand); }
td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--sand); }
tr:hover td { background: rgba(0,107,201,0.03); }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control { width: 100%; padding: 10px 14px; border: 1.5px solid var(--sand-dark); border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 14px; transition: border-color 0.2s; background: var(--white); }
.form-control:focus { outline: none; border-color: var(--sky-400); box-shadow: 0 0 0 3px rgba(12,135,235,0.1); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6b7c' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── ALERTS ─────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: var(--sky-50); color: var(--sky-800); border: 1px solid var(--sky-200); }

/* ─── STAT CARDS ─────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid rgba(0,0,0,0.05); }
.stat-card-value { font-size: 28px; font-weight: 700; color: var(--sky-700); }
.stat-card-label { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ─── LOGIN PAGE ─────────────────────────────────────────── */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(165deg, #0a0a18, #1c1c6e 60%, #3838aa); padding: 24px; }
.login-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; max-width: 420px; width: 100%; box-shadow: var(--shadow-lg); }
.login-card h1 { font-family: 'Playfair Display', serif; font-size: 28px; text-align: center; margin-bottom: 8px; }
.login-card .subtitle { text-align: center; color: var(--text-light); font-size: 15px; margin-bottom: 32px; }

/* ─── DOCUMENT LIST ──────────────────────────────────────── */
.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--white); border-radius: 10px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.2s; }
.doc-item:hover { border-color: var(--sky-200); box-shadow: var(--shadow); }
.doc-icon { width: 40px; height: 40px; border-radius: 8px; background: #fee2e2; color: #dc2626; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.doc-icon--pdf { background: #fee2e2; color: #dc2626; }
.doc-info { flex: 1; min-width: 0; }
.doc-name { font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-meta { font-size: 12px; color: var(--text-light); }
.doc-action { flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { padding: 40px 24px; text-align: center; background: var(--dark); color: rgba(255,255,255,0.4); font-size: 13px; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--sand-dark); }
.contact-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

.camera-zoom {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 500;
    opacity: 0; transition: opacity 0.3s;
}
.camera-card:hover .camera-zoom { opacity: 1; }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox--open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 8px; object-fit: contain; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: white; font-size: 36px;
    cursor: pointer; width: 48px; height: 48px; line-height: 48px;
    text-align: center; border-radius: 50%;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }
.lightbox-title {
    color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 500;
    text-align: center; max-width: 600px;
}

/* ─── AVION CARDS (fleet page) ───────────────────────────── */
.avion-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-bottom: 64px;
    padding-bottom: 64px; border-bottom: 1px solid var(--sand-dark);
}
.avion-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.avion-card--reverse { direction: rtl; }
.avion-card--reverse > * { direction: ltr; }
.avion-photo {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3; background: var(--sky-50);
}
.avion-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.avion-photo:hover img { transform: scale(1.05); }
.avion-photo-zoom {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; opacity: 0; transition: opacity 0.3s;
}
.avion-photo:hover .avion-photo-zoom { opacity: 1; }
.avion-spec { text-align: center; padding: 12px 16px; background: var(--sky-50); border-radius: 10px; }
.avion-spec-val { font-size: 20px; font-weight: 700; color: var(--sky-700); }
.avion-spec-label { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.avion-thumb {
    width: 72px; height: 52px; object-fit: cover; border-radius: 8px;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.2s;
}
.avion-thumb:hover { border-color: var(--sky-400); transform: scale(1.05); }

/* ─── AVION CAROUSEL (fleet page) ─────────────────────────── */
.avion-carousel {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; background: var(--sky-50);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.avion-carousel-empty {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px; color: var(--sky-300);
}
.carousel-track {
    display: flex; height: 100%;
    transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 100%; height: 100%; min-width: 0;
}
.carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    cursor: zoom-in; user-select: none; -webkit-user-drag: none;
}
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.92); border: none;
    color: var(--sky-700); font-size: 28px; font-weight: 700; line-height: 1;
    cursor: pointer; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
    display: flex; align-items: center; justify-content: center;
    padding-bottom: 3px;
}
.carousel-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.96); }
.carousel-arrow--prev { left: 12px; }
.carousel-arrow--next { right: 12px; }

.carousel-counter {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    padding: 4px 10px; border-radius: 12px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
    color: var(--white); font-size: 12px; font-weight: 600;
    letter-spacing: 0.3px;
}

.carousel-dots {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 2;
    padding: 6px 10px; border-radius: 16px;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
}
.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5); border: none;
    cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dot:hover { background: rgba(255,255,255,0.85); }
.carousel-dot.is-active { background: var(--white); transform: scale(1.35); }

.carousel-zoom-hint {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--white);
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.avion-carousel:hover .carousel-zoom-hint { opacity: 1; }

@media (max-width: 640px) {
    .carousel-arrow { width: 36px; height: 36px; font-size: 22px; }
    .carousel-arrow--prev { left: 8px; }
    .carousel-arrow--next { right: 8px; }
    .carousel-counter { font-size: 11px; top: 8px; right: 8px; }
    .carousel-dots { bottom: 8px; padding: 5px 8px; }
}

/* ─── COMPACT PHOTO GALLERY (homepage) ───────────────────── */
.photo-gallery-compact {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; border-radius: var(--radius-lg); overflow: hidden;
}
.photo-compact {
    aspect-ratio: 3/2; overflow: hidden; cursor: pointer; position: relative;
}
.photo-compact img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.photo-compact:hover img { transform: scale(1.08); }

/* ─── PARALLAX BAND (homepage section immersive) ─────────── */
.parallax-band {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    color: var(--white);
}
.parallax-band-inner {
    max-width: 720px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.parallax-band-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 16px;
    border: 1px solid rgba(232, 200, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
}
.parallax-band-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.parallax-band-desc {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 auto 32px;
    opacity: 0.92;
    max-width: 560px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.parallax-band-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .parallax-band { background-attachment: scroll; min-height: 420px; padding: 80px 20px; }
}

/* ─── ÉVÉNEMENT DÉTAIL ───────────────────────────────────── */
.event-hero {
    position: relative;
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(165deg, #0a0a18, #1c1c6e 60%, #3838aa);
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.event-back-link {
    display: inline-block; margin-bottom: 24px;
    font-size: 13px; color: rgba(255,255,255,0.8);
    padding: 6px 14px; border-radius: 50px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none; transition: all var(--transition);
}
.event-back-link:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.event-hero-date {
    font-size: 13px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.event-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px); font-weight: 700;
    line-height: 1.1; margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.event-hero-meta {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    font-size: 15px; color: rgba(255,255,255,0.92);
}
.event-badge-past {
    padding: 4px 12px; border-radius: 50px;
    background: rgba(255,255,255,0.15); font-size: 12px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

.event-description { font-size: 18px; line-height: 1.7; color: var(--text); margin-bottom: 32px; }
.event-programme {
    background: var(--sand); border-radius: var(--radius-lg);
    padding: 32px; margin-top: 32px;
    border-left: 4px solid var(--gold);
}
.event-programme h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; margin: 0 0 20px; color: var(--sky-700);
}
.event-programme div { font-size: 16px; line-height: 1.7; color: var(--text); white-space: pre-line; }
.event-cta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
}

/* ─── CARDS ÉVÉNEMENTS CLIQUABLES ────────────────────────── */
.event-card-link { text-decoration: none; color: inherit; display: block; transition: transform var(--transition), box-shadow var(--transition); }
.event-card-link:hover { transform: translateY(-4px); color: inherit; }
.event-card-link:hover .card { box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* ─── PHOTO GALLERY ──────────────────────────────────────── */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}
.photo-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer;
}
.photo-item--large { grid-column: span 2; grid-row: span 2; }
.photo-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--white);
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0; transition: opacity 0.3s;
}
.photo-item:hover .photo-overlay { opacity: 1; }

/* ─── FLEET PHOTOS ───────────────────────────────────────── */
.fleet-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.fleet-photos--three { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
@media (max-width: 780px) {
    .fleet-photos--three { grid-template-columns: 1fr; max-width: 460px; }
}
.fleet-photo-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s;
    text-decoration: none; color: inherit; display: block; cursor: pointer;
}
.fleet-photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fleet-photo-img {
    height: 180px; overflow: hidden; background: var(--sky-50);
}
.fleet-photo-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.fleet-photo-card:hover .fleet-photo-img img { transform: scale(1.05); }
.fleet-photo-info {
    padding: 16px 20px;
}
.fleet-photo-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.fleet-photo-info .fleet-reg { font-family: monospace; font-size: 13px; color: var(--text-light); margin-right: 10px; }
.fleet-photo-info .fleet-type {
    display: inline-block; padding: 2px 8px; border-radius: 5px; font-size: 11px; font-weight: 600;
    background: var(--sky-50); color: var(--sky-700);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links, .nav-cta, .nav-user { display: none !important; }
    .menu-btn { display: block; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 26px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .photo-gallery-compact { grid-template-columns: repeat(2, 1fr); }
    .photo-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .photo-item--large { grid-column: span 2; grid-row: span 1; }
    .fleet-photos { grid-template-columns: 1fr 1fr; }
    .avion-card { grid-template-columns: 1fr; gap: 20px; }
    .avion-card--reverse { direction: ltr; }
    .section { padding: 60px 20px; }
    .app-layout { flex-direction: column; }
    .sidebar { width: 100%; height: auto; position: relative; top: 0; border-right: none; border-bottom: 1px solid var(--sand-dark); }
    .main-content { padding: 24px 16px; }
    .table-wrapper { overflow-x: auto; }
}

/* ─── GOLD CTA BUTTON ────────────────────────────────────── */
.btn-gold {
    background: var(--gold); color: var(--dark);
    box-shadow: 0 2px 12px rgba(232,200,0,0.3);
    font-weight: 700;
}
.btn-gold:hover {
    background: var(--gold-dark); color: var(--dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(232,200,0,0.4);
}

/* ─── LOGO ───────────────────────────────────────────────── */
.nav-logo-img {
    height: 42px; width: auto; border-radius: 8px; object-fit: contain;
}

/* ─── DROPDOWN CLICK-BASED ───────────────────────────────── */
.nav-dropdown-menu.open { display: block !important; }
.nav-dropdown-menu::before { content:''; position:absolute; top:-16px; left:0; right:0; height:16px; }

@media (min-width: 769px) { .menu-btn { display: none; } }

/* ─── DEVENIR PILOTE — parcours + tarifs ─────────────────── */
.parcours-list { list-style: none; counter-reset: parcours; display: flex; flex-direction: column; gap: 20px; }
.parcours-item { display: flex; gap: 20px; padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); border-left: 4px solid var(--gold); transition: transform var(--transition); }
.parcours-item:hover { transform: translateX(4px); }
.parcours-icon { font-size: 32px; flex-shrink: 0; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--sky-50); border-radius: 50%; }
.parcours-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 6px; color: var(--sky-700); }
.parcours-body p { color: var(--text-light); line-height: 1.6; margin: 0; }

.tarif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.tarif-card { padding: 28px 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--sand-dark); text-align: center; transition: all var(--transition); }
.tarif-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky-200); }
.tarif-card--highlight { border-color: var(--gold); background: linear-gradient(180deg, var(--gold-light) 0%, var(--white) 100%); position: relative; }
.tarif-card--highlight::before { content: 'Recommandé'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 12px; letter-spacing: .5px; text-transform: uppercase; }
.tarif-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 12px; }
.tarif-value { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--sky-700); margin-bottom: 8px; line-height: 1.1; }
.tarif-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ─── PRICING DUO (devenir-pilote) ───────────────────────── */
.pricing-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pricing-card--featured {
    background: linear-gradient(180deg, #fffdf0 0%, var(--white) 45%);
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(232,200,0,0.15);
}
.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(232,200,0,0.35);
}
.pricing-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sky-600);
    margin-bottom: 6px;
}
.pricing-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.pricing-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--sky-700);
    line-height: 1;
    margin-bottom: 6px;
}
.pricing-card-price-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.pricing-card-features li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 16px;
}
.pricing-card--featured .pricing-card-features li::before { color: var(--gold-dark); }

.pricing-extras {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border-left: 4px solid var(--sky-600);
}
.pricing-extras-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sky-700);
    margin-bottom: 16px;
}
.pricing-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.pricing-extra {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.pricing-extra-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pricing-extra-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-light);
    margin-bottom: 2px;
}
.pricing-extra-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .parcours-item { flex-direction: column; gap: 12px; padding: 20px; }
    .parcours-icon { width: 48px; height: 48px; font-size: 24px; }
}

/* ================= CLUB PAGE ================= */
.club-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.club-stat {
    padding: 16px 8px;
}
.club-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--sky-700);
    line-height: 1;
    margin-bottom: 8px;
}
.club-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.club-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.club-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--sky-600));
}
.club-timeline-item {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    position: relative;
}
.club-timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--sky-700);
    text-align: right;
    padding-right: 20px;
    position: relative;
}
.club-timeline-year::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--sky-600);
    z-index: 1;
}
.club-timeline-body {
    flex: 1;
    padding-left: 20px;
}
.club-timeline-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin: 0 0 6px;
    color: var(--dark);
}
.club-timeline-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.club-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.club-value {
    background: var(--white);
    padding: 28px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0,0,0,.04);
}
.club-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.club-value-icon {
    font-size: 42px;
    margin-bottom: 12px;
    line-height: 1;
}
.club-value h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--dark);
}
.club-value p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .club-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .club-stat-value { font-size: 38px; }
    .club-values { grid-template-columns: repeat(2, 1fr); }
    .club-timeline::before { left: 60px; }
    .club-timeline-year { width: 60px; font-size: 20px; padding-right: 16px; }
    .club-timeline-item { gap: 20px; }
}
@media (max-width: 600px) {
    .club-values { grid-template-columns: 1fr; }
}

.club-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    aspect-ratio: 1;
}
.club-gallery-tile {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.club-gallery-tile:hover { transform: scale(1.02); }

.club-vie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.club-vie-image {
    aspect-ratio: 4/3;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(0,0,0,.15);
}
.club-vie-body { padding-left: 8px; }

@media (max-width: 900px) {
    .club-vie { grid-template-columns: 1fr; gap: 32px; }
    .club-vie-body { padding-left: 0; }
}

/* ================= CAMERAS PAGE ================= */
.cam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 24px;
}
.cam-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 16/9;
    border: none;
    padding: 0;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    font-family: inherit;
}
.cam-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.cam-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.cam-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.cam-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}
.cam-card:hover .cam-img { transform: scale(1.03); }
.cam-overlay--static { pointer-events: none; }
.cam-overlay--static .cam-fullscreen-btn { pointer-events: auto; cursor: pointer; }
.cam-fullscreen-btn {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s ease;
}
.cam-fullscreen-btn:hover { background: rgba(255,255,255,.28); }
.cam-fallback {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    background: var(--dark);
}
.cam-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}
.cam-meta {
    color: var(--white);
    text-align: left;
}
.cam-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255,68,68,.9);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.cam-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 1.5s infinite;
}
.cam-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
}
.cam-desc {
    font-size: 13px;
    opacity: .85;
}
.cam-expand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,.95);
    color: var(--dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
}
.cam-card:hover .cam-expand,
.cam-card:focus-visible .cam-expand { opacity: 1; transform: translateY(0); }

.cam-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    padding: 40px 20px;
}
.cam-lightbox.open { opacity: 1; pointer-events: auto; }
.cam-lb-inner {
    position: relative;
    max-width: 1400px;
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cam-lb-inner img,
.cam-lb-inner iframe {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0,0,0,.6);
    object-fit: contain;
    background: #000;
    border: 0;
}
.cam-lb-inner iframe {
    width: min(1400px, 100%);
    height: calc(100vh - 160px);
}
.cam-lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.cam-lb-close:hover { background: rgba(255,255,255,.25); }
.cam-lb-caption {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}
.cam-lb-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 700px) {
    .cam-grid { grid-template-columns: 1fr; gap: 16px; }
    .cam-title { font-size: 18px; }
    .cam-expand { display: none; }
    .cam-lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* ================= CONTACT PAGE (refonte) ================= */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.contact-quick-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.04);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-quick-card:not(.contact-quick-card--info):hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.1);
    border-color: var(--gold);
    color: inherit;
}
.contact-quick-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
}
.contact-quick-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-quick-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    flex: 1;
}
.contact-quick-cta {
    margin-top: 10px;
    font-size: 13px;
    color: var(--sky-700);
    font-weight: 600;
}

.contact-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-wrap {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-sidebar-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.04);
}
.contact-sidebar-card--gold {
    background: linear-gradient(135deg, #fff7d6 0%, #ffe9a8 100%);
    border: 1px solid rgba(212,175,55,.3);
}
.contact-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,.08);
    font-size: 14px;
    color: var(--text);
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row strong { color: var(--sky-900); }
.contact-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--sand);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: background var(--transition);
}
.contact-social:hover { background: var(--gold); color: var(--dark); }

.map-overlay {
    position: absolute;
    top: 32px;
    left: 32px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(0,0,0,.18);
    max-width: 280px;
}

@media (max-width: 900px) {
    .contact-quick { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-wrap { padding: 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .map-overlay { top: 16px; left: 16px; right: 16px; max-width: none; padding: 14px 18px; }
}
@media (max-width: 520px) {
    .contact-quick { grid-template-columns: 1fr; }
}

/* ── Carte interactive du Bassin (voler.php) ── */
.bassin-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: stretch;
}
.bassin-map {
    height: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 1;
}
.bassin-map .leaflet-popup-content-wrapper {
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}
.bassin-map .leaflet-popup-content { margin: 0; width: 260px !important; }
.bassin-popup .popup-photo {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}
.bassin-popup .popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    padding: 12px 14px 4px;
}
.bassin-popup .popup-desc {
    padding: 0 14px 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}
.bassin-marker-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold, #e8b923);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.35);
    transition: transform .15s ease;
}
.bassin-marker:hover .bassin-marker-dot { transform: scale(1.2); }

.plane-marker {
    background: transparent !important;
    border: none !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
    pointer-events: none;
}
.plane-marker-inner {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    transition: transform .1s linear;
}

.trace-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(3,105,161,.06) 0%, rgba(232,185,35,.05) 100%);
    border: 1px solid rgba(3,105,161,.15);
    border-left: 4px solid var(--sky-600, #0369a1);
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text, #1f2937);
}

/* ─── Vols d'exception (mis en avant) ─── */
.featured-flight {
    position: relative;
    background: #fff;
    border: 2px solid var(--sand-dark, #e6dcc7);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
}
.featured-flight:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,.08);
    border-color: var(--accent);
}
.featured-flight-photo {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--sand, #f8f4ec);
}
.featured-flight-photo::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, var(--gold, #e8b923));
    z-index: 2;
}
.featured-flight-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.featured-flight:hover .featured-flight-photo img {
    transform: scale(1.04);
}
.featured-flight-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    z-index: 3;
}
.featured-flight-badge--inline {
    position: static;
    align-self: flex-start;
    margin: 20px 24px 0;
    box-shadow: none;
}
.featured-flight > .featured-flight-header,
.featured-flight > .featured-flight-specs,
.featured-flight > .featured-flight-desc,
.featured-flight > .featured-flight-footer {
    margin-left: 24px;
    margin-right: 24px;
}
.featured-flight > .featured-flight-header { margin-top: 22px; margin-bottom: 4px; }
.featured-flight > .featured-flight-specs { margin-bottom: 4px; }
.featured-flight > .featured-flight-footer { margin-bottom: 24px; }
.featured-flight-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.featured-flight-icon {
    font-size: 42px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.featured-flight-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 0 4px;
    color: var(--text, #1f2937);
    line-height: 1.2;
}
.featured-flight-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.3px;
}
.featured-flight-specs {
    display: flex;
    gap: 14px;
    padding: 12px 14px;
    background: var(--sand, #f8f4ec);
    border-radius: 10px;
    flex-wrap: wrap;
}
.featured-flight-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text, #1f2937);
}
.featured-flight-spec-icon { font-size: 16px; }
.featured-flight-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light, #6b7280);
    margin: 0;
    flex: 1;
}
.featured-flight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--sand-dark, #e6dcc7);
    flex-wrap: wrap;
}
.featured-flight-price {
    display: flex;
    flex-direction: column;
}
.featured-flight-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.featured-flight-price-note {
    font-size: 11px;
    color: var(--text-light, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
@media (max-width: 480px) {
    .featured-flight { padding: 24px 20px 20px; }
    .featured-flight-header { padding-right: 0; padding-top: 28px; }
    .featured-flight-badge { top: 12px; right: 12px; }
    .featured-flight-title { font-size: 20px; }
    .featured-flight-price-amount { font-size: 26px; }
}
.trace-note-icon {
    font-size: 22px;
    line-height: 1.2;
    flex-shrink: 0;
    padding-top: 2px;
}
.trace-note-text strong { color: var(--sky-700, #075985); }
@media (max-width: 620px) {
    .trace-note { font-size: 13px; padding: 12px 14px; gap: 10px; }
    .trace-note-icon { font-size: 20px; }
}

.spot-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 560px;
    overflow-y: auto;
    padding-right: 4px;
}
.spot-card {
    display: flex;
    gap: 12px;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--sand-dark, #e6dfd4);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.spot-card:hover {
    border-color: var(--sky-600);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-1px);
}
.spot-card--active {
    border-color: var(--sky-600);
    box-shadow: 0 0 0 2px var(--sky-600) inset;
}
.spot-card-photo {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    background: var(--sand, #f5f0e6) center/cover no-repeat;
}
.spot-card-photo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--sky-600);
}
.spot-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.spot-card-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 2px;
}
.spot-card-desc {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .bassin-layout { grid-template-columns: 1fr; }
    .bassin-map { height: 420px; }
    .spot-list { max-height: none; }
}

/* ── Pêle-mêle photos (voler.php) ── */
.pelemele {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
    padding: 20px 10px;
    max-width: 1100px;
    margin: 0 auto;
}
.pm-item {
    position: relative;
    margin: 0;
    background: var(--white);
    padding: 10px 10px 44px;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, z-index 0s .35s;
    cursor: pointer;
    border-radius: 2px;
}
.pm-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--sand);
}
.pm-item figcaption {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
    text-align: center;
    font-family: 'Caveat', 'Comic Sans MS', cursive;
    font-size: 17px;
    color: var(--dark);
    padding-top: 6px;
}
/* Rotations variables pour l'effet pêle-mêle */
.pm-item--1 { transform: rotate(-3deg); }
.pm-item--2 { transform: rotate(2deg);  margin-top: 18px; }
.pm-item--3 { transform: rotate(-1.5deg); margin-top: -6px; }
.pm-item--4 { transform: rotate(3deg); }
.pm-item--5 { transform: rotate(-2.5deg); margin-top: 12px; }

.pm-item:hover {
    transform: rotate(0deg) scale(1.06);
    box-shadow: 0 20px 48px rgba(0,0,0,.28);
    z-index: 5;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, z-index 0s;
}

@media (max-width: 780px) {
    .pelemele {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 18px;
    }
    .pm-item { padding: 8px 8px 36px; }
    .pm-item figcaption { font-size: 15px; bottom: 8px; }
    .pm-item--1, .pm-item--2, .pm-item--3, .pm-item--4, .pm-item--5 { margin-top: 0; }
}
@media (max-width: 480px) {
    .pelemele { grid-template-columns: 1fr; }
}

/* Variante "strip" du pêle-mêle : plus compact, 3 photos en ligne */
.section--pm-strip { padding-top: 56px; padding-bottom: 56px; }
.pelemele--strip {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 24px 20px;
    padding: 10px 6px;
}
.pelemele--strip .pm-item { padding: 8px 8px 38px; }
.pelemele--strip .pm-item img { aspect-ratio: 4 / 3; }
.pelemele--strip .pm-item figcaption { font-size: 16px; }

@media (max-width: 780px) {
    .pelemele--strip { grid-template-columns: repeat(2, 1fr); }
    .pelemele--strip .pm-item:nth-child(3) { display: none; }
    .section--pm-strip { padding-top: 40px; padding-bottom: 40px; }
}
@media (max-width: 480px) {
    .pelemele--strip { grid-template-columns: 1fr; max-width: 320px; }
    .pelemele--strip .pm-item:nth-child(3) { display: block; }
}

/* ── Indicateur "scroller vers le bas" sur le hero accueil ── */
.hero { position: relative; }
.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity .2s, transform .2s;
    z-index: 5;
}
.hero-scroll-cue:hover { opacity: 1; }
.hero-scroll-arrow {
    font-size: 32px;
    line-height: 1;
    margin-top: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}
@media (max-width: 600px) {
    .hero-scroll-cue { bottom: 16px; font-size: 11px; }
    .hero-scroll-arrow { font-size: 26px; }
}

/* ── Accessibilité : grossir les textes dans l'espace membre et admin ── */
.app-layout { font-size: 16px; }
.app-layout .main-content h1 { font-size: 32px; }
.app-layout .main-content h2 { font-size: 22px; }
.app-layout .main-content .subtitle { font-size: 17px; line-height: 1.55; }
.app-layout .main-content p { font-size: 16px; line-height: 1.6; }

.app-layout .sidebar-link { font-size: 15.5px; padding: 12px 14px; }
.app-layout .sidebar-link .icon { font-size: 20px; }
.app-layout .sidebar-section-title { font-size: 12px; }

.app-layout .card h3 { font-size: 20px; }
.app-layout .card p { font-size: 16px; }

.app-layout table th { font-size: 13px; padding: 14px 16px; }
.app-layout table td { font-size: 15.5px; padding: 14px 16px; }

.app-layout .form-group label { font-size: 14.5px; }
.app-layout .form-control { font-size: 15.5px; padding: 12px 14px; }

.app-layout .alert { font-size: 15px; padding: 16px 20px; }
.app-layout .btn { font-size: 15px; }
.app-layout .btn-sm { font-size: 14px; padding: 9px 18px; }

.app-layout .doc-name { font-size: 15.5px; }
.app-layout .doc-meta { font-size: 13px; }
.app-layout .stat-card-label { font-size: 14.5px; }

/* ── Accessibilité : navbar avec textes plus lisibles ── */
.nav-logo         { font-size: 18px; }
.nav-link         { font-size: 16px; padding: 9px 15px; }
.nav-cta          { font-size: 15.5px; padding: 11px 24px; }
.nav-user-name    { font-size: 15px; }
.nav-user-avatar  { width: 34px; height: 34px; font-size: 13px; }
.nav-dropdown-item { font-size: 15.5px; padding: 12px 18px; }
.nav-dropdown-menu { min-width: 240px; }

@media (max-width: 900px) {
    .nav-logo { font-size: 17px; }
}

/* ── Accessibilité : textes site public grossis (seniors) ── */
/* Titres et paragraphes de cartes */
.card h3        { font-size: 20px; }
.card p         { font-size: 16.5px; line-height: 1.65; }

/* Offres (voler.php, index.php) */
.offer-card h3  { font-size: 22px; line-height: 1.25; }
.offer-persons  { font-size: 15px; }
.offer-card p   { font-size: 16px; }
.offer-price    { font-size: 32px; }
.offer-price span { font-size: 15px; }

/* Flotte */
.fleet-type     { font-size: 13px; padding: 4px 12px; }
.fleet-reg      { font-size: 15px; }
.fleet-specs    { font-size: 15px; }

/* Hero & labels */
.hero-sub       { font-size: 19px; }
.hero-badge     { font-size: 14.5px; padding: 9px 22px; }
.hero-stat-label{ font-size: 14.5px; }
.section-label  { font-size: 13px; }
.section-desc   { font-size: 17.5px; }
.camera-label   { font-size: 14.5px; }

/* Boutons */
.btn            { font-size: 16px; padding: 13px 26px; }
.btn-sm         { font-size: 14.5px; padding: 10px 20px; }
.btn-gold       { font-size: 16.5px; }

/* Page hero (flotte, voler, contact…) */
.page-hero p    { font-size: 20px; }

/* Events / news */
.event-date     { font-size: 15px; }
.event-location { font-size: 15px; }

/* Footer */
.footer         { font-size: 14.5px; }

/* Avion spec labels */
.avion-spec-label { font-size: 13px; }
.avion-spec-val   { font-size: 22px; }

@media (max-width: 600px) {
    .offer-card h3   { font-size: 20px; }
    .hero-sub        { font-size: 17px; }
    .page-hero p     { font-size: 17px; }
    .btn             { font-size: 15px; padding: 12px 22px; }
}

/* ── Pas de footer dans l'espace membre / admin ── */
/* Le footer marketing casse la sidebar et n'a pas sa place sur les pages
   internes connectées. On le masque entièrement (le JS de fin de footer.php
   est hors de <footer>, il continue de tourner). */
body:has(.app-layout) .footer { display: none; }
