/**
 * Responsive Styles - Mobile First
 */

/* ========================================
   MOBILE (default, 320px+)
   ======================================== */

/* Base mobile styles are in main.css and component files */

/* ========================================
   SMALL DEVICES (640px+)
   ======================================== */
@media (min-width: 640px) {
    /* Typography adjustments */
    .section-title {
        font-size: 2rem;
    }

    /* Hero */
    .hero__title {
        font-size: 2.75rem;
    }
}

/* ========================================
   TABLETS (768px+)
   ======================================== */
@media (min-width: 768px) {
    /* Section spacing */
    .section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* Hero */
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    /* Match section */
    .match-section__heading {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer {
        padding-top: 5rem;
    }
}

/* ========================================
   DESKTOP SMALL (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    /* Container */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    /* Intro */
    .intro__quote {
        font-size: 2rem;
    }

    /* Cards */
    .card__title {
        font-size: 1.375rem;
    }

    /* Navigation (handled in _navigation.css) */
}

/* ========================================
   DESKTOP LARGE (1280px+)
   ======================================== */
@media (min-width: 1280px) {
    /* Container max-width */
    .container {
        max-width: 1280px;
    }

    /* Hero */
    .hero__title {
        font-size: 4rem;
    }

    /* Section titles */
    .section-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   MOBILE SPECIFIC ADJUSTMENTS (< 768px)
   ======================================== */
@media (max-width: 767px) {
    /* Reduce section padding on small screens */
    .section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Stack grid items */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Hero stats horizontal scroll if needed */
    .hero__stats {
        gap: 1.5rem;
    }

    .hero__stat-value {
        font-size: 1.5rem;
    }

    /* Match card adjustments */
    .match-card__teams {
        gap: 1rem;
    }

    .match-card__team-logo {
        width: 3rem;
        height: 3rem;
    }

    .match-card__team-name {
        font-size: 0.75rem;
    }

    .match-card__vs {
        font-size: 1rem;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .footer,
    .hero__scroll,
    .btn,
    .mobile-overlay {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
