/*
Theme Name: Le Courrier de Bukavu - Pro
Theme URI: https://lecourrierdebukavu.com
Author: Le Courrier de Bukavu
Author URI: https://lecourrierdebukavu.com
Description: Thème professionnel pour journal d'actualités - Design moderne avec couleurs Rouge, Bleu, Blanc
Version: 6.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lcd-bukavu
*/

/* ===== CSS VARIABLES - Rouge, Bleu, Blanc ===== */
:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #fef2f2;
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --light-blue: #eff6ff;
    --accent-blue: #3b82f6;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--off-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-red);
}

/* ===== TOP BAR - Editable via Customizer ===== */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 3px solid var(--primary-red);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== MAIN HEADER - Editable via Customizer ===== */
.site-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-logo {
    margin-bottom: 10px;
}

.site-logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.site-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-title a {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title a:hover {
    color: var(--white);
    opacity: 0.9;
}

.site-tagline {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 5px;
    font-weight: 500;
}

/* ===== NAVIGATION ===== */
.main-navigation {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    color: var(--text-dark);
    padding: 18px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    display: none;
    flex-direction: column;
    border-top: 3px solid var(--primary-red);
}

.nav-menu li:hover .sub-menu {
    display: flex;
    animation: slideDown 0.3s ease;
}

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

.nav-menu .sub-menu a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
}

.nav-menu .sub-menu a:hover {
    background: var(--light-red);
    padding-left: 25px;
}

.nav-menu .sub-menu a::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius);
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

/* Search Toggle */
.search-toggle {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    transform: scale(1.1);
}

/* ===== BREAKING NEWS ===== */
.breaking-news-bar {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.breaking-news-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.breaking-news-bar .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-label {
    background: var(--dark-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.8rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.live-indicator {
    animation: pulse 1.5s infinite;
    color: #fbbf24;
}

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

.breaking-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.breaking-content a {
    color: var(--white);
    font-weight: 600;
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breaking-content a:hover {
    text-decoration: underline;
    color: rgba(255,255,255,0.9);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-red);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
}

/* ===== FEATURED ARTICLES GRID ===== */
.featured-section {
    margin-bottom: 50px;
}

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

.article-card-small {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.article-card-small:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.article-card-small .thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-card-small .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card-small:hover .thumbnail img {
    transform: scale(1.1);
}

.article-card-small .content {
    padding: 20px;
}

.cat-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-small h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
}

.article-card-small h3 a {
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-small h3 a:hover {
    color: var(--primary-red);
}

.article-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    gap: 15px;
    align-items: center;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== MAIN CONTENT + VIDEO SECTION ===== */
.content-video-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.main-article-large {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.main-article-large .thumbnail {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.main-article-large .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-article-large:hover .thumbnail img {
    transform: scale(1.05);
}

.main-article-large .content {
    padding: 30px;
}

.main-article-large h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.main-article-large h2 a {
    color: var(--text-dark);
}

.main-article-large h2 a:hover {
    color: var(--primary-red);
}

.main-article-large p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Video Widget */
.video-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    padding: 25px;
}

.video-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--gray-900);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== TRENDING SECTION ===== */
.trending-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-article {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 550px;
    box-shadow: var(--shadow-lg);
}

.hero-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 40px;
    color: var(--white);
}

.hero-overlay .cat-badge {
    background: var(--primary-red);
    font-size: 0.75rem;
}

.hero-overlay h2 {
    font-size: 2rem;
    margin: 15px 0;
    line-height: 1.2;
    font-weight: 800;
}

.hero-overlay h2 a {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay h2 a:hover {
    color: var(--primary-red);
}

.hero-meta {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
}

/* Trending Sidebar */
.trending-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.trending-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-blue);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trending-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.trending-item:hover {
    background: var(--light-red);
    margin: 0 -25px;
    padding-left: 25px;
    padding-right: 25px;
}

.trending-number {
    background: var(--primary-red);
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.trending-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.trending-content {
    flex: 1;
}

.trending-content .cat-name {
    font-size: 0.7rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-item h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 5px 0;
    font-weight: 700;
}

.trending-item h4 a {
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-item h4 a:hover {
    color: var(--primary-red);
}

.trending-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    gap: 10px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Video Widget Sidebar */
.video-widget-sidebar .video-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.video-widget-sidebar .video-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.video-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.video-thumb:hover .play-icon {
    background: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.video-info h4 a {
    color: var(--text-dark);
}

.video-info h4 a:hover {
    color: var(--primary-red);
}

.video-duration {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Categories Widget */
.widget_categories ul {
    list-style: none;
}

.widget_categories li {
    border-bottom: 1px solid var(--gray-100);
}

.widget_categories li:last-child {
    border-bottom: none;
}

.widget_categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.widget_categories a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.widget_categories .count {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== EDITOR CHOICE ===== */
.editor-choice {
    margin-bottom: 50px;
}

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

.editor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.editor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.editor-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.editor-card .content {
    padding: 20px;
}

.editor-card h4 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.editor-card h4 a {
    color: var(--text-dark);
}

.editor-card h4 a:hover {
    color: var(--primary-red);
}

/* ===== SINGLE POST ===== */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.single-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.post-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-100);
}

.post-category {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.post-meta {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2, .post-content h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-blue);
}

.post-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

/* Tags */
.post-tags {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 2px solid var(--gray-100);
}

.post-tags strong {
    display: block;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tag {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 6px 16px;
    margin: 0 8px 8px 0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Share Buttons */
.share-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--light-red);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-red);
}

.share-section strong {
    display: block;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.telegram { background: #0088cc; }

/* Author Box */
.author-box {
    margin: 40px 0;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== FOOTER - Editable via Customizer ===== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    margin-top: 80px;
    border-top: 5px solid var(--primary-red);
}

.footer-widgets {
    padding: 60px 0 40px;
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column p {
    line-height: 1.8;
    color: var(--gray-400);
}

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

.footer-contact li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li:last-child {
    border-bottom: none;
}

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

.footer-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-menu a {
    display: block;
    padding: 10px 0;
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    color: var(--gray-300);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-400);
}

.footer-bottom strong {
    color: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: pulse-whatsapp 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .main-container,
    .single-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .articles-featured {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trending-section {
        grid-template-columns: 1fr;
    }
    
    .hero-article {
        height: 400px;
    }
    
    .editor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        width: 100%;
        box-shadow: var(--shadow-lg);
        border-top: 3px solid var(--primary-red);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
    }
    
    .articles-featured {
        grid-template-columns: 1fr;
    }
    
    .content-video-section {
        grid-template-columns: 1fr;
    }
    
    .hero-article {
        height: 350px;
    }
    
    .hero-overlay {
        padding: 25px;
    }
    
    .hero-overlay h2 {
        font-size: 1.4rem;
    }
    
    .editor-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .single-article {
        padding: 25px;
    }
    
    .post-title {
        font-size: 1.6rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .main-navigation,
    .breaking-news-bar,
    .sidebar,
    .site-footer,
    .whatsapp-float {
        display: none;
    }
    
    .single-article {
        box-shadow: none;
        border: none;
    }
}