/* ============================================
   MSVA - Maison Solidaire des Vacances Accessibles
   Charte graphique : Bleu Union européenne + Or
   Police : Arial
============================================ */

/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
    /* Couleurs Union européenne */
    --eu-blue: #003399;
    --eu-blue-dark: #002266;
    --eu-blue-darker: #001a4d;
    --eu-blue-light: #0044cc;
    --eu-blue-pale: #e8eef7;
    --eu-blue-muted: #4d6fad;
    --eu-gold: #FFCC00;
    --eu-gold-dark: #e6b800;
    --eu-gold-light: #ffe14d;

    /* Neutres */
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f2f8;
    --gray-200: #e2e6f0;
    --gray-300: #c8cfe0;
    --gray-400: #9ba3b8;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Accents fonctionnels */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(0, 51, 153, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 51, 153, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 51, 153, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 51, 153, 0.16);

    /* Rayons */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

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

a {
    color: var(--eu-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--eu-blue-light);
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--eu-blue-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ============================================
   UTILITY CLASSES
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--eu-gold); }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION HEADERS
============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--eu-blue);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--eu-gold);
}

.section-title {
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.section-title em {
    font-style: italic;
    color: var(--eu-blue-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--eu-gold);
    color: var(--eu-blue-dark);
    box-shadow: 0 4px 16px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    background: var(--eu-gold-dark);
    color: var(--eu-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background: var(--eu-blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 51, 153, 0.3);
}

.btn-secondary:hover {
    background: var(--eu-blue-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 51, 153, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--eu-blue);
    border: 2px solid var(--eu-blue);
}

.btn-outline-blue:hover {
    background: var(--eu-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--eu-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    color: var(--eu-blue);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 51, 153, 0.08);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 51, 153, 0.1);
}

/* Page blanche : nav directement en mode scrolled */
.nav.nav-light {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 51, 153, 0.06);
    padding: 8px 0;
}

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

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

.nav-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav.scrolled .nav-logo-img,
.nav.nav-light .nav-logo-img {
    height: 56px;
}

/* Nav dropdown menu system */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--eu-blue);
    transition: color 0.3s ease;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav.scrolled .nav-links > li > a,
.nav.nav-light .nav-links > li > a {
    color: var(--eu-blue);
}

.nav-links > li > a:hover {
    color: var(--eu-blue-dark);
    background: var(--eu-blue-pale);
}

.nav.scrolled .nav-links > li > a:hover,
.nav.nav-light .nav-links > li > a:hover {
    color: var(--eu-blue-dark);
    background: var(--eu-blue-pale);
}

/* Dropdown arrow */
.nav-links > li > a .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-links > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--gray-200);
}

.nav-links > li:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-dropdown a:hover {
    background: var(--eu-blue-pale);
    color: var(--eu-blue);
}

.nav-dropdown a small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 2px;
    font-weight: 400;
}

/* Nav CTA */
.nav-cta {
    background: var(--eu-gold) !important;
    color: var(--eu-blue-dark) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--eu-gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--eu-blue-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav.scrolled .nav-toggle span,
.nav.nav-light .nav-toggle span {
    background: var(--eu-blue-dark);
}

/* ============================================
   HERO (Accueil)
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--eu-blue-darker) 0%, var(--eu-blue) 40%, var(--eu-blue-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 204, 0, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Étoiles EU décoratives */
.hero-stars {
    position: absolute;
    top: 80px;
    right: 6%;
    width: 200px;
    height: 200px;
    opacity: 0.08;
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 140px 0 100px;
}

/* Hero Ribbon — Design 5 (Stacked Ribbon) */
.hero-ribbon {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-ribbon-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    background: linear-gradient(135deg, #32969f 0%, #2a8089 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
}

.hero-ribbon-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--eu-blue);
    font-size: 0.73rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-ribbon-bottom strong {
    font-weight: 800;
    color: var(--eu-blue-dark);
}

.hero-ribbon-check {
    width: 20px;
    height: 20px;
    background: var(--eu-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-ribbon-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--eu-gold);
}

.hero-ribbon-flag {
    height: 22px;
    width: auto;
    flex-shrink: 0;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 14px;
    animation: fadeInUp 0.8s ease 0.35s both;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--eu-gold);
}

.hero-slogan {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--eu-gold);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.5s both;
    font-weight: 400;
    font-style: italic;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeInUp 0.8s ease 0.65s both;
}

.hero-description-short {
    display: none;
}

.hero-description-full {
    display: inline;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Stats strip */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e1594b;
    border-top: 3px solid #c94a3d;
    padding: 18px 0;
    z-index: 3;
    overflow: hidden;
}

.hero-stats-inner {
    display: flex;
    justify-content: center;
    gap: 56px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scrolling stats animation */
.hero-stats-scroll {
    display: flex;
    animation: scrollStats 20s linear infinite;
    gap: 80px;
    width: max-content;
}

.hero-stats-scroll .hero-stat {
    white-space: nowrap;
}

@keyframes scrollStats {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-weight: 600;
}

/* Scroll indicator - hidden */
.hero-scroll {
    display: none;
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

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

/* ============================================
   PAGE HERO (sous-pages)
============================================ */
.page-hero {
    background: linear-gradient(160deg, var(--eu-blue-darker) 0%, var(--eu-blue) 60%, var(--eu-blue-light) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 204, 0, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero .section-label {
    color: var(--eu-gold);
}

.page-hero .section-label::before {
    background: var(--eu-gold);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--eu-gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CARDS GÉNÉRIQUES
============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.card-icon-blue { background: var(--eu-blue-pale); }
.card-icon-gold { background: rgba(255, 204, 0, 0.12); }
.card-icon-green { background: rgba(16, 185, 129, 0.1); }
.card-icon-red { background: rgba(239, 68, 68, 0.08); }

.card h4 {
    margin-bottom: 8px;
}

.card p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Card sur fond bleu */
.card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 204, 0, 0.3);
}

.card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255, 255, 255, 0.6); }

/* ============================================
   SECTION BACKGROUNDS
============================================ */
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-blue { background: var(--eu-blue); }
.bg-blue-dark { background: var(--eu-blue-dark); }

/* ============================================
   GRIDS
============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   SECTION POURQUOI LES VACANCES (Accueil)
============================================ */
.why-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.why-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 18px;
}

.why-highlight {
    background: linear-gradient(135deg, var(--eu-blue), var(--eu-blue-dark));
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.why-highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
}

.why-highlight p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}

.why-cards {
    display: grid;
    gap: 16px;
}

/* ============================================
   CE QUE FAIT LA MSVA (Accueil)
============================================ */
.what-section {
    padding: 100px 0;
    background: var(--white);
}

/* ============================================
   IMPACT SECTION
============================================ */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--eu-blue) 0%, var(--eu-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.impact-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--eu-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.impact-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ACTUALITES PREVIEW (Accueil)
============================================ */
.news-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.news-card-img {
    height: 200px;
    background: var(--eu-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--eu-blue-muted);
}

.news-card-body {
    padding: 24px;
}

.news-card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tag-blue { background: var(--eu-blue-pale); color: var(--eu-blue); }
.tag-gold { background: rgba(255, 204, 0, 0.12); color: var(--eu-gold-dark); }
.tag-green { background: rgba(16, 185, 129, 0.1); color: #059669; }

.news-card-body h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.news-card-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.news-card-date {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 12px;
}

/* ============================================
   PARTENAIRES LOGOS
============================================ */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity var(--transition);
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 600;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* ============================================
   SUPPORT / SOUTENIR CTA
============================================ */
.support-cta {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--eu-blue) 0%, var(--eu-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 204, 0, 0.06) 0%, transparent 50%);
}

.support-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.support-cta .section-label {
    color: var(--eu-gold);
}

.support-cta .section-label::before {
    background: var(--eu-gold);
}

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

.support-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 100%;
    margin-bottom: 40px;
}

.support-ways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.support-way {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.3s ease;
}

.support-way:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.support-way h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-way p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.5;
}

.support-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   FORMULAIRE DE CONTACT
============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--eu-blue-pale);
}

.contact-info-text {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.contact-info-text strong {
    display: block;
    color: var(--eu-blue-dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-text a {
    color: var(--eu-blue);
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eu-blue-dark);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: var(--eu-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact form */
.contact-form {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.3s ease;
    outline: none;
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--eu-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.08);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ============================================
   BLOG / ESPACE UE
============================================ */
.blog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-filter {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    transition: all var(--transition);
    font-family: Arial, Helvetica, sans-serif;
}

.blog-filter:hover,
.blog-filter.active {
    background: var(--eu-blue);
    color: var(--white);
    border-color: var(--eu-blue);
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

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

.blog-card-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.blog-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--gray-400);
}

.blog-card-footer a {
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============================================
   TABS SYSTEM
============================================ */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 40px;
    overflow-x: auto;
}

.tab {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    background: none;
    border: none;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab:hover {
    color: var(--eu-blue);
}

.tab.active {
    color: var(--eu-blue);
    border-bottom-color: var(--eu-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* ============================================
   TIMELINE / PARCOURS
============================================ */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--eu-blue);
    border: 3px solid var(--eu-blue-pale);
}

.timeline-item h4 {
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--eu-blue-darker);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
}

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

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--eu-gold);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--eu-gold);
    color: var(--eu-blue-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a:hover {
    color: var(--eu-gold);
}

/* ============================================
   EU DECORATION (stars ring)
============================================ */
.eu-stars-decoration {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.eu-star {
    position: absolute;
    color: var(--eu-gold);
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.open > li > a {
        color: var(--gray-700);
        padding: 12px 16px;
    }

    .nav-links.open .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
    }

    .hero-content { padding: 100px 0 80px; }
    .hero h1 { font-size: 1.8rem; margin-bottom: 10px; }
    .hero-slogan { font-size: 1.1rem; }
    .hero-ribbon-top { font-size: 0.7rem; padding: 9px 14px; gap: 8px; }
    .hero-ribbon-bottom { font-size: 0.62rem; padding: 9px 14px; gap: 8px; }
    .hero-ribbon-flag { height: 18px; }
    .hero-ribbon-check { width: 18px; height: 18px; }
    .hero-ribbon-check svg { width: 10px; height: 10px; }
    .hero-description { font-size: 0.92rem; line-height: 1.6; margin-bottom: 24px; }
    .hero-description-short { display: inline; }
    .hero-description-full { display: none; }
    .hero-stats-inner { gap: 24px; }
    .hero-stats-scroll { gap: 40px; }
    .hero-stars { display: none; }
    .nav-logo-img { height: 48px; }
    .nav.scrolled .nav-logo-img,
    .nav.nav-light .nav-logo-img { height: 48px; }

    .page-hero { padding: 120px 0 60px; }

    .why-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .contact-grid,
    .support-ways-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }

    .hero-btns, .support-btns { flex-direction: column; }
    .btn { justify-content: center; }

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

    .tabs { gap: 0; }
    .tab { padding: 10px 16px; font-size: 0.82rem; }

    .section-padding { padding: 70px 0; }

    .blog-filters { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-stats-inner { flex-direction: column; gap: 10px; }
    .hero-stats { padding: 14px 0; }
    .hero-stats-scroll { flex-direction: row; gap: 40px; }
    @keyframes scrollStats {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .partners-logos { gap: 24px; }
    .container { padding: 0 16px; }
}

/* EU TRANSPARENCY BADGE — now uses .hero-badge-eu class */

/* ============================================
   GOVERNANCE MEMBERS GRID (style Les Genêts d'Or)
============================================ */
.governance-bureau {
    margin-top: 40px;
}

.governance-bureau h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--eu-blue-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.members-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 140px;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--eu-blue);
    box-shadow: 0 4px 15px rgba(0, 51, 153, 0.2);
    background: var(--eu-blue-pale);
    transition: var(--transition);
}

.member-photo:hover {
    border-color: var(--eu-gold);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 51, 153, 0.3);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--eu-blue) 0%, var(--eu-blue-dark) 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.member-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--eu-blue-dark);
    text-align: center;
    line-height: 1.3;
}

.member-role {
    font-size: 0.78rem;
    color: var(--eu-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: -6px;
}

/* ============================================
   HERO IMAGE CAROUSEL
============================================ */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, var(--eu-blue-dark) 0%, rgba(0, 34, 102, 0.8) 35%, rgba(0, 34, 102, 0.45) 65%, rgba(0, 34, 102, 0.25) 100%);
}

.hero-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, var(--eu-blue-dark) 0%, transparent 30%),
                linear-gradient(to bottom, var(--eu-blue-dark) 0%, transparent 20%);
}

.hero-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-carousel img.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

@media (max-width: 768px) {
    .hero-carousel {
        width: 100%;
        opacity: 0.35;
    }
    .hero-carousel::before {
        background: linear-gradient(to bottom, var(--eu-blue-dark) 0%, rgba(0, 34, 102, 0.6) 40%, rgba(0, 34, 102, 0.75) 100%);
    }
    .hero-carousel::after {
        background: linear-gradient(to top, var(--eu-blue-dark) 0%, transparent 40%),
                    linear-gradient(to bottom, var(--eu-blue-dark) 0%, transparent 25%);
    }
    .member-card { width: 110px; }
    .member-photo { width: 90px; height: 90px; }
    .members-grid { gap: 24px; }
}
