/* Spill The Tea - Main Stylesheet */

:root {
    /* Colors */
    --color-primary: #1a1a1a;
    --color-secondary: #f4f4f4;
    --color-accent: #D4AF37; /* Gold for premium feel */
    --color-accent-hover: #b5952f;
    --color-text-main: #2c2c2c;
    --color-text-muted: #666666;
    --color-background: #ffffff;
    --color-surface: #fafafa;
    --color-border: #e0e0e0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif; /* Classic news feel */
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--color-accent);
}

/* Header */
.site-header {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo a {
    display: block;
}

.logo img {
    height: 50px; /* Adjust height as needed to fit header */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-surface);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.hero-image img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Hard News Grid */
.news-section {
    padding: var(--spacing-lg) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.news-card {
    background: white;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: var(--spacing-sm);
}

.news-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Editorials */
.editorials-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-primary);
    color: white;
}

.editorials-section h2 {
    color: white;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.editorial-card {
    padding: var(--spacing-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background-color var(--transition-fast);
}

.editorial-card:hover {
    background-color: rgba(255,255,255,0.05);
}

.author-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Video Section */
.video-section {
    padding: var(--spacing-lg) 0;
}

.video-showcase {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
    color: white;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* Footer */
.site-footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-col h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #a0a0a0;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .editorial-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform var(--transition-smooth);
        gap: 1rem;
        z-index: 900;
        text-align: center;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .news-card {
        max-width: 100%;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background-color: #2c3e50;
    color: white;
    margin-top: 4rem;
}

.newsletter-container {
    display: flex;
    justify-content: center;
}

.newsletter-content {
    max-width: 600px;
    text-align: center;
    width: 100%;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
