/* ============================================
   FAMILY BEAR TRAVEL — Feuille de style globale
   ============================================ */

/* VARIABLES */
:root {
    --red: #ff5a5f;
    --bg: #0f0f0f;
    --bg-dark: #0a0a0a;
    --card-bg: #111;
    --card-bg-alt: #1a1a1a;
    --border: rgba(255, 255, 255, 0.05);
    --border-solid: #222;
    --text: #e0e0e0;
    --text-muted: #888;
    --text-dim: #aaa;
    --text-soft: #bbb;
    --radius-sm: 12px;
    --radius-md: 15px;
    --radius-lg: 18px;
    --radius-xl: 20px;
}
/* ============================================
   BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    scroll-behavior: smooth;
    background: var(--bg);
}

h1, h2, h3, .nav-logo {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}
/* Conteneur pour centrer le bouton sous la carte */
.featured-footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}
/* Espacement pour le bouton de contact en bas de l'index */
.contact-footer {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* On s'assure que l'icône de l'enveloppe est bien rouge */
.contact-footer .btn-discover i {
    color: var(--red);
}
/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

/* Navbar compacte + ombre au scroll */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
}

.navbar.scrolled .nav-logo {
    font-size: 1rem;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    transition: padding 0.35s ease;
}

.nav-logo {
    font-weight: 800;
    color: var(--red);
    text-decoration: none;
    font-size: 1.1rem;
    transition: font-size 0.35s ease;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

/* Liens avec soulignement animé */
.nav-links a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    padding-bottom: 3px;
}

/* Barre rouge animée sous le lien */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Lien actif : couleur rouge + soulignement permanent */
.nav-links a.active {
    color: var(--red);
}

.nav-links a.active::after {
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 15, 0.6) 50%, rgba(15, 15 ,15, 1) 95%),
                url('img/background.webp') no-repeat top center;
    background-size: cover;
    background-position: center;
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 250px !important;
    margin-bottom: -220px !important;
	z-index: 1;
}

.hero--compact {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 1)),
                url('img/background.webp');
    background-size: cover;
    background-position: center;
    height: 30vh;
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin: 0;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 0.7rem;
    margin-top: 10px;
    color: var(--red);
    letter-spacing: 4px;
    font-weight: 700;
}

.hero-tagline {
    margin: 20px auto 0;
    margin-bottom: 0px !important;
    max-width: 560px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    padding: 0 20px;
    padding-bottom: 0px;
}

.hero-tagline span {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.header-stack {
    max-width: 800px;
    width: 90%;
    position: relative;
    margin-top: -50px !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.header-stack img {
    width: 140px;
    height: auto;
    margin-top: 0px !important;
    margin-bottom: 25px !important; 
}

/* Stats bar */
.stats-bar {
	transition: all 0.3s ease; /* Transition fluide pour le survol */
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	cursor: default;
    margin-top: 0 !important;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    border-radius: var(--radius-lg);
    width: 100%;
    border: 1px solid var(--border);
}
/* Conteneur principal centré */
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
	padding: 20px 0;
    gap: 20px;
    margin: 20px 0;
    text-align: center;
}

/* Chaque bloc de donnée */
.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    display: block;
}
.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    /*font-weight: 700;*/
}
/* Effet au survol : cadre rouge et soulèvement */
.stats-bar:hover {
    border-color: var(--red); /* Le cadre devient rouge */
    transform: translateY(-5px); /* Le bloc se soulève de 5 pixels */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Ajoute une ombre pour renforcer l'effet de hauteur */
    background: rgba(30, 30, 30, 0.6); /* Légère accentuation du fond */
}
/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 1px;
    color: #fff;
}

.section-title--lg h2 {
    font-size: 1.5rem;
}

.section-title .line {
    width: 30px;
    height: 3px;
    background: var(--red);
    margin: 10px auto;
}

/* ============================================
   CARDS PAYS
   ============================================ */
.country-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}
/* Alignement du titre et du bouton */
.country-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.country-card--clickable {
    cursor: pointer;
}

.country-card--disabled {
    opacity: 0.5;
    cursor: default;
}

.country-card:not(.country-card--disabled):hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.card-img-container {
	position: relative;
    width: 100%;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-img-container--sm  { height: 200px; }
.card-img-container--md  { height: 300px; }
.card-img-container--lg  { height: 400px; }

.card-body {
    padding: 20px;
}

.card-body--lg {
    padding: 30px;
}

.card-body h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Barre de boutons en bas de carte */
.card-actions {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.card-action-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    border-right: 1px solid var(--border);
    transition: color 0.3s;
    background: none;
    border-top: none;
    border-bottom: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.card-action-btn:last-child {
    border-right: none;
}

.card-action-btn:hover {
    color: #fff;
}

.card-action-btn--highlight {
    flex: 1.2;
    color: var(--red);
    background: rgba(255, 90, 95, 0.1);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 900;
}

.card-action-btn--highlight:hover {
    background: rgba(255, 90, 95, 0.2);
    color: var(--red);
}

.card-action-btn--disabled {
    cursor: not-allowed;
}

/* Grande carte (étape actuelle) */
.country-card--featured {
    max-width: 800px;
    margin: 0 auto;
    cursor: default;
}
/* Style du bandeau sur l'image */
.image-overlay-badge {
    position: absolute;
    top: 15px; 
    left: 15px; 
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
    border-left: 3px solid var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.image-overlay-badge i {
    color: var(--red);
	animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
/* ============================================
   BOUTON ARCHIVE
   ============================================ */
.archive-button-container {
    text-align: center;
    margin: 40px auto;
    width: 100%;
    max-width: 400px;
}
/* Centrage spécifique pour le bas de la page archives */
.archive-footer {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px; /* Un peu plus d'espace pour le footer */
}
.btn-archive-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-archive-large i {
    color: var(--red);
    font-size: 1.2rem;
}

.btn-archive-large:hover {
    border-color: var(--red);
    background: transparent;
    transform: translateY(-3px);
}
/* Conteneur pour centrer le bouton sous la carte */
.featured-footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Style du bouton assorti au site */
.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 30, 30, 0.4); /* Fond sombre transparent */
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 15px 35px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-discover i {
    color: var(--red); /* Icône en rouge Family Bear */
    font-size: 1rem;
}

.btn-discover:hover {
    border-color: var(--red);
    background: rgba(30, 30, 30, 0.04); /* Léger éclat rouge au survol */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	color: #fff; /* On s'assure que le texte reste bien blanc */
}
/* ============================================
   SECTION EN SAVOIR PLUS
   ============================================ */
.info-row {
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid var(--border-solid);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
	max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Style du bouton Info */
.info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease;
    text-decoration: none;
}
/* Effet au survol */
.info-link:hover {
    color: var(--red) !important; /* Devient rouge Family Bear */
    transform: scale(1.1);
}
.info-row:hover {
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.info-row-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-row h3 {
    margin: 0;
    font-size: 0.85rem;
}

.info-row .fa-chevron-right {
    font-size: 0.8rem;
    color: #444;
}

/* ============================================
   PARTENAIRES
   ============================================ */
.partners-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: -10px 0 30px;
    font-style: italic;
}

.partners-grid {
    display: grid;
	margin-bottom: 10px !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 20px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-solid);
    text-align: center;
    width: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partner-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.partner-logo-wrap {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    max-height: 40px;
    max-width: 140px;
    filter: grayscale(1) brightness(2);
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: none;
}

.partner-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.partner-promo {
    font-size: 0.7rem;
    color: #555;
    margin: 0;
}

.promo-code {
    color: var(--red);
    font-weight: 800;
}

/* ============================================
   NOUS SUIVRE (fusion Réseaux + Partenaires)
   ============================================ */
.nous-suivre-section {
	padding-top: 10px !important; 
    padding-bottom: 30px !important;
    padding: 60px 0;
    text-align: center;
    background: var(--bg-dark);
    width: 100%;
}

.nous-suivre-block,
.nous-suivre-inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Séparateur avec texte centré */
.nous-suivre-divider {
    display: flex;
    align-items: center;
	margin-top: 10px !important; 
    margin-bottom: 25px !important;
    gap: 16px;
    max-width: 500px;
    margin: 50px auto 40px;
}

.nous-suivre-divider::before,
.nous-suivre-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.nous-suivre-divider span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    white-space: nowrap;
}

/* ============================================
   CONTACT & RÉSEAUX
   ============================================ */
.contact-section {
    padding: 50px 20px;
    text-align: center;
    background: var(--bg-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0 30px 0;
    width: 100%;
}

.social-card {
    background: var(--card-bg-alt);
    border: 1px solid var(--border-solid);
    padding: 15px;
    border-radius: var(--radius-md);
    width: auto;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.social-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.social-card i {
    font-size: 1.5rem;
}

.social-card span {
    font-size: 0.6rem;
    font-weight: 800;
}

.contact-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copy {
    margin-top: 40px;
    font-size: 0.6rem;
    color: #333;
}

/* ============================================
   MODALES
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--card-bg-alt);
    margin: 10vh auto;
    padding: 30px;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    border: 1px solid #333;
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-content--wide {
    max-width: 700px;
    margin: 5vh auto;
    max-height: 90vh;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.modal-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Contenu intérieur des modales */
.modal-gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.modal-gear-category h3 {
    color: var(--red);
    font-size: 0.75rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 0;
}

.modal-gear-category ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.modal-team {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--red);
}

.team-member h4 {
    margin: 0 0 5px 0;
    color: #fff;
}

.team-member p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.modal-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-solid);
    padding-bottom: 15px;
}

.modal-faq-item:last-child {
    border-bottom: none;
}

.modal-faq-item h4 {
    color: #fff;
    margin-bottom: 5px;
}

.modal-faq-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 0;
}
.faq-grid-title {
    color: var(--red);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 20px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-solid);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    background: rgba(255, 90, 95, 0.02);
}

.faq-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.faq-card-icon i {
    color: var(--red);
    font-size: 1.2rem;
}

.faq-card h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-transform: none; /* Plus lisible pour des questions */
}

.faq-card p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin: 0;
}

/* Scrollbar personnalisée pour la modale si elle est longue */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}
/* Modales archives (avis pays) */
.modal-review-intro {
    background: rgba(76, 175, 80, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(76, 175, 80, 0.2);
    margin-bottom: 25px;
    text-align: center;
}

.modal-review-intro p {
    color: #eee;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.modal-section-title {
    font-size: 0.9rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/*.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
} */
/* --- ALIGNEMENT DES 3 AVIS PERSONNELS (MALAISIE) --- */
.reviews-grid {
    display: flex !important;
    flex-direction: row !important; /* Force la ligne */
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 25px !important;
}

.reviews-grid .review-card {
    flex: 1 !important; /* Chaque carte prend 1/3 */
    min-width: 0 !important; /* Empêche le débordement */
    padding: 10px 5px !important; /* Gagne de la hauteur */
    background: #252525 !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.7rem !important; /* Texte plus petit pour tenir */
    line-height: 1.2 !important;
}

.reviews-grid .review-card-name {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 5px;
}

/* Ajustement mobile pour ne pas que ça soit trop serré */
@media (max-width: 600px) {
    .reviews-grid .review-card {
        font-size: 0.6rem !important;
        padding: 8px 3px !important;
    }
}
.review-card {
    background: #252525;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.review-card-name {
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
}

.advice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.advice-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--radius-sm);
}

.advice-card h4 {
    font-size: 0.8rem;
    margin: 0 0 10px 0;
}

.advice-card p {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
    margin: 0;
}

.words-grid {
    display: flex !important;
	flex-direction: row !important;
	justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.words-grid .word-card {
    flex: 1; /* Force les 3 blocs à se partager la largeur */
    min-width: 0; 
    padding: 10px 5px !important;
}

.words-grid .word-card-name {
    font-size: 0.75rem !important;
    white-space: nowrap;
}

.words-grid .word-card p {
    font-size: 0.65rem !important;
    line-height: 1.2;
}

/* Sur mobile, on garde la ligne mais on réduit encore un peu */
@media (max-width: 600px) {
    .words-grid {
        gap: 5px;
    }
    .words-grid .word-card-name {
        font-size: 0.65rem !important;
    }
}
.word-card {
	flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 5px !important;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid #333;
	min-width: 0;
}

.word-card-name {
    font-size: 0.7rem !important;
    font-weight: 700;
	color: var(--red);
    /* color: #fff; */
    margin-bottom: 4px;
    display: block;
	white-space: nowrap; /* Évite que le nom ne passe sur deux lignes */
    overflow: hidden;
    text-overflow: ellipsis;
}

.word-card p {
    margin: 0;
    font-size: 0.65rem !important;
    color: var(--text-soft);
	line-height: 1.2;
}

.verdict-box {
    background: rgba(76, 175, 80, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin-top: 10px;
}

.verdict-box h3 {
    margin: 0 0 20px 0;
    font-size: 1rem;
    color: #4CAF50;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.verdict-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 0.85rem;
    color: #eee;
    align-items: center;
    text-align: center;
}

.verdict-col {
    border-right: 1px solid var(--border);
}

.verdict-col:last-child {
    border-right: none;
}

.verdict-col span {
    color: var(--text-muted);
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* ============================================
   BOUTON RETOUR (archives)
   ============================================ */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 40px;
    transition: opacity 0.3s;
}

.btn-back:hover {
    opacity: 0.7;
}

/* ============================================
   GRILLE ARCHIVES
   ============================================ */
.archives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

/* Croix quand ouvert */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay sombre derrière le panneau */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* Panneau latéral */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 80vw);
    height: 100dvh;
    background: #111;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.is-open {
    transform: translateX(0);
}

.nav-drawer a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s, padding-left 0.2s;
}

.nav-drawer a:last-child {
    border-bottom: none;
}

.nav-drawer a:hover,
.nav-drawer a.active {
    color: var(--red);
    padding-left: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-logo {
        width: 110px;
        height: 110px;
    }
}
/* Conteneur pour l'espacement avec les stats */
.twitch-container {
     width: 100%;
     display: flex;
     justify-content: center;
     text-align: center;
     margin-bottom: 25px !important;
     }
.twitch-live-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     background: #9146FF;
     color: #ffffff !important;
     padding: 12px 25px;
     border-radius: 50px;
     font-weight: 800;
     font-size: 0.85rem;
     text-decoration: none !important;
     box-shadow: 0 0 20px rgba(145, 70, 255, 0.4);
     animation: twitchPulse 2s infinite;
     }
.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4b4b;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 8px #ff4b4b;
    animation: blink 1.2s infinite;
    position: static !important;
     }
.twitch-live-btn:hover {
     transform: scale(1.05);
     background: #a970ff;
     }
@keyframes twitchPulse {
     0% { box-shadow: 0 0 0 0 rgba(145, 70, 255, 0.7); }
     70% { box-shadow: 0 0 0 15px rgba(145, 70, 255, 0); }
     100% { box-shadow: 0 0 0 0 rgba(145, 70, 255, 0); }
     }