/* ===================================================
   VARIABLES & RESET
=================================================== */
:root {
    --green:     #00853F;
    --green-dk:  #006830;
    --green-lt:  #e8f5ee;
    --yellow:    #FDEF42;
    --red:       #E31B23;
    --dark:      #1a1a2e;
    --dark2:     #16213e;
    --gray:      #6b7280;
    --gray-lt:   #f3f4f6;
    --white:     #ffffff;
    --border:    #e5e7eb;
    --shadow:    0 4px 24px rgba(0,0,0,.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
    --radius:    12px;
    --radius-sm: 6px;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: .3s ease;
    --un:         #009EDB;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ===================================================
   TOPBAR
=================================================== */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: .45rem 0;
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left i { color: var(--yellow); margin-right: .4rem; }
.topbar-right { display: flex; gap: .8rem; }
.topbar-right a {
    color: rgba(255,255,255,.6);
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    transition: var(--transition);
}
.topbar-right a:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ===================================================
   HEADER & NAVBAR
=================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.14); }

.navbar { padding: 0; }
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 70px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.logo-flag {
    display: flex;
    flex-direction: column;
    width: 18px;
    height: 40px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}
.flag-g { background: var(--green); flex: 1; }
.flag-y { background: var(--yellow); flex: 1; }
.flag-r { background: var(--red); flex: 1; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--dark); line-height: 1.2; }
.logo-subtitle { font-size: .72rem; color: var(--gray); font-weight: 400; }

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: .2rem;
    margin-left: auto;
}
.nav-link {
    padding: .6rem .9rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--green);
    background: var(--green-lt);
}
.nav-link.active { font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: .55rem 1.2rem;
    font-size: .88rem;
    color: var(--dark);
    transition: var(--transition);
}
.dropdown li a:hover {
    background: var(--green-lt);
    color: var(--green);
    padding-left: 1.6rem;
}

/* Search */
.nav-search {
    display: flex;
    align-items: center;
    background: var(--gray-lt);
    border-radius: 99px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.nav-search input {
    border: none;
    background: transparent;
    padding: .45rem .9rem;
    font-size: .85rem;
    font-family: var(--font-body);
    outline: none;
    width: 160px;
}
.nav-search button {
    background: var(--green);
    border: none;
    color: #fff;
    padding: .45rem .85rem;
    cursor: pointer;
    transition: var(--transition);
}
.nav-search button:hover { background: var(--green-dk); }

/* Toggle mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
=================================================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark2);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,20,.85) 0%, rgba(0,0,0,.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: var(--white);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(253,239,66,.15);
    border: 1px solid rgba(253,239,66,.3);
    color: var(--yellow);
    padding: .4rem 1rem;
    border-radius: 99px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp .8s .2s both;
}
.hero-badge i { font-size: .7rem; }
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    animation: fadeInUp .8s .4s both;
}
.hero h1 span { color: var(--yellow); }
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin-bottom: 2.2rem;
    animation: fadeInUp .8s .6s both;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp .8s .8s both;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Stats bar */
.stats-bar {
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--green);
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide: var(--border);
}
.stat-item {
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--green-lt); }
.stat-number {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.stat-label { font-size: .82rem; color: var(--gray); margin-top: .3rem; }

/* ===================================================
   BUTTONS
=================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.8rem;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dk);
    border-color: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,133,63,.4);
}
.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}
/* Override for dark-background contexts */
.ambassador-section .btn-outline,
.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.ambassador-section .btn-outline:hover,
.hero .btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}
.btn-sm { padding: .5rem 1.2rem; font-size: .82rem; }
.btn-green-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-green-outline:hover {
    background: var(--green);
    color: var(--white);
}

/* ===================================================
   SECTIONS
=================================================== */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-lt); }
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-label {
    display: inline-block;
    background: var(--green-lt);
    color: var(--green);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 99px;
    margin-bottom: .8rem;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}
.section-subtitle {
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    font-size: .97rem;
}
.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    border-radius: 99px;
    margin: .8rem auto 0;
}

/* ===================================================
   ARTICLE CARDS
=================================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-lt);
    position: relative;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-lt), #fff);
    color: var(--green);
    font-size: 3rem;
}
.card-category {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: var(--green);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .7rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .78rem;
    color: var(--gray);
    margin-bottom: .7rem;
}
.card-meta i { color: var(--green); }
.card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: .6rem;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-excerpt {
    font-size: .87rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}
.card-footer {
    padding: .9rem 1.4rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-read-more {
    font-size: .85rem;
    font-weight: 600;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: var(--transition);
}
.card:hover .card-read-more { gap: .6rem; }

/* Featured article */
.card-featured {
    grid-column: span 2;
    flex-direction: row;
}
.card-featured .card-img {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: unset;
}
.card-featured .card-title { font-size: 1.4rem; }

/* ===================================================
   HERO ARTICLE (page détail)
=================================================== */
.article-hero {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,40,20,.95) 40%, rgba(0,0,0,.6));
}
.article-hero-content { position: relative; z-index: 1; max-width: 800px; }
.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .3;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb i { font-size: .6rem; }
.article-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.article-hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    flex-wrap: wrap;
}
.article-hero-meta i { color: var(--yellow); margin-right: .3rem; }

/* Article body */
.article-body { max-width: 800px; }
.article-body h2, .article-body h3 { font-family: var(--font-head); color: var(--dark); margin: 2rem 0 .8rem; }
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.2rem; }
.article-body p  { margin-bottom: 1.2rem; color: #374151; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .4rem; }
.article-body blockquote {
    border-left: 4px solid var(--green);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--green-lt);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--dark);
}
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ===================================================
   AMBASSADOR SECTION
=================================================== */
.ambassador-section {
    background: var(--green);
    color: var(--white);
    padding: 3rem 0;
}
.ambassador-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
}
.ambassador-photo-wrap {
    position: relative;
    max-width: 220px;
}
.ambassador-photo {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    object-fit: cover;
}
.ambassador-badge {
    position: absolute;
    bottom: -0.6rem;
    right: -0.6rem;
    background: var(--green);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.ambassador-badge strong { display: block; font-size: 1.2rem; font-family: var(--font-head); }
.ambassador-badge small { font-size: .7rem; opacity: .85; }
.ambassador-content .section-label { background: rgba(253,239,66,.15); color: var(--yellow); }
.ambassador-content h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin: .5rem 0 .6rem;
}
.ambassador-content p { color: rgba(255,255,255,.8); margin-bottom: .7rem; font-size: .9rem; }
.ambassador-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--yellow);
}
.ambassador-title { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ===================================================
   CATEGORIES SIDEBAR
=================================================== */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--green);
    color: var(--dark);
}
.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    transition: var(--transition);
}
.category-list li:last-child { border-bottom: none; }
.category-list a { color: var(--dark); flex: 1; }
.category-list a:hover { color: var(--green); }
.cat-count {
    background: var(--green-lt);
    color: var(--green);
    font-size: .72rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 99px;
}
.recent-post {
    display: flex;
    gap: .8rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
}
.recent-post:last-child { border-bottom: none; }
.recent-thumb {
    width: 60px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-lt);
}
.recent-info a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
.recent-info a:hover { color: var(--green); }
.recent-date { font-size: .75rem; color: var(--gray); margin-top: .2rem; }

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--green), var(--green-dk));
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
}
.contact-info-card h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.contact-detail strong { display: block; font-size: .85rem; opacity: .7; margin-bottom: .15rem; }
.contact-detail p { font-size: .95rem; }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.3rem; }
.form-label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .4rem;
}
.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .92rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0,133,63,.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ===================================================
   ALERT / FLASH
=================================================== */
.alert {
    padding: .9rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ===================================================
   PAGINATION
=================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: .4rem;
    flex-wrap: wrap;
    padding: 2.5rem 0 1rem;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .8rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}
.page-link:hover    { border-color: var(--green); color: var(--green); }
.page-link.active   { background: var(--green); border-color: var(--green); color: #fff; }

/* ===================================================
   PAGE HEADER (pages internes)
=================================================== */
.page-header {
    background: linear-gradient(135deg, var(--green-dk), var(--green));
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    right: -5rem;
    top: -5rem;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
}
.page-header h1 { font-family: var(--font-head); font-size: 2.4rem; margin-bottom: .5rem; }
.page-header p  { color: rgba(255,255,255,.75); }

/* ===================================================
   FOOTER
=================================================== */
.site-footer { background: var(--green-dk); color: rgba(255,255,255,.85); margin-top: auto; }
.footer-top { padding: 4rem 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1rem;
}
.footer-brand .footer-logo strong { color: var(--white); font-size: .95rem; }
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: .6rem; }
.social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.social-links a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-col h4 {
    color: var(--white);
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}
.footer-col ul li {
    margin-bottom: .5rem;
    font-size: .87rem;
}
.footer-col ul li a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: .3rem; }
.footer-col address { font-style: normal; font-size: .87rem; }
.footer-col address p { margin-bottom: .7rem; }
.footer-col address i { color: var(--yellow); margin-right: .5rem; }
.footer-col address a { color: rgba(255,255,255,.65); }
.footer-col address a:hover { color: var(--yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.2rem 0;
    font-size: .82rem;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom a { color: var(--yellow); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .7s both; }
.fade-in-up-d1 { animation-delay: .1s; }
.fade-in-up-d2 { animation-delay: .2s; }
.fade-in-up-d3 { animation-delay: .3s; }

/* Intersection observer animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .card-featured { grid-column: span 2; flex-direction: column; }
    .card-featured .card-img { width: 100%; aspect-ratio: 16/9; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ambassador-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ambassador-photo-wrap { max-width: 350px; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: var(--shadow);
        transform: translateY(-110%);
        transition: var(--transition);
        z-index: 999;
        gap: 0;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-link { padding: .8rem 1rem; border-radius: var(--radius-sm); }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .nav-toggle { display: flex; }
    .nav-search { display: none; }
    .articles-grid { grid-template-columns: 1fr; }
    .card-featured { grid-column: span 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 70vh; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

/* ===================================================
   HERO VIDEO (Homepage)
=================================================== */
.hero-video {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.65) 100%);
}
.hero-video-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}
.hero-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    max-width: 900px;
    width: 100%;
}
.hero-brand-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.6));
    flex-shrink: 0;
}
.hero-brand-center { color: var(--white); flex: 1; }
.hero-republic {
    font-size: .9rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    font-weight: 400;
    margin-bottom: .3rem;
}
.hero-sep {
    color: var(--yellow);
    font-size: 1rem;
    margin: .3rem 0;
    letter-spacing: .4em;
}
.hero-motto {
    font-size: .78rem;
    letter-spacing: .2em;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
}
.hero-divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    margin: .9rem auto;
}
.hero-mission-name {
    font-family: var(--font-head);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0,0,0,.5);
    margin-bottom: 1.8rem;
}
.hero-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-ghost-white {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,.22);
    border-color: var(--white);
    transform: translateY(-2px);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    transition: var(--transition);
}
.hero-scroll-indicator:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.1);
}

/* ===================================================
   LOGO IMAGES (navbar)
=================================================== */
.logo-onu-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-coat-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ===================================================
   CARD EXTRAS
=================================================== */
.card-img-link { display: block; }
.card-cat-badge {
    background: var(--green-lt);
    color: var(--green);
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .06em;
    flex-shrink: 0;
}

/* ===================================================
   AMBASSADOR EXTRAS
=================================================== */
.ambassador-title-line {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    font-style: italic;
    margin-bottom: 1.2rem;
}

/* ===================================================
   THEMES / PRIORITIES GRID
=================================================== */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.theme-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 1px solid var(--border);
    border-top-width: 3px;
    transition: var(--transition);
    display: block;
    color: var(--dark);
}
.theme-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.theme-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
}
.theme-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    margin-bottom: .5rem;
    color: var(--dark);
}
.theme-card p {
    font-size: .86rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ===================================================
   DESTINATION CARDS
=================================================== */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
}
.dest-card-info {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    color: var(--white);
}
.dest-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .22rem .65rem;
    border-radius: 99px;
    color: #fff;
    margin-bottom: .45rem;
}
.dest-card-info p {
    font-size: .82rem;
    color: rgba(255,255,255,.85);
    margin-bottom: .4rem;
    line-height: 1.4;
}
.dest-arrow {
    font-size: .82rem;
    font-weight: 600;
    color: var(--yellow);
    transition: letter-spacing var(--transition);
}
.dest-card:hover .dest-arrow { letter-spacing: .04em; }

/* ===================================================
   PARTNERS STRIP
=================================================== */
.partners-section {
    background: var(--gray-lt);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partners-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.partners-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.partners-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scrollPartners 22s linear infinite;
    width: max-content;
}
.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.partner-item img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: .65;
    transition: var(--transition);
}
.partner-item:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes scrollPartners {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================================
   BACK TO TOP
=================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    box-shadow: 0 4px 16px rgba(0,133,63,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), visibility var(--transition),
                transform var(--transition), background var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dk); transform: translateY(-3px); }

/* ===================================================
   NEWS PAGE — nouveau design
=================================================== */
.news-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease, box-shadow .3s ease;
}
.news-featured:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.news-featured-img {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}
.news-featured-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.news-featured:hover .news-featured-img img { transform: scale(1.05); }
.news-featured-placeholder {
    width: 100%; height: 100%; min-height: 320px;
    background: var(--green-lt);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--green);
}
.news-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.15), transparent);
}
.news-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--green);
    color: #fff;
    font-size: .72rem; font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 99px;
    text-transform: uppercase; letter-spacing: .04em;
}
.news-featured-body {
    background: #fff;
    padding: 2rem;
    display: flex; flex-direction: column; justify-content: center;
    gap: .8rem;
}
.news-meta {
    font-size: .78rem; color: var(--gray);
    display: flex; align-items: center; gap: .4rem;
}
.news-featured-title {
    font-family: var(--font-head);
    font-size: 1.45rem; line-height: 1.35;
    color: var(--dark);
}
.news-featured-excerpt {
    font-size: .88rem; color: var(--gray);
    line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-read-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--green); font-weight: 600; font-size: .88rem;
    margin-top: .5rem;
    transition: gap .2s;
}
.news-featured:hover .news-read-btn { gap: .8rem; }

/* Grille 3 colonnes */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid var(--border);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.news-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-placeholder {
    width: 100%; height: 100%;
    background: var(--green-lt);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--green);
}
.news-card .news-badge { font-size: .68rem; }
.news-card-body {
    padding: 1.1rem 1.1rem .6rem;
    flex: 1;
    display: flex; flex-direction: column; gap: .4rem;
}
.news-card-title {
    font-family: var(--font-head);
    font-size: 1rem; line-height: 1.4;
    color: var(--dark);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-excerpt {
    font-size: .8rem; color: var(--gray); line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-footer {
    padding: .7rem 1.1rem;
    border-top: 1px solid var(--border);
    font-size: .8rem; font-weight: 600;
    color: var(--green);
    display: flex; align-items: center; gap: .4rem;
    transition: gap .2s;
}
.news-card:hover .news-card-footer { gap: .7rem; }

/* ===================================================
   RESPONSIVE — new components
=================================================== */
@media (max-width: 1024px) {
    .themes-grid  { grid-template-columns: repeat(2, 1fr); }
    .dest-grid    { grid-template-columns: repeat(2, 1fr); }
    .news-featured { grid-template-columns: 1fr; }
    .news-featured-img { min-height: 220px; }
    .news-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-branding { gap: 1.5rem; }
    .hero-brand-logo { width: 70px; height: 70px; }
}
@media (max-width: 768px) {
    .hero-video { height: 60svh; }
    .hero-branding { flex-direction: column; gap: 1.2rem; }
    .hero-brand-logo { width: 60px; height: 60px; }
    .hero-cta-btns { flex-direction: column; align-items: center; }
    .themes-grid  { grid-template-columns: 1fr; }
    .dest-grid    { grid-template-columns: repeat(2, 1fr); }
    .news-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .hero-brand-logo { display: none; }
}
