/* ============================
   MIA KULIN — Styles
   ============================ */

:root {
    --bg: #0e0e18;
    --surface: #17172a;
    --text: #e8e8f0;
    --muted: #8a8aa0;
    --accent: #b07ce8;
    --accent-dim: rgba(176, 124, 232, 0.12);
    --border: rgba(255, 255, 255, 0.06);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-w: 960px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(14, 14, 24, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav__links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav__links a:hover { color: var(--text); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: 0.2s;
}

/* ===== HERO ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 5rem;
    position: relative;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.hero__content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 380px;
    font-weight: 300;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

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

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.btn--outline:hover {
    border-color: var(--muted);
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* ===== ABOUT ===== */
.about {
    border-top: 1px solid var(--border);
}

.about__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.about__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
}

.about__text p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about__socials {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.about__socials a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.about__socials a:hover { opacity: 0.7; }

/* ===== MUSIC ===== */
.music {
    border-top: 1px solid var(--border);
}

.music__bands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.band {
    background: var(--surface);
    padding: 1.75rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.band__label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.band h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.band p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.link--arrow {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.link--arrow:hover { text-decoration: underline; }

.setlist__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--muted);
}

.setlist__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.setlist__items span {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid rgba(176, 124, 232, 0.2);
    color: var(--text);
    padding: 0.45rem 1rem;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 400;
}

/* ===== LIVE ===== */
.live {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.live__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.live__text {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 450px;
    margin-top: 0.5rem;
    line-height: 1.7;
}

.live__links {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.live__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s;
}

.live__link:hover { border-color: var(--accent); }

.live__icon {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

/* ===== BOOKING ===== */
.booking {
    border-top: 1px solid var(--border);
}

.booking__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.booking__sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.7;
}

.booking__list {
    list-style: none;
    background: var(--surface);
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 0.5rem 0;
}

.booking__list li {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.booking__list li:last-child { border-bottom: none; }

/* ===== CONTACT ===== */
.contact {
    border-top: 1px solid var(--border);
}

.contact__sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact__form {
    max-width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__group--full { grid-column: 1 / -1; }

.form__group label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.75rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact__form .btn { grid-column: 1 / -1; justify-self: start; }

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

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.footer__links {
    display: flex;
    gap: 1.25rem;
}

.footer__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer__links a:hover { color: var(--text); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(14, 14, 24, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
    }
    .nav__links.active { display: flex; }
    .nav__toggle { display: flex; }

    .about__grid { grid-template-columns: 1fr; gap: 2rem; }
    .about__photo { max-width: 240px; }
    .music__bands { grid-template-columns: 1fr; }
    .live__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .live__links { flex-direction: column; width: 100%; }
    .live__link { width: 100%; }
    .booking__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact__form { grid-template-columns: 1fr; }

    .footer__inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero { min-height: 70vh; padding-bottom: 4rem; }
}
