@import url("variables.css");
/* ========================================== LARGE DESKTOP (1400px+) ========================================== */
@media (min-width:1400px) {
    .container {
        width: min(88%, 1400px);
    }

    .hero .content {
        max-width: 1000px;
    }
}

/* ========================================== LAPTOP (1200px) ========================================== */
@media (max-width:1200px) {

    .about-grid,
    .contact-grid {
        gap: 3rem;
    }
}

/* ========================================== TABLET ========================================== */
@media (max-width:900px) {
    html {
        scroll-snap-type: none;
    }

    body {
        font-size: 16px;
    }

    section {
        min-height: 100vh;
        padding: 6rem 0;
    }

    .hero {
        min-height: 100vh;
        padding: 8rem 0 6rem;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 16vw, 5rem);
        letter-spacing: .12em;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 280px;
        justify-content: center;
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gig {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    table {
        display: block;
        overflow-x: auto;
    }
}

/* ========================================== PHONE ========================================== */
@media (max-width:600px) {
    .container {
        width: 92%;
    }

    p {
        font-size: 1rem;
    }

    blockquote {
        font-size: 1.2rem;
        padding-left: 1rem;
    }

    .socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .embed iframe {
        min-height: 220px;
    }

    .ticket {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .release-links {
        justify-items: center;
    }
}

/* ========================================== SMALL PHONE ========================================== */
@media (max-width:400px) {
    .hero h1 {
        letter-spacing: .08em;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav {
        height: 70px;
    }

    .site-header {
        height: 70px;
    }
}

/* ========================================== TOUCH DEVICES ========================================== */
@media (hover:none) {

    .card:hover,
    .gallery-item:hover img,
    .btn:hover {
        transform: none;
    }
}

/* ========================================== LANDSCAPE PHONES ========================================== */
@media (max-height:600px) and (orientation:landscape) {
    .hero {
        min-height: 120vh;
    }
}

/* ========================================== PRINT ========================================== */
@media print {

    nav,
    footer,
    .btn,
    .menu-toggle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

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

body.menu-open {
    overflow: hidden;
}