@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600&display=swap');

:root {
    --bg: #111111;
    --accent: #c5a26f;
    --card: #1a1a1a;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg);
    color: #ddd;
    line-height: 1.6;
}

/* ——— Nav ——— */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 100;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(8px);
}

.nav-brand {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* ——— Hero ——— */
header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    text-align: center;
}

.header-content {
    text-align: center;
}

.logo {
    width: 512px;
    max-width: 85%;
}

.hero-tagline-wrap {
    margin-top: 1.5rem;
}

.hero-tagline {
    color: var(--accent);
    letter-spacing: 4px;
    font-size: 1rem;
}

/* ——— Sections ——— */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section--alt {
    background: var(--card);
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.6rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.description {
    font-size: 1.15rem;
    max-width: 800px;
    color: #bbb;
}

.section-lead {
    max-width: 680px;
    color: #999;
}

.section-lead--booking {
    max-width: 620px;
    margin-bottom: 2rem;
    color: #aaa;
}

.band-photo {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    display: block;
    border: 8px solid #222;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* ——— Merch ——— */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.merch-card {
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-8px);
}

.merch-image {
    height: 220px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.merch-image--dark {
    background: #1f1f1f;
}

.merch-image img {
    max-height: 180px;
    max-width: 80%;
}

.merch-info {
    padding: 1.25rem;
}

.merch-info h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.price {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.buy-btn {
    width: 100%;
    padding: 10px;
    background: #222;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.buy-btn:hover {
    background: var(--accent);
    color: #111;
}

.buy-btn--flash {
    background: var(--accent);
    color: #111;
}

/* ——— Booking ——— */
.booking-form {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
}

.booking-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--accent);
    color: #111;
    padding: 14px 40px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-submit:hover {
    background: #d4b17f;
    transform: translateY(-2px);
}

.success-message {
    display: none;
    background: #1f2a1f;
    color: #9ed99e;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.success-message.is-visible {
    display: block;
}

.is-hidden {
    display: none !important;
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* ——— Shows ——— */
.show-card {
    background: var(--card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .show-card {
        flex-direction: row;
    }
}

.show-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .show-image {
        width: 280px;
        height: auto;
    }
}

/* Paths relative to /css/ */
.show-image--wucan {
    background-image: url('../assets/wucan-duebel-band.jpg');
}

.show-image--fvzz {
    background-image: url('../assets/fvzz-pipuli-duebel-band.jpg');
}

.show-image--woolf {
    background-image: url('../assets/woolf-mountan-duebel-band.jpg');
}

.show-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-header {
    margin-bottom: 1rem;
}

.show-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.25rem;
}

.show-meta {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.show-details {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ——— Buttons ——— */
.btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background: #222;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
}

/* ——— Release / Music ——— */
.release-card {
    background: var(--card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .release-card {
        grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
        align-items: start;
    }
}

/* Always square — never stretch with text height */
.release-cover {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #0d2a2f;
    align-self: start;
}

@media (min-width: 768px) {
    .release-cover {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

.release-body {
    padding: 1.5rem 1.5rem 1.75rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .release-body {
        padding: 1.75rem 2rem;
        align-self: stretch;
    }
}

@media (max-width: 767px) {
    .release-meta li {
        flex-direction: column;
        gap: 0.15rem;
    }

    .release-meta strong {
        min-width: 0;
    }

    .release-body {
        padding: 1.35rem 1.25rem 1.5rem;
    }
}

.release-kicker {
    color: var(--accent);
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.release-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: white;
    line-height: 1.05;
    margin-bottom: 0.35rem;
}

.release-subtitle {
    color: #bbb;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.release-meta {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    color: #aaa;
    font-size: 0.98rem;
    margin: 0;
    padding: 0;
}

.release-meta li {
    display: flex;
    gap: 0.65rem;
    align-items: baseline;
}

.release-meta strong {
    color: white;
    font-weight: 600;
    min-width: 7.5rem;
}

.release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.presave-hint {
    margin-top: 0.75rem;
    color: #777;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 34rem;
}

.music-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.music-links-label {
    color: #777;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: -0.25rem;
}
