/* ===========================
   BFM TV Clone - Stylesheet
   =========================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bfm-blue: #00007d;
    --bfm-dark-blue: #00007d;
    --bfm-navy: #00007d;
    --bfm-red: #e30613;
    --bfm-red-dark: #c00510;
    --bfm-orange: #ff6600;
    --bfm-white: #ffffff;
    --bfm-text: #1a1a1a;
    --bfm-text-light: #666666;
    --bfm-border: #e0e0e0;
    --bfm-bg: #f5f5f5;
    --bfm-link: #00007d;
    --header-height: 70px;
    --nav-height: 44px;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bfm-text);
    background: var(--bfm-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   HEADER
   =========================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    background: var(--bfm-blue);
    padding: 0 32px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--bfm-white);
    border-radius: 1px;
}

.logo {
    font-size: 35px;
    font-weight: 900;
    color: var(--bfm-white);
    letter-spacing: -1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bfm-white);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--bfm-white);
    background: transparent;
    transition: background 0.2s;
}

.header-action:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-action.direct {
    background: var(--bfm-red);
    border-color: var(--bfm-red);
}

.header-action.direct:hover {
    background: var(--bfm-red-dark);
}

.live-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--bfm-white);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===========================
   NAVIGATION
   =========================== */
.main-nav {
    background: var(--bfm-blue);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-inner {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding: 0 32px;
    gap: 0;
    white-space: nowrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 8px;
    height: 100%;
    transition: color 0.2s, border-bottom-color 0.2s;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: var(--bfm-white);
    border-bottom-color: var(--bfm-white);
}

.nav-link.muted {
    color: rgba(255, 255, 255, 0.5);
}

.nav-link.trending {
    color: var(--bfm-white);
    font-weight: 600;
}

.trending-dot {
    width: 6px;
    height: 6px;
    background: var(--bfm-red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===========================
   PAGE CONTENT
   =========================== */
.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* ===========================
   ARTICLE
   =========================== */
.article-main {
    min-width: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--bfm-text-light);
    transition: color 0.2s;
}

.breadcrumb a:hover,
.breadcrumb a.active {
    color: var(--bfm-link);
}

.breadcrumb .separator {
    color: var(--bfm-text-light);
    font-size: 11px;
}

/* Title */
.article-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.28;
    color: var(--bfm-text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* Date */
.article-date {
    font-size: 12.5px;
    color: var(--bfm-text-light);
    margin-bottom: 16px;
}

/* Author & Share */
.article-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bfm-border);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-source {
    font-size: 12px;
    font-weight: 700;
    color: var(--bfm-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.author-name {
    font-size: 13px;
    color: var(--bfm-text-light);
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bfm-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.share-btn:hover {
    background: var(--bfm-bg);
}

/* Hero Image - removed, no longer used */

/* Article Body */
.article-body {
    font-size: 16.5px;
    line-height: 1.78;
    color: var(--bfm-text);
}

.article-body p {
    margin-bottom: 22px;
}

.article-body a {
    color: var(--bfm-link);
    text-decoration: underline;
    text-decoration-color: rgba(0, 51, 204, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}

.article-body a:hover {
    text-decoration-color: var(--bfm-link);
}

/* Investigation Tag */
.investigation-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bfm-red);
    color: var(--bfm-white);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.tag-icon {
    font-size: 13px;
}

/* Chapô */
.article-chapo {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--bfm-text);
    margin-bottom: 16px;
    padding: 16px 0;
    border-top: 2px solid var(--bfm-text);
    border-bottom: 1px solid var(--bfm-border);
}

/* Article H2 - Intertitres */
.article-body h2 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--bfm-text);
    margin-top: 36px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bfm-blue);
}

/* Blockquotes */
.article-body blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--bfm-blue);
    background: #f8f9fb;
    border-radius: 0 4px 4px 0;
}

.article-body blockquote p {
    font-size: 15.5px;
    font-style: italic;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.65;
}

.article-body blockquote footer {
    font-size: 12.5px;
    color: var(--bfm-text-light);
    font-style: normal;
    font-weight: 600;
    margin-top: 4px;
}

/* Article Lists */
.article-body ul {
    margin: 16px 0 24px 0;
    padding-left: 24px;
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding: 6px 0 6px 16px;
    font-size: 15.5px;
    line-height: 1.65;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--bfm-red);
    border-radius: 50%;
}

.article-body ul li strong {
    color: var(--bfm-red-dark);
}

/* Article Conclusion */
.article-conclusion {
    font-size: 17px;
    line-height: 1.7;
    padding: 24px;
    background: linear-gradient(135deg, #f0f2f8 0%, #e8eaf3 100%);
    border-left: 4px solid var(--bfm-blue);
    border-radius: 0 6px 6px 0;
    margin-top: 32px;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--bfm-border);
}

.article-tags .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--bfm-blue);
    background: #eef1fa;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

.article-tags .tag:hover {
    background: var(--bfm-blue);
    color: var(--bfm-white);
}

/* ===========================
   SIDEBAR
   =========================== */
.sidebar {
    align-self: start;
}

/* À LA UNE */
.alaune-box {
    margin-bottom: 28px;
    border: 1px solid var(--bfm-border);
    border-radius: 4px;
    overflow: hidden;
}

.alaune-header {
    background: var(--bfm-blue);
    color: var(--bfm-white);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alaune-content {
    padding: 14px;
    background: var(--bfm-white);
}

.alaune-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--bfm-text);
}

.alaune-content strong {
    color: var(--bfm-red);
}

/* Les plus lus */
.most-read {
    padding: 0;
}

.most-read-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--bfm-text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bfm-text);
}

.most-read-list {
    list-style: none;
    counter-reset: none;
}

.most-read-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bfm-border);
}

.most-read-list li:first-child {
    padding-top: 0;
}

.most-read-list li:last-child {
    border-bottom: none;
}

.rank {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--bfm-blue);
    line-height: 1;
    min-width: 22px;
}

.most-read-list li a {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--bfm-text);
    transition: color 0.2s;
}

.most-read-list li a:hover {
    color: var(--bfm-link);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .article-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .main-header {
        padding: 0 10px;
    }

    .header-action.replay {
        display: none;
    }

    .header-action {
        flex-direction: column;
        border: none;
        padding: 0;
        background: transparent;
        gap: 4px;
        font-size: 11px;
        font-weight: 600;
    }

    .header-action:hover {
        background: transparent;
    }

    .header-action.direct, .header-action.direct:hover {
        background: transparent;
    }

    .header-action svg {
        border: 1.5px solid var(--bfm-white);
        border-radius: 50%;
        padding: 7px;
        width: 34px;
        height: 34px;
        box-sizing: border-box;
        margin-right: 0 !important;
    }

    .header-action.direct svg {
        background: var(--bfm-red);
        border-color: var(--bfm-red);
    }

    .page-content {
        padding: 16px 12px;
    }

    .article-title {
        font-size: 20px;
    }

    .content-wrapper {
        gap: 24px;
    }

    .nav-inner {
        padding: 0 10px;
    }
}

/* ===========================
   PREMIUM & UI ELEMENTS
   =========================== */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10000;
}
.reading-progress-bar {
    height: 100%;
    background: var(--bfm-blue);
    width: 0%;
}

.premium-banner {
    background: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #ffeeba;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.premium-banner svg {
    flex-shrink: 0;
    fill: #856404;
}

.audio-player {
    background: #f8f9fa;
    border: 1px solid var(--bfm-border);
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bfm-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}
.play-btn svg {
    margin-left: 4px;
}
.audio-info {
    flex: 1;
}
.audio-title {
    font-weight: 600;
    margin-bottom: 4px;
}
.audio-subtitle {
    font-size: 12px;
    color: var(--bfm-text-light);
}

.premium-paywall {
    position: relative;
    padding: 32px 16px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
    margin-top: -60px;
    z-index: 10;
}
.premium-paywall-content {
    background: var(--bfm-white);
    border: 1px solid var(--bfm-border);
    border-top: 3px solid var(--bfm-blue);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
}
.premium-paywall h3 {
    color: var(--bfm-blue);
    margin-bottom: 12px;
    font-size: 20px;
}
.premium-paywall p {
    font-size: 14px;
    color: var(--bfm-text-light);
    margin-bottom: 16px;
}
.btn-premium {
    background: var(--bfm-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-premium:hover {
    background: var(--bfm-dark-blue);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bfm-white);
    border-top: 1px solid var(--bfm-border);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    flex-wrap: wrap;
    gap: 16px;
    transition: transform 0.3s;
}
.cookie-banner.hidden {
    transform: translateY(100%);
}
.cookie-text {
    flex: 1;
    font-size: 13px;
    color: var(--bfm-text-light);
    min-width: 300px;
}
.cookie-text strong {
    color: var(--bfm-text);
}
.cookie-buttons {
    display: flex;
    gap: 8px;
}
.btn-cookie {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--bfm-border);
    background: var(--bfm-white);
    transition: all 0.2s;
}
.btn-cookie:hover {
    background: #f0f0f0;
}
.btn-cookie.accept {
    background: var(--bfm-blue);
    color: white;
    border-color: var(--bfm-blue);
}
.btn-cookie.accept:hover {
    background: var(--bfm-dark-blue);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    position: relative;
    background: var(--bfm-white);
    padding: 32px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-content h3 {
    color: var(--bfm-blue);
    margin-bottom: 12px;
}
.modal-content p {
    font-size: 14px;
    color: var(--bfm-text-light);
    margin-bottom: 24px;
}
.close-modal {
    background: transparent;
    border: none;
    color: var(--bfm-text-light);
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
}
/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: #00042d;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 30px 0;
    margin-top: 60px;
}
.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer_wrapper_top_content {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.footer_logo {
    height: 32px;
    width: auto;
    margin-right: 15px;
}
.footer_big_title {
    font-size: 20px;
    font-weight: 800;
    flex-grow: 1;
}
.footer_right_block {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer_social_media, .footer_application_icon {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.footer_social_media a, .footer_application_icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: transparent;
    text-decoration: none;
    font-size: 0px;
    transition: background 0.2s;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}
.footer_social_media a::before, .footer_application_icon a::before {
    display: none;
}
.footer_social_media a:hover, .footer_application_icon a:hover {
    background-color: rgba(255,255,255,0.1);
}
/* Facebook */
.icon_facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}
/* X (Twitter) */
.icon_twitter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}
/* RSS */
.icon_rss {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19.01 7.39 20 6.18 20 4.97 20 4 19.01 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1z'/%3E%3C/svg%3E");
}
/* Newsletter / Envelope */
.icon_envelop {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
/* Apple */
.icon_appleinc {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E");
}
/* Android */
.icon_android {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.27-.86-.31-.16-.69-.04-.86.27l-1.86 3.22c-1.44-.65-3.05-1.01-4.76-1.01-1.71 0-3.32.36-4.76 1.01L5.08 5.71c-.16-.31-.54-.43-.86-.27-.31.16-.43.55-.27.86l1.84 3.18C2.65 11.38.41 14.83.41 18.83h23.18c0-4-2.24-7.45-5.99-9.35zM7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5z'/%3E%3C/svg%3E");
}
.footer_middle_title {
    font-size: 13px;
    font-weight: 700;
}
.footer_wrapper_middle_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer_col_title {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer_col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_col li {
    margin-bottom: 12px;
}
.footer_col a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.footer_col a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.footer_col_liste {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.footer_copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer_container {
        padding: 0 16px;
    }
    .footer_wrapper_top_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer_right_block {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer_wrapper_middle_content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer_col_liste {
        grid-template-columns: 1fr;
    }
    .footer_social_media, .footer_application_icon {
        flex-wrap: wrap;
    }
}

.hamburger-btn {
    position: relative;
    z-index: 9999999; /* Stay above the menu */
}
.hamburger-btn span {
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* Footer text overrides */
.footer_col_title {
    color: #ffffff !important;
}
.footer_col_liste a, .footer_col a {
    color: #e0e0e0 !important;
}
.footer_col_liste a:hover, .footer_col a:hover {
    color: #ffffff !important;
}
.footer_copyright {
    color: #a0a0a0 !important;
}

/* Ensure social icons are properly visible */
.social-icon {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
}
.social-icon svg {
    fill: currentColor !important;
}
.social-icon:hover {
    color: #00007d !important;
    background: #ffffff !important;
}


/* Fix header z-index so the hamburger cross stays visible above the menu */
.main-header {
    z-index: 9999999 !important;
}


/* Final fixes for Hamburger Menu and Header */

/* Make header completely fixed to avoid sticky bugs when body overflow is hidden */
.main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999999 !important;
}

/* Push body content down so it's not hidden behind the fixed header */
body {
    padding-top: 70px !important; /* Adjust according to header height */
}



/* Responsive fixes */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
    
}


/* Fix footer SVG icons centering */
.footer_social_media a, .footer_application_icon a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-indent: 0 !important; /* Override BFM hiding text */
    color: transparent !important; /* Hide leftover text just in case */
}
.footer_social_media a svg, .footer_application_icon a svg {
    display: block !important;
}
