/* ============================================
   BALZAN FC 1937 - ELITE FOOTBALL CLUB DESIGN
   Professional Sports Theme
   ============================================ */

/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+Pro:wght@400;600;700&display=swap');

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

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Primary Colors - Deep Navy & Gold */
    --navy: #0d1b2a;
    --navy-light: #1b263b;
    --navy-dark: #050a10;
    --gold: #c9a227;
    --gold-light: #e6c656;
    --gold-dark: #9a7b1c;

    /* Secondary */
    --blue: #415a77;
    --blue-light: #778da9;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;

    /* Semantic */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container: 1280px;
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }

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

a:hover {
    color: var(--gold);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER - PREMIUM DESIGN
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: var(--navy-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-top-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--blue-light);
}

.header-top a {
    color: var(--blue-light);
    margin-left: 16px;
    font-size: 1rem;
}

.header-top a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

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

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 4px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--white);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: translateX(-100%);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    transform: translateX(0);
}

.mobile-menu-btn {
    display: none;
    background: var(--gold);
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 4px;
}

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item > a i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-item:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--navy);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 8px 0;
    border-top: 3px solid var(--gold);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0;
    overflow: visible;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--navy-light);
    color: var(--gold);
    padding-left: 25px;
}

.dropdown-menu a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    color: var(--gold);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
}

.dropdown-header {
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

/* ============================================
   HERO SECTION - EPIC BANNER
   ============================================ */
.hero {
    margin-top: 110px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201,162,39,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--blue-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Home - Full Landing Page */
.hero-home {
    padding: 140px 0 120px;
    background:
        linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(5,10,16,0.98) 100%),
        url('/wp-content/uploads/2017/04/balzanlogo-4.png') center center / 400px no-repeat;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-dark:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

/* ============================================
   NEWS LIST - ARCHIVE STYLE
   ============================================ */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-list .card {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-list .card:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.news-list .card-body {
    padding: 20px 24px;
    flex: 1;
}

.news-list .card-meta {
    margin-bottom: 8px;
}

.news-list .card-title {
    font-size: 1.1rem;
    margin: 0;
}

.news-list .card-title a {
    color: var(--navy);
}

.news-list .card-title a:hover {
    color: var(--gold);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-gray {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 24px auto 0;
}

.section-dark .section-header p {
    color: var(--blue-light);
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    gap: 30px;
}

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

/* ============================================
   NEWS CARDS - PREMIUM STYLE
   ============================================ */
.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--light-gray);
    transition: var(--transition);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.card-meta i {
    color: var(--gold);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-title a {
    color: var(--navy);
}

.card-title a:hover {
    color: var(--gold);
}

.card-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* Featured Card */
.card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.card-featured .card-image {
    height: 100%;
    min-height: 350px;
}

.card-featured .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.card-featured .card-title {
    font-size: 1.75rem;
}

/* ============================================
   FIXTURES TABLE
   ============================================ */
.fixtures-table {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fixtures-table table {
    width: 100%;
    border-collapse: collapse;
}

.fixtures-table th {
    background: var(--navy);
    color: var(--white);
    padding: 18px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fixtures-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

.fixtures-table tbody tr:hover {
    background: var(--off-white);
}

.fixtures-table tbody tr:last-child td {
    border-bottom: none;
}

/* Dark section fixtures table text visibility */
.section-dark .fixtures-table td {
    color: var(--dark-gray);
}

.section-dark .fixtures-table td strong {
    color: var(--navy);
}

.score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.score-win { color: var(--success); }
.score-draw { color: var(--warning); }
.score-loss { color: var(--danger); }

/* ============================================
   SIDEBAR & WIDGETS
   ============================================ */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--white);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
}

.widget-list {
    list-style: none;
}

.widget-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.widget-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-list a {
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.widget-list a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.widget-list i {
    color: var(--gold);
    width: 20px;
}

/* ============================================
   SHARE BUTTONS
   ============================================ */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.share-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0c8de4;
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #005e93;
}

.share-copy {
    background: var(--navy);
}

.share-copy:hover {
    background: var(--navy-light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--blue-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--gold);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a, .footer-links li {
    color: var(--blue-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: var(--blue-light);
    font-size: 0.9rem;
}

/* ============================================
   ARTICLE PAGES
   ============================================ */
.article-header {
    margin-top: 110px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--blue-light);
}

.breadcrumb a {
    color: var(--blue-light);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.article-meta-top {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--blue-light);
}

.article-meta-top i {
    color: var(--gold);
    margin-right: 8px;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.3;
    max-width: 900px;
}

.article-content {
    max-width: 900px;
    margin: -40px auto 80px;
    padding: 0 24px;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.article-featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: var(--light-gray);
}

.article-body {
    padding: 48px;
    font-size: 1.1rem;
    line-height: 1.9;
}

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

.article-body h2, .article-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ============================================
   CONTENT CARD
   ============================================ */
.content-card {
    background: var(--white);
    border-radius: 8px;
    padding: 48px;
    box-shadow: var(--shadow);
}

.content-card h2 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--gold);
}

.content-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-card ul, .content-card ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-card li {
    margin-bottom: 10px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.pagination .active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.pagination .dots {
    background: transparent;
    border: none;
    color: var(--gray);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .content-with-sidebar {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 1024px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .card-featured { grid-column: span 1; grid-template-columns: 1fr; }
    .card-featured .card-image { min-height: 250px; }
}

@media (max-width: 768px) {
    .hero { margin-top: 80px; padding: 60px 0; }
    .article-header { margin-top: 80px; }
    .section { padding: 60px 0; }

    .header-top { display: none; }

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

    .logo img { height: 50px; }
    .logo-text { font-size: 1.5rem; }

    .main-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 30px;
        overflow-y: auto;
    }

    .main-nav.active { display: flex; }

    .main-nav a {
        width: 100%;
        padding: 18px;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav a::before { display: none; }

    .mobile-menu-btn { display: flex; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand img { margin: 0 auto 20px; }
    .social-links { justify-content: center; }

    .article-featured-image { height: 280px; }
    .article-body { padding: 30px; }
    .content-card { padding: 30px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .btn { padding: 14px 24px; font-size: 0.85rem; }
    .card-body { padding: 20px; }
    .card-title { font-size: 1.1rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header, .site-footer, .back-to-top, .btn, .pagination {
        display: none !important;
    }

    body { background: white; }
    .hero, .article-header { margin-top: 0; }
}
