/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background-color: #0a0a0a;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #4dabf7;
}

.nav-links a.active {
    color: #4dabf7;
    border-bottom: 2px solid #4dabf7;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #a0a0a0;
}

.cta-button {
    display: inline-block;
    background-color: #4dabf7;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #339af0;
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dark-mode .article-card {
    border-color: #333;
    background-color: #1a1a1a;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.dark-mode .meta {
    color: #a0a0a0;
}

.article-excerpt {
    color: #444;
    margin-bottom: 1rem;
}

.dark-mode .article-excerpt {
    color: #c0c0c0;
}

.article-link {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 600;
}

.article-link:hover {
    text-decoration: underline;
}

/* ===== FEATURED ARTICLE ===== */
.featured-article {
    padding: 3rem 0;
}

.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
}

.dark-mode .featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #4dabf7;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== PAGE LAYOUTS ===== */
.page-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    margin: 3rem 0 1rem;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ===== EVENTS PAGE ===== */
.events-calendar {
    margin: 3rem 0;
}

.event-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: background-color 0.2s;
}

.dark-mode .event-card {
    border-color: #333;
}

.event-card:hover {
    background-color: #f8f9fa;
}

.dark-mode .event-card:hover {
    background-color: #2a2a2a;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.event-details {
    flex: 1;
}

.event-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.event-game, .event-location, .event-type {
    background-color: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: #444;
}

.dark-mode .event-game,
.dark-mode .event-location,
.dark-mode .event-type {
    background-color: #333;
    color: #c0c0c0;
}

.event-description {
    margin-bottom: 1rem;
    color: #444;
}

.dark-mode .event-description {
    color: #c0c0c0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.dark-mode .contact-form input,
.dark-mode .contact-form select,
.dark-mode .contact-form textarea {
    background-color: #1a1a1a;
    border-color: #444;
    color: #e0e0e0;
}

.submit-button {
    background-color: #4dabf7;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #339af0;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #0a0a0a;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: #a0a0a0;
    text-decoration: none;
}

.footer-nav a:hover {
    color: white;
}

.disclaimer {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.copyright {
    color: #666;
    font-size: 0.875rem;
}

/* ===== UTILITY CLASSES ===== */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid #4dabf7;
    color: #4dabf7;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

.view-all-button:hover {
    background-color: #4dabf7;
    color: white;
}

.newsletter-cta {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.dark-mode .newsletter-cta {
    background-color: #1a1a1a;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dark-mode .newsletter-form input {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.success-message {
    background-color: #40c057;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}