/* ======================================================
   AB$ Music Group Stylesheet
   Mobile First + Media Queries + Clean Layout
   ====================================================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.6;
    background: #0b0b0b;
    color: #f2f2f2;
}

/* ================= HEADER ================= */

.site-header {
    padding: 16px;
    border-bottom: 2px solid #b30000;
}

.brand {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 90px; /* FIXED: no huge logo */
    height: auto;
    border-radius: 12px;
}

.brand-text h1 {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
    text-align: center;
}

.tagline {
    margin: 4px 0 0;
    color: #ccc;
    text-align: center;
}

/* ================= NAV ================= */

.site-nav {
    background: #121212;
    padding: 16px;
    border-bottom: 1px solid #333;
}

/* REMOVE BULLETS */
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column; /* MOBILE STACK */
    align-items: center;
    gap: 12px;
}

.site-nav li {
    margin: 0;
}

.site-nav a {
    display: block;
    min-width: 140px;
    padding: 12px 18px;

    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #333;

    color: white;
    font-family: "Montserrat", Arial, sans-serif;
    text-align: center;

    background: #1a1a1a;
}

/* ACTIVE PAGE */
.site-nav a.active {
    background: #b30000;
}

/* HOVER (required for lab) */
.site-nav a:hover {
    background: #7a0000;
}

/* ================= LAYOUT ================= */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px;
}

.card {
    background: #141414;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 14px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* ================= IMAGES ================= */

.feature-image,
.card img {
    width: 100%;
    max-width: 100%;
    height: auto;

    border-radius: 12px;
    display: block;
    margin-bottom: 12px;
}

/* ================= BUTTON ================= */

.tel-link {
    display: inline-block;
    padding: 10px 14px;
    background: #b30000;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* ================= FOOTER ================= */

.site-footer {
    text-align: center;
    padding: 16px;
    border-top: 1px solid #333;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

/* HIDDEN CONTENT (mobile first) */
.desktop-only,
.tablet-desktop-only {
    display: none;
}

/* ======================================================
   TABLET VIEW (768px+)
   ====================================================== */

@media (min-width: 768px) {

    .brand {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .logo {
        width: 110px;
    }

    /* NAV SIDEWAYS FIX */
    .site-nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
    }

    .site-nav a {
        width: auto;
    }

    /* GRID EXPANDS */
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tablet-desktop-only {
        display: block;
    }
}

/* ======================================================
   DESKTOP VIEW (1024px+)
   ====================================================== */

@media (min-width: 1024px) {

    /* GRADIENT (required) */
    body {
        background: linear-gradient(to right, #0b0b0b, #1a1a1a);
    }

    .home-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }

    .desktop-only {
        display: block;
    }

    .card {
        box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
}

/* ======================================================
   LARGE DESKTOP (1440px+)
   ====================================================== */

@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* ======================================================
   PRINT STYLES
   ====================================================== */

@media print {

    body {
        background: white;
        color: black;
        font-family: Georgia, serif;
    }

    .site-nav,
    .site-footer {
        display: none;
    }

    .card {
        background: white;
        color: black;
        border: 1px solid black;
        box-shadow: none;
    }
}