/* ===== VARIABLES & BASE STYLES ===== */
:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --border-color: #222;
    --text-color: #e0e0e0;
    --text-muted: #999;
    --neon-green: #90ff00; /* Matching the MLB bright green */
    --neon-hover: #a5ff33;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.italic { font-style: italic; }
.bold-text { font-weight: 800; }

.neon-text {
    color: var(--neon-green);
}
.white-text {
    color: #fff;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
    border: 2px solid var(--neon-green);
}

.btn-primary:hover {
    background-color: var(--neon-hover);
    border-color: var(--neon-hover);
    box-shadow: 0 0 15px rgba(144, 255, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #555;
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Placeholders */
.image-placeholder {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 800;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.social-icons .icon {
    margin-left: 15px;
    font-size: 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    font-style: italic;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
}

.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ===== SOCIAL PROOF ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.stat-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.signature {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: 'Brush Script MT', cursive;
    font-size: 3rem;
    color: #fff;
    transform: rotate(-10deg);
}

/* ===== WHAT YOU'LL FIND HERE ===== */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.card.full-width {
    grid-column: span 2;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
}

/* ===== FEATURED VIDEOS ===== */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--neon-green);
    color: #000;
    border-color: var(--neon-green);
}

.video-grid, .article-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card, .article-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    height: 200px;
    border-radius: 0;
}

.video-card h4, .article-card p {
    padding: 15px 15px 5px;
    color: #fff;
}

.video-card p {
    padding: 0 15px 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.view-all {
    display: inline-block;
    color: var(--neon-green);
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== ARTICLES ===== */
.article-grid {
    grid-template-columns: repeat(4, 1fr);
}

.article-placeholder {
    height: 180px;
    border-radius: 0;
}

.read-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== JOURNEY TIMELINE ===== */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 30px;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 120px;
}

.node {
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== BRANDS ===== */
.brands-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: #555;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-logo:hover {
    color: #fff;
}

/* ===== COMMUNITY ===== */
.community-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.community-content {
    flex: 1;
}

.community-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.community-images {
    flex: 1;
}

.community-placeholder {
    height: 400px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    margin: 0 auto 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0;
}

.testimonial-card .role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: normal;
}

/* ===== COLLABORATIONS ===== */
.collaborations-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.collab-content {
    flex: 1;
}

.collab-list {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.collab-list li {
    color: var(--text-muted);
}

.collab-image {
    flex: 1;
}

.collab-placeholder {
    height: 400px;
}

/* ===== NEWSLETTER ===== */
.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.newsletter-content {
    flex: 2;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-green);
}

.newsletter-icon {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.envelope-icon {
    font-size: 8rem;
    opacity: 0.5;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 20px;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

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

.footer-links a, .footer-links p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: #555;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-container, .about-container, .community-container, .collaborations-container, .newsletter-container {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .stats-grid, .video-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .timeline::before {
        top: 0;
        left: 28px;
        width: 2px;
        height: 100%;
    }
    
    .timeline-item {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .node {
        margin: 0 20px 0 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile nav hide */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid, .grid-layout, .video-grid, .article-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .card.full-width {
        grid-column: span 1;
    }
    
    .collab-list {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
