@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Merriweather:wght@300;400;700&family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* French flag colors */
            --french-blue: #002654;
            --french-white: #FFFFFF;
            --french-red: #ED2939;
            
            /* Magazine palette */
            --black: #000000;
            --dark-gray: #1a1a1a;
            --medium-gray: #333333;
            --light-gray: #666666;
            --lighter-gray: #999999;
            --off-white: #f5f5f5;
            --pure-white: #ffffff;
            
            /* Accent colors */
            --accent-yellow: #FFD700;
            --accent-green: #2ECC40;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark-gray);
            background: var(--pure-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Banner */
        .top-banner {
            background: var(--french-red);
            color: white;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.5px;
        }

        /* Announcement Color Variants */
        .top-banner.announcement-red {
            background: var(--french-red);
        }

        .top-banner.announcement-blue {
            background: var(--french-blue);
        }

        .top-banner.announcement-green {
            background: var(--accent-green);
        }

        .top-banner.announcement-orange {
            background: #FF6B35;
        }

        /* Header */
        .header {
            background: var(--pure-white);
            border-bottom: 4px solid var(--black);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .header-main {
            padding: 20px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-area {
            flex: 1;
            text-align: center;
        }

        .logo-wrapper {
            display: inline-block;
            text-decoration: none;
            position: relative;
        }

        .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 28px;
            line-height: 1.2;
            color: var(--black);
            letter-spacing: -0.5px;
            text-transform: capitalize;
            margin-bottom: 0;
            font-weight: 700;
            background: linear-gradient(135deg, var(--french-blue) 0%, var(--french-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        .french-ribbon {
            position: absolute;
            top: -5px;
            right: -15px;
            width: 40px;
            height: 12px;
            background: linear-gradient(90deg, var(--french-blue) 33.33%, var(--french-white) 33.33% 66.66%, var(--french-red) 66.66%);
            transform: rotate(12deg);
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            border-radius: 2px;
        }

        .header-sides {
            flex: 0 0 250px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .header-date {
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--light-gray);
        }

        .header-social {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
        }

        .social-icon {
            width: 28px;
            height: 28px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.2s;
            border-radius: 4px;
            font-weight: 600;
        }

        .social-icon.facebook {
            background: #1877F2;
        }

        .social-icon.twitter {
            background: #000000;
        }

        .social-icon.linkedin {
            background: #0A66C2;
        }

        .social-icon.email {
            background: #EA4335;
        }

        .social-icon:hover {
            transform: scale(1.1);
            opacity: 0.8;
        }

        /* Navigation */
        .main-nav {
            background: var(--black);
            padding: 0;
        }

        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            align-items: center;
            height: 50px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0 25px;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            line-height: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--french-red);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover {
            background: var(--french-red);
            transform: translateY(-1px);
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-item.highlight {
            background: linear-gradient(135deg, var(--french-blue) 0%, #1a4d7a 100%);
            box-shadow: 0 4px 15px rgba(0, 38, 84, 0.3);
        }

        .nav-item.highlight .nav-link:hover {
            background: linear-gradient(135deg, var(--french-red) 0%, #c41e3a 100%);
        }

        /* Breaking News Ticker */
        .breaking-news {
            background: var(--french-blue);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }

        .breaking-label {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: var(--french-red);
            padding: 0 20px;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
        }

        .breaking-content {
            display: flex;
            animation: ticker 30s linear infinite;
            padding-left: 200px;
        }

        .breaking-item {
            padding: 0 50px;
            white-space: nowrap;
            font-weight: 500;
        }

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

        /* Hero Section */
        .hero-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><circle cx="10" cy="10" r="0.5" fill="%23002654" opacity="0.1"/><circle cx="30" cy="15" r="0.3" fill="%23ED2939" opacity="0.1"/><circle cx="50" cy="8" r="0.4" fill="%23002654" opacity="0.08"/><circle cx="70" cy="12" r="0.2" fill="%23ED2939" opacity="0.08"/><circle cx="90" cy="6" r="0.6" fill="%23002654" opacity="0.05"/></svg>') repeat;
            animation: subtleMove 20s ease-in-out infinite;
        }

        @keyframes subtleMove {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .main-story {
            background: white;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            position: relative;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
        }

        .main-story:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transform: translateY(-8px);
        }

        .main-story-image {
            height: 500px;
            background: linear-gradient(135deg, var(--french-blue) 0%, var(--french-red) 100%);
            position: relative;
            overflow: hidden;
        }

        .main-story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .main-story-badge {
            position: absolute;
            top: 30px;
            left: 30px;
            background: linear-gradient(135deg, var(--french-red) 0%, #c41e3a 100%);
            color: white;
            padding: 10px 24px;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(237, 41, 57, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .main-story-content {
            padding: 40px;
        }

        .main-story-category {
            color: var(--french-blue);
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .main-story-title {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            line-height: 1.1;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: var(--black);
        }

        .main-story-excerpt {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            line-height: 1.6;
            color: var(--medium-gray);
            margin-bottom: 30px;
        }

        .story-meta {
            display: flex;
            gap: 30px;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--light-gray);
        }

        /* Sidebar Stories */
        .sidebar-stories {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-story {
            background: white;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-left: 4px solid var(--french-red);
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .sidebar-story::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--french-red), transparent);
            opacity: 0.1;
            border-radius: 0 12px 0 60px;
        }

        .sidebar-story:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-left-color: var(--french-blue);
        }

        .sidebar-story-category {
            color: var(--french-red);
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .sidebar-story-title {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            line-height: 1.2;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: var(--black);
        }

        .sidebar-story-text {
            font-size: 14px;
            line-height: 1.5;
            color: var(--light-gray);
        }

        /* Campaign Promise Banner */
        .promise-banner {
            background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
            color: white;
            padding: 80px 0;
            margin: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 100px rgba(0, 38, 84, 0.1);
        }

        .promise-banner::before,
        .promise-banner::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            background: linear-gradient(90deg, var(--french-blue) 50%, var(--french-red) 50%);
        }

        .promise-banner::before {
            left: 0;
        }

        .promise-banner::after {
            right: 0;
        }

        .promise-content {
            position: relative;
            z-index: 1;
        }

        .promise-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 64px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .promise-subtitle {
            font-family: 'Merriweather', serif;
            font-size: 20px;
            font-style: italic;
            opacity: 0.9;
        }

        /* Article Grid */
        .articles-section {
            padding: 60px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            border-bottom: 4px solid var(--black);
            padding-bottom: 15px;
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-link {
            color: var(--french-red);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: color 0.2s;
        }

        .section-link:hover {
            color: var(--french-blue);
        }

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

        .article-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border-radius: 16px;
            position: relative;
        }

        .article-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 60%, rgba(237, 41, 57, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 16px;
        }

        .article-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .article-card:hover::after {
            opacity: 1;
        }

        .article-image {
            height: 200px;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        .article-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--french-red);
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 24px;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            background: var(--off-white);
        }

        .article-content {
            padding: 25px;
        }

        .article-category {
            color: var(--french-blue);
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-family: 'Oswald', sans-serif;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: var(--black);
            height: 53px; /* 2 lines max */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .article-excerpt {
            font-size: 14px;
            line-height: 1.5;
            color: var(--light-gray);
            margin-bottom: 15px;
            height: 63px; /* 3 lines at 1.5 line height */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
        }

        .article-author {
            font-size: 12px;
            color: var(--lighter-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Community Voices Section */
        .community-section {
            background: var(--off-white);
            padding: 80px 0;
        }

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

        .voice-card {
            background: white;
            padding: 40px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
        }

        .voice-card::before {
            content: '"';
            font-size: 80px;
            font-family: 'Merriweather', serif;
            color: var(--french-blue);
            opacity: 0.1;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .voice-photo {
            width: 80px;
            height: 80px;
            background: var(--light-gray);
            border-radius: 50%;
            margin: 0 auto 20px;
        }

        .voice-text {
            font-family: 'Merriweather', serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--medium-gray);
            margin-bottom: 20px;
            font-style: italic;
        }

        .voice-name {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--black);
            margin-bottom: 5px;
        }

        .voice-location {
            font-size: 13px;
            color: var(--french-red);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Call to Action */
        .cta-section {
            background: linear-gradient(135deg, var(--french-blue) 0%, var(--french-red) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 56px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-button {
            padding: 18px 40px;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button-primary {
            background: white;
            color: var(--french-blue);
        }

        .cta-button-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: var(--black);
            color: white;
            padding: 60px 0 30px;
        }

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

        .footer-brand h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .footer-description {
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .footer-column h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            line-height: 2;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

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

        .footer-copyright {
            font-size: 13px;
            opacity: 0.6;
        }

        .footer-flag {
            display: flex;
            gap: 2px;
        }

        .flag-stripe {
            width: 30px;
            height: 20px;
        }

        .flag-stripe:nth-child(1) { background: var(--french-blue); }
        .flag-stripe:nth-child(2) { background: white; }
        .flag-stripe:nth-child(3) { background: var(--french-red); }

        /* Mobile */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .logo-title {
                font-size: 48px;
            }

            .nav-list {
                flex-wrap: wrap;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
/* Header Search */
.header-search {
    margin-bottom: 5px;
    display: flex;
    justify-content: flex-end;
}

.search-form-mini {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-mini {
    padding: 8px 35px 8px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 20px;
    font-size: 14px;
    width: 180px;
    transition: all 0.3s ease;
    outline: none;
}

.search-input-mini:focus {
    border-color: var(--french-blue);
    box-shadow: 0 0 0 3px rgba(0, 38, 84, 0.1);
}

.search-btn-mini {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: var(--french-blue);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn-mini:hover {
    background: var(--french-blue);
    color: white;
}

@media (max-width: 768px) {
    .header-search {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .search-input-mini {
        width: 140px;
    }
    
    .header-social {
        gap: 6px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

/* Enhanced Typography & Spacing */
.main-story-title {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 50%;
    background: linear-gradient(45deg, var(--french-red), var(--french-blue));
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Enhanced Hover States */
.article-card .article-title,
.sidebar-story-title {
    transition: color 0.3s ease;
}

.article-card:hover .article-title,
.sidebar-story:hover .sidebar-story-title {
    color: var(--french-red);
}

/* Smooth Page Load Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.articles-section,
.community-section {
    animation: fadeInUp 0.8s ease-out;
}

.articles-section {
    animation-delay: 0.2s;
}

.community-section {
    animation-delay: 0.4s;
}

/* Enhanced Focus States for Accessibility */
button:focus,
a:focus,
input:focus {
    outline: 3px solid var(--french-blue);
    outline-offset: 2px;
}

/* Subtle Text Selection */
::selection {
    background: rgba(237, 41, 57, 0.2);
    color: var(--black);
}

::-moz-selection {
    background: rgba(237, 41, 57, 0.2);
    color: var(--black);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--french-blue), var(--french-red));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--french-red), var(--french-blue));
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--french-red);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 1001;
    border-radius: 4px;
    position: fixed;
    top: 10px;
    right: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-menu-toggle:active {
    background: var(--french-blue);
}

/* Tablet Breakpoint (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .main-story-image {
        height: 350px;
    }

    .main-story-title {
        font-size: 36px;
    }

    .main-story-excerpt {
        font-size: 16px;
    }

    /* Article Grids */
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Testimonials */
    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Promise Banner */
    .promise-title {
        font-size: 48px;
    }

    .promise-subtitle {
        font-size: 18px;
    }
}

/* Mobile Breakpoint (768px and below) */
@media (max-width: 768px) {
    /* Header Adjustments */
    .header-main {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-sides {
        flex: 1;
        width: 100%;
        align-items: center;
    }

    .header-date {
        text-align: center;
    }

    .header-social {
        justify-content: center;
    }

    .logo-title {
        font-size: 32px;
    }

    .french-ribbon {
        width: 30px;
        height: 10px;
        right: -10px;
    }

    /* Navigation - Hidden by default on mobile */
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--black);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }

    .main-nav.menu-open {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        height: auto;
        padding: 60px 0 20px 0;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: 15px 20px;
        line-height: normal;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
    }

    /* Menu overlay when open */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Top Banner */
    .top-banner {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Breaking News */
    .breaking-label {
        padding: 0 10px;
        font-size: 12px;
    }

    .breaking-content {
        padding-left: 100px;
        font-size: 13px;
    }

    .breaking-item {
        padding: 0 30px;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 0;
    }

    .hero-grid {
        gap: 20px;
    }

    .main-story-image {
        height: 300px;
    }

    .main-story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .main-story-content {
        padding: 25px;
    }

    .main-story-badge {
        top: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .main-story-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .main-story-excerpt {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .story-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
    }

    /* Sidebar Stories */
    .sidebar-story {
        padding: 20px;
    }

    .sidebar-story-title {
        font-size: 18px;
    }

    .sidebar-story-text {
        font-size: 13px;
    }

    /* Promise Banner */
    .promise-banner {
        padding: 50px 0;
        margin: 40px 0;
    }

    .promise-banner::before,
    .promise-banner::after {
        width: 50px;
    }

    .promise-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .promise-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Sections */
    .articles-section,
    .community-section {
        padding: 40px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 1px;
        padding-left: 15px;
    }

    .section-title::before {
        width: 6px;
    }

    .section-link {
        font-size: 13px;
        align-self: flex-end;
    }

    /* Article Grid */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-card {
        border-radius: 12px;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 20px;
        height: auto;
        -webkit-line-clamp: 3;
    }

    .article-excerpt {
        font-size: 14px;
        height: auto;
    }

    /* Testimonials */
    .voices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-card {
        padding: 30px 25px;
    }

    .voice-card::before {
        font-size: 60px;
        top: 5px;
        left: 10px;
    }

    .voice-text {
        font-size: 15px;
    }

    .voice-name {
        font-size: 16px;
    }

    .voice-location {
        font-size: 12px;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .cta-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .cta-button {
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Small Mobile Breakpoint (480px and below) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo-title {
        font-size: 24px;
    }

    .header-social {
        gap: 5px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    /* Navigation */
    .nav-link {
        font-size: 14px;
        padding: 12px 15px;
    }

    /* Top Banner */
    .top-banner {
        font-size: 11px;
        padding: 6px 8px;
    }

    /* Breaking News */
    .breaking-news {
        padding: 10px 0;
    }

    .breaking-label {
        font-size: 10px;
        padding: 0 8px;
    }

    .breaking-content {
        padding-left: 80px;
        font-size: 12px;
    }

    .breaking-item {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-section {
        padding: 15px 0;
    }

    .main-story-image {
        height: 220px;
    }

    .main-story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .main-story-content {
        padding: 15px;
    }

    .main-story-badge {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .main-story-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .main-story-excerpt {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .story-meta {
        font-size: 10px;
    }

    /* Sidebar Stories */
    .sidebar-story {
        padding: 15px;
    }

    .sidebar-story-title {
        font-size: 16px;
    }

    .sidebar-story-text {
        font-size: 12px;
    }

    /* Promise Banner */
    .promise-banner {
        padding: 35px 0;
        margin: 30px 0;
    }

    .promise-banner::before,
    .promise-banner::after {
        width: 30px;
    }

    .promise-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .promise-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    /* Sections */
    .articles-section,
    .community-section {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 24px;
        padding-left: 12px;
    }

    .section-title::before {
        width: 5px;
    }

    .section-link {
        font-size: 12px;
    }

    /* Article Cards */
    .article-card {
        border-radius: 10px;
    }

    .article-image {
        height: 150px;
    }

    .article-number {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        left: 10px;
    }

    .article-content {
        padding: 15px;
    }

    .article-category {
        font-size: 11px;
    }

    .article-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .article-excerpt {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .article-author {
        font-size: 11px;
    }

    /* Testimonials */
    .voice-card {
        padding: 25px 20px;
    }

    .voice-photo {
        width: 70px;
        height: 70px;
    }

    .voice-card::before {
        font-size: 50px;
    }

    .voice-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .voice-name {
        font-size: 15px;
    }

    .voice-location {
        font-size: 11px;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .cta-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-flag {
        justify-content: center;
    }

    .flag-stripe {
        width: 25px;
        height: 18px;
    }
}

/* Touch-Friendly Enhancements for Mobile */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-link,
    .social-icon,
    .cta-button,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover effects on touch devices */
    .article-card:hover,
    .sidebar-story:hover,
    .nav-link:hover {
        transform: none;
    }

    /* Add active states instead */
    .article-card:active {
        transform: scale(0.98);
    }

    .nav-link:active,
    .cta-button:active {
        opacity: 0.8;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
    }

    .main-story-image {
        height: 300px;
    }

    .promise-banner {
        padding: 40px 0;
    }

    .articles-section,
    .community-section {
        padding: 35px 0;
    }
}

/* Extra Small Devices (320px) */
@media (max-width: 360px) {
    .logo-title {
        font-size: 20px;
    }

    .main-story-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

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

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

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

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   Professional mobile-first responsive design
   ============================================ */

/* Mobile Header Optimization */
@media (max-width: 768px) {
    /* Smaller, more compact header on mobile */
    .header-main {
        padding: 10px 0;
    }

    .logo-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .header-date {
        font-size: 9px;
    }

    .header-social {
        gap: 8px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .header-content {
        gap: 10px;
    }

    .header-sides {
        min-width: auto;
    }

    /* Mobile menu button positioning */
    .mobile-menu-toggle {
        top: 15px;
        right: 15px;
        font-size: 22px;
        padding: 8px 12px;
    }
}

/* Chronique Page Mobile Responsiveness */
@media (max-width: 768px) {
    .chronique-page {
        padding: 0;
    }

    /* Hero section */
    .chronique-hero {
        padding: 20px 0;
    }

    .chronique-title {
        font-size: 24px !important;
        line-height: 1.3;
        margin: 15px 0 !important;
    }

    .category-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    /* Meta information */
    .chronique-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }

    .meta-info {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }

    .meta-info span {
        font-size: 12px;
    }

    /* Share buttons */
    .share-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .share-label {
        width: 100%;
        margin-bottom: 5px;
    }

    .share-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Content wrapper */
    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .main-chronique {
        width: 100% !important;
        padding: 0 !important;
    }

    /* Featured image */
    .chronique-image {
        margin: 20px 0;
    }

    .chronique-image img,
    .chronique-placeholder {
        height: 250px !important;
        border-radius: 8px;
    }

    /* Excerpt */
    .chronique-excerpt {
        font-size: 16px;
        padding: 15px;
        margin: 20px 0;
    }

    /* Body content */
    .chronique-body {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 15px;
    }

    .chronique-body h2 {
        font-size: 20px;
        margin: 25px 0 15px;
    }

    .chronique-body h3 {
        font-size: 18px;
        margin: 20px 0 12px;
    }

    .chronique-body h4 {
        font-size: 16px;
        margin: 18px 0 10px;
    }

    .chronique-body p {
        margin-bottom: 15px;
    }

    .chronique-body img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

    .chronique-body ul,
    .chronique-body ol {
        padding-left: 25px;
        margin: 15px 0;
    }

    .chronique-body li {
        margin-bottom: 10px;
    }

    .chronique-body blockquote {
        font-size: 16px;
        padding: 15px 20px;
        margin: 20px 0;
        border-left-width: 4px;
    }

    /* Tags */
    .chronique-tags {
        padding: 15px;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .tag-link {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* Navigation */
    .chronique-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }

    .nav-previous,
    .nav-next,
    .nav-back {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 15px;
    }

    .nav-title {
        font-size: 14px;
    }

    .back-to-list {
        width: 100%;
        display: block;
        padding: 12px;
    }

    /* Sidebar becomes full width on mobile */
    .chronique-sidebar {
        width: 100% !important;
        max-width: none !important;
        padding: 20px 15px;
    }

    .sidebar-widget h3 {
        font-size: 20px;
    }

    .related-chronique {
        flex-direction: column;
        gap: 12px;
    }

    .related-image {
        width: 100% !important;
        height: 180px;
    }

    .related-image img,
    .related-image > div {
        width: 100% !important;
        height: 100% !important;
    }

    .related-content h4 {
        font-size: 16px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
        padding: 0 15px;
    }
}

/* Article Page - Featured Image Styles */
.main-article .article-image {
    height: auto !important;
    max-height: none !important;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-article .article-image img {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: contain !important;
    max-height: 600px;
}

/* Article Page Mobile Responsiveness */
@media (max-width: 768px) {
    .article-page {
        padding: 0;
    }

    .article-hero {
        padding: 20px 0;
    }

    .article-title {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .article-content {
        padding: 20px 0;
    }

    .article-body {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 15px;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

/* Comments Section Mobile */
@media (max-width: 768px) {
    .comments-section {
        padding: 20px 15px;
    }

    .comments-section h3 {
        font-size: 20px;
    }

    .comment {
        padding: 15px;
    }

    .comment-author {
        font-size: 14px;
    }

    .comment-date {
        font-size: 11px;
    }

    .comment-text {
        font-size: 14px;
    }

    .comment-form textarea {
        font-size: 14px;
    }
}

/* Gallery Mobile Optimization */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .gallery-item {
        height: 250px;
    }
}

/* Events Page Mobile */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr !important;
    }

    .event-card {
        padding: 20px;
    }
}

/* Contact Page Mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contact-form,
    .contact-info {
        padding: 25px 20px;
    }

    .form-control {
        font-size: 14px;
    }
}

/* Responsive Typography */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px !important;
    }

    h2 {
        font-size: 20px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    .logo-title {
        font-size: 14px;
    }
}

/* Responsive Tables */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

/* Responsive Embeds (Videos, iframes) */
@media (max-width: 768px) {
    iframe,
    video,
    embed {
        max-width: 100%;
        height: auto;
    }
}
