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

:root {
    --bg: hsl(230, 25%, 8%);
    --fg: hsl(40, 20%, 90%);
    --primary: hsl(15, 80%, 65%);
    --primary-fg: hsl(230, 25%, 8%);
    --card: hsl(230, 20%, 12%);
    --muted: hsl(230, 15%, 55%);
    --border: hsl(230, 20%, 18%);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(230, 25%, 8%, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fg);
    cursor: pointer;
    font-size: 1.5rem;
}

.nav-mobile {
    display: none;
    border-top: 1px solid var(--border);
    background: hsla(230, 25%, 8%, 0.95);
}

.nav-mobile a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.nav-mobile a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-mobile.open {
        display: block;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(230, 25%, 8%, 0.7), hsla(230, 25%, 8%, 0.5), var(--bg));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 56rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .text-gradient {
    background: linear-gradient(135deg, hsl(15, 80%, 65%), hsl(25, 90%, 75%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: hsla(40, 20%, 90%, 0.8);
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    font-style: italic;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-fg);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 6rem;
    }
}

/* SECTION */
.section {
    padding: 6rem 0;
}

.section-fade {
    background: linear-gradient(180deg, var(--bg) 0%, var(--card) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .highlight {
    color: var(--primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ABOUT */
.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-grid h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.about-grid p {
    font-size: 1.125rem;
    color: hsla(40, 20%, 90%, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-logo {
    display: flex;
    justify-content: center;
}

.about-logo div {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 24rem;
    box-shadow: 0 0 40px -10px hsla(15, 80%, 65%, 0.4);
}

/* MUSICIANS */
.musicians-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .musicians-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .musicians-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.musician-card .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 3/4;
    margin-bottom: 1rem;
}

.musician-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.musician-card:hover img {
    transform: scale(1.05);
}

.musician-card .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(230, 25%, 8%, 0.9), transparent, transparent);
}

.musician-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.musician-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.musician-card .role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.musician-card .desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-grid .featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid div {
    overflow: hidden;
    border-radius: 0.75rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* CONTACT */
.contact {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.contact p {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.btn-primary svg {
    display: inline;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    text-decoration: none;
    color: white;
    background: #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
