/* Philly Born Green - Website Styles */
/* Eagles Colors: Midnight Green #004C54, Black #000000, Silver #A5ACAF, White #FFFFFF */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --eagles-green: #004C54;
    --eagles-green-dark: #003940;
    --eagles-black: #000000;
    --eagles-silver: #A5ACAF;
    --eagles-white: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

a {
    color: var(--eagles-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--eagles-green-dark);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--eagles-green) 0%, var(--eagles-green-dark) 100%);
    color: var(--eagles-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--eagles-white);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--eagles-silver);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--eagles-white);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

nav a:hover {
    color: var(--eagles-white);
    border-bottom-color: var(--eagles-silver);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,76,84,0.75), rgba(0,57,64,0.85)),
                url('https://static.clubs.nfl.com/image/upload/t_new_photo_album/eagles/rss9pqpvgiu1bijmcywo.png') center/cover no-repeat;
    color: var(--eagles-white);
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--eagles-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Articles Grid */
.articles-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.5rem;
    color: var(--eagles-green);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--eagles-green);
    display: inline-block;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Article Card */
.article-card {
    background: var(--eagles-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

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

.article-card .category {
    display: inline-block;
    background: var(--eagles-green);
    color: var(--eagles-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--text-primary);
}

.article-card h3 a:hover {
    color: var(--eagles-green);
}

.article-card .excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.article-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Featured Article */
.featured-article {
    background: var(--eagles-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    min-height: 350px;
}

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

.featured-article .category {
    display: inline-block;
    background: var(--eagles-green);
    color: var(--eagles-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
}

.featured-article h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-article .excerpt {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.featured-article .read-more {
    display: inline-block;
    background: var(--eagles-green);
    color: var(--eagles-white);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
    width: fit-content;
}

.featured-article .read-more:hover {
    background: var(--eagles-green-dark);
    color: var(--eagles-white);
}

/* Single Article Page */
.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
}

.article-header {
    margin-bottom: 30px;
    padding: 0 10px;
}

.article-header .category {
    display: inline-block;
    background: var(--eagles-green);
    color: var(--eagles-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-header .meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.article-featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--eagles-green);
}

.article-content blockquote {
    border-left: 4px solid var(--eagles-green);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Sidebar */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--eagles-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    color: var(--eagles-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--eagles-green);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--eagles-green);
    color: var(--eagles-white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background: var(--eagles-green-dark);
    color: var(--eagles-white);
}

/* Footer */
footer {
    background: var(--eagles-black);
    color: var(--eagles-silver);
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: var(--eagles-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--eagles-silver);
}

.footer-section a:hover {
    color: var(--eagles-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article img {
        min-height: 250px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.7rem;
    }

    .article-page {
        padding: 30px 25px;
    }

    .article-header {
        padding: 0 5px;
    }

    main {
        padding: 30px 25px;
    }
}

/* Category Colors */
.category.news { background: #0066cc; }
.category.draft { background: #00994d; }
.category.analysis { background: #cc6600; }
.category.roster { background: #9933cc; }
.category.gameday { background: #cc0033; }
.category.history { background: #666666; }
