/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --warrior-blue: #003d82;
    --warrior-red: #DC143C;
    --dark-blue: #002855;
    --light-blue: #4A90E2;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    line-height: 1.3;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--warrior-blue);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.site-title h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--warrior-red);
    font-weight: 300;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--warrior-red);
    border-bottom-color: var(--warrior-red);
}

/* Breaking News Banner */
.breaking-news {
    background: linear-gradient(135deg, var(--warrior-red), #B22222);
    padding: 12px 0;
    color: var(--white);
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.breaking-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 4px 10px;
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 3px;
}

.breaking-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background-color: var(--bg-light);
}

/* Featured Article */
.featured-section {
    margin-bottom: 50px;
}

.featured-article {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    background: linear-gradient(135deg, var(--warrior-blue), var(--light-blue));
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin: 15px 0 10px 0;
}

/* Category Labels */
.category {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category.sports {
    background-color: #E74C3C;
    color: var(--white);
}

.category.academics {
    background-color: var(--warrior-blue);
    color: var(--white);
}

.category.arts {
    background-color: #9B59B6;
    color: var(--white);
}

.category.community {
    background-color: #27AE60;
    color: var(--white);
}

.category.environment {
    background-color: #16A085;
    color: var(--white);
}

/* Article Meta */
.article-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 10px 0;
}

.article-excerpt {
    margin: 15px 0;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Read More Link */
.read-more {
    color: var(--warrior-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--light-blue);
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--warrior-red);
    display: inline-block;
}

/* News Grid */
.news-grid {
    margin-bottom: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--light-blue), var(--warrior-gold));
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin: 12px 0 8px 0;
}

.card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 12px 0;
}

/* Opinion Section */
.opinion-section {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.opinion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.opinion-card {
    padding: 25px;
    border-left: 4px solid var(--warrior-red);
    background: var(--bg-light);
    border-radius: 4px;
}

.opinion-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.opinion-card p {
    color: var(--text-light);
    margin: 10px 0;
    line-height: 1.7;
}

/* Events Section */
.events-section {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.events-list {
    display: grid;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    align-items: center;
    transition: background 0.3s ease;
}

.event-item:hover {
    background: #E8EDF3;
}

.event-date {
    background: var(--warrior-blue);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.event-date .month {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.event-details h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--warrior-red);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-column p {
    color: #B8C5D6;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #B8C5D6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--warrior-red);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    padding: 8px 16px;
    background: var(--warrior-blue);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.social-icon:hover {
    background: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #B8C5D6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        justify-content: center;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 300px;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .site-title h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .main-nav ul {
        gap: 15px;
        font-size: 0.85rem;
    }

    .featured-content {
        padding: 25px;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .breaking-news .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations */
@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Full Article Styles */
.full-article {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin: 15px 0 10px 0;
    line-height: 1.2;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 2px solid var(--warrior-red);
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--warrior-blue);
    margin: 30px 0 15px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 20px 0 20px 40px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--warrior-red);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--bg-light);
    font-style: italic;
    border-radius: 4px;
}

.article-body blockquote p {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.article-body blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.article-body strong {
    color: var(--warrior-blue);
    font-weight: 700;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.back-link {
    color: var(--warrior-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--light-blue);
}

@media (max-width: 768px) {
    .full-article {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-hero-image {
        height: 250px;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body .lead {
        font-size: 1.1rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.2rem;
    }
}
