/* ======================================================
   AB$ Music Group Stylesheet
   Mobile Optimized with Comments
   ====================================================== */

* {
    box-sizing: border-box; /* Prevents layout overflow */
}

body {
    margin: 0;
    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;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 110px;
    height: auto;
    border-radius: 16px; /* Rounded corner element */
}

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

.tagline {
    margin: 4px 0 0;
    color: #cccccc;
}

/* Navigation */
.site-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Prevents horizontal scrolling */
    padding: 12px;
    background: #121212;
}

.site-nav a {
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 10px; /* Rounded corner element */
    border: 1px solid #333;
    color: white;
    font-family: "Montserrat", Arial, sans-serif;
}

.site-nav a.active {
    background: #b30000;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px;
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

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

/* ======================================================
   MOBILE STYLES
   Applies when screen width is 768px or smaller
   Hides nonessential content and stacks layout
   ====================================================== */

@media (max-width: 768px) {

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

    .logo {
        width: 140px;
    }

    .grid {
        grid-template-columns: 1fr; /* Stack layout */
    }

    .site-nav a {
        width: 100%;
        text-align: center;
    }

    .nonessential {
        display: none; /* Hide extra content on mobile */
    }
}