/* --- RESET & FONTS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000; /* True Black */
    color: #e0e0e0; /* Off-White for text readability */
}

/* --- COLORS --- */
:root {
    --eagles-green: #004C54;
    --eagles-silver: #A5ACAF;
    --phillies-red: #E81828;
    --phillies-blue: #002D72;
    --dark-grey: #121212;
    --flyers-orange: #F74902; /* Added for Bullying Works/Gritty vibes */
}

/* --- LAYOUT UTILS --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION --- */
.hero-section {
    height: 65vh; /* Made slightly taller to fit tabs */
    background-image: url('hero.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for better text contrast */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px var(--eagles-green);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--eagles-silver);
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- NAVIGATION TABS (NEW) --- */
.nav-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allows tabs to stack on mobile phones */
    justify-content: center;
    margin-top: 20px;
}

.nav-tab {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Team Specific Hover Effects */
.tab-phils:hover {
    background-color: var(--phillies-red);
    border-color: var(--phillies-red);
    box-shadow: 0 0 15px rgba(232, 24, 40, 0.5);
}

.tab-birds:hover {
    background-color: var(--eagles-green);
    border-color: var(--eagles-green);
    box-shadow: 0 0 15px rgba(0, 76, 84, 0.5);
}

.tab-bully:hover {
    background-color: var(--flyers-orange); /* Orange for Gritty/Flyers energy */
    border-color: var(--flyers-orange);
    color: black; /* Black text on orange looks better */
    box-shadow: 0 0 15px rgba(247, 73, 2, 0.5);
}

/* --- SECTIONS --- */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
    border-left: 6px solid var(--eagles-green);
    padding-left: 20px;
    text-transform: uppercase;
}

/* --- CARDS --- */
.card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--eagles-silver);
}

.card-image-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.green-tag { background-color: var(--eagles-green); color: white; }
.red-tag { background-color: var(--phillies-red); color: white; }
.silver-tag { background-color: var(--eagles-silver); color: black; }

.card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: white;
}

.card .date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.read-more {
    color: var(--phillies-red);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 0;
    background-color: #000;
    color: #666;
    border-top: 1px solid #333;
}

/* --- MOBILE --- */
@media (max-width: 600px) {
    .brand-name { font-size: 2.2rem; }
    .hero-section { height: 60vh; }
    .nav-tabs { gap: 10px; }
    .nav-tab { padding: 8px 12px; font-size: 0.8rem; }
}