/* style.css */
:root {
    --bg: #030303;
    --bg-soft: #0b0b0b;
    --card: rgba(255,255,255,0.04);
    --card-strong: rgba(255,255,255,0.07);
    --line: rgba(255,255,255,0.18);
    --line-strong: rgba(255,255,255,0.55);
    --text: #f7f7f7;
    --muted: #bfbfbf;
    --accent: #ffffff;
    --accent-strong: #ffffff;
    --white: #ffffff;
    --black: #000000;
    --max-width: 1180px;
    --radius: 4px;
    --shadow: 0 20px 60px rgba(0,0,0,0.75);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        linear-gradient(rgba(0,0,0,0.86), rgba(0,0,0,0.96)),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 0,
            rgba(255,255,255,0.035) 1px,
            transparent 1px,
            transparent 42px
        ),
        var(--bg);
}

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

img,
iframe {
    max-width: 100%;
    display: block;
    border: 0;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

section[id] {
    scroll-margin-top: 110px;
}

@media (max-width: 720px) {
    section[id] {
        scroll-margin-top: 170px;
    }
}

.section-tag,
.eyebrow,
.card-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--white);
    font-weight: 700;
}

h1, h2, h3, .logo-text { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }

h1 {
    font-size: clamp(3.4rem, 10vw, 7rem);
    line-height: 0.88;
    margin: 0rem 0 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.95;
    margin-top: 0.35rem;
}

h3 {
    font-size: 1.45rem;
}

p {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.94);
    border-bottom: 2px solid var(--white);
}

.nav-wrap,
.footer-wrap,
.main-nav {
    display: flex;
    align-items: center;
}

.nav-wrap,
.footer-wrap {
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: grayscale(100%) contrast(130%);
}

.logo-text {
    font-size: 1.7rem;
    line-height: 1;
}

.main-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover {
    color: #bdbdbd;
}

.nav-cta {
    padding: 0.72rem 1rem;
    border: 1px solid var(--white);
    border-radius: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.94)),
        url('band-hero.png') center/cover;
    opacity: 1;
    filter: grayscale(100%) contrast(140%);
}

@media (max-width: 720px) {
    .hero-overlay {
        background:
            linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.94)),
            url('band-hero-mobile.jpg') center top / cover;
    }
}

.hero-grid,
.section-grid,
.section-head,
.contact-box,
.card-footer,
.tour-item {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 1.25fr 0.8fr;
    align-items: center;
    padding: 6rem 0;
}

.hero-text {
    max-width: 58ch;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-secondary,
.btn-small {
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn-secondary:hover,
.btn-small:hover {
    background: var(--white);
    color: var(--black);
}

.btn-small {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.hero-card,
.video-card,
.merch-card,
.contact-box,
.quote-box {
    background: rgba(0,0,0,0.72);
    border: 1px solid var(--white);
    border-radius: 0;
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 2rem;
    border-left: 6px solid var(--white);
}

.hero-card ul {
    list-style: none;
    margin: 1rem 0 1.2rem;
}

.hero-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: var(--muted);
}

.section-grid,
.section-head,
.contact-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.quote-band {
    padding-top: 0;
}

.quote-box {
    padding: 2rem;
    border-left: 6px solid var(--white);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08), transparent 55%),
        rgba(0,0,0,0.78);
}

.quote-box p {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.video-grid,
.merch-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card,
.merch-card {
    overflow: hidden;
    background: #090909;
}

.video-frame {
    aspect-ratio: 16 / 9;
    background: #000;
    border-bottom: 1px solid var(--white);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 1.4rem;
}

.card-content p {
    margin-top: 0.4rem;
}

.merch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merch-image {
    min-height: 220px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.7)),
        repeating-linear-gradient(
            -12deg,
            #111 0,
            #111 8px,
            #000 8px,
            #000 18px
        );
    color: var(--white);
    font-family: 'Metal Mania', cursive;
    font-size: 2rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--white);
}

.card-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 1rem;
}

.card-footer span {
    font-weight: 700;
    color: var(--white);
}

.tour-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.tour-item {
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    padding: 1.2rem 1.4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-left: 6px solid var(--white);
    border-radius: 0;
}

.tour-date {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem;
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.contact-box {
    padding: 2rem;
    border-top: 1px solid var(--white);
}

.contact-info {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.contact-info a {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-left: 6px solid var(--white);
    border-radius: 0;
    background: rgba(255,255,255,0.02);
}

.site-footer {
    border-top: 2px solid var(--white);
    padding: 1rem 0;
    background: #000;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero-grid,
    .section-grid,
    .section-head,
    .contact-box,
    .video-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .nav-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 1rem 0;
    }

    .main-nav {
        justify-content: center;
    }

    .logo-img {
        width: 56px;
        height: 56px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.8rem);
    }

    .section {
        padding: 4rem 0;
    }

    .hero-grid {
        padding: 4.5rem 0;
    }

    .hero-card,
    .contact-box,
    .quote-box,
    .card-content {
        padding: 1.2rem;
    }

    .merch-image {
        min-height: 180px;
    }

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

.cookie-banner {
    position: fixed;
    inset: auto 20px 20px 20px;
    max-width: 520px;
    z-index: 9999;
    background: #000;
    border: 2px solid #fff;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.7);
}

.cookie-banner h3 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.cookie-banner p {
    margin-bottom: 1rem;
    color: #bfbfbf;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-buttons button {
    cursor: pointer;
    border: 1px solid #fff;
    background: #000;
    color: #fff;
    padding: .8rem 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.cookie-buttons button:hover {
    background: #fff;
    color: #000;
}

.cookie-hidden {
    display: none;
}

.cookie-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-branding {
    display: flex;
    align-items: center;
    gap: 0.6rem;

    margin-top: 1.5rem;
    padding-top: 1rem;

    border-top: 1px solid rgba(255,255,255,0.12);
	
	justify-content: flex-end;
}

.cookie-provider {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: var(--muted);
    opacity: 0.7;
    white-space: nowrap;
}

.cookie-logo {
    width: auto;
    height: 14px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
	filter: invert(0.75);
	opacity: 0.7;
}

.cookie-links {
    margin-bottom: 1rem;
}

.cookie-links a {
    color: #fff;
    text-decoration: underline;
}

.cookie-links a:hover {
    opacity: .8;
}

.youtube-consent-box {
    position: relative;
}

.youtube-consent-box iframe {
    width: 100%;
    height: 100%;
}

.youtube-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
}

.youtube-placeholder p {
    max-width: 38ch;
    margin: 0 auto;
}

.youtube-accept-btn {
    cursor: pointer;
    justify-self: center;
    padding: 0.8rem 1.1rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.youtube-accept-btn:hover {
    background: #fff;
    color: #000;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-field label {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.85rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: #000;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--white);
}

.form-field textarea {
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-message {
    margin-top: 0.5rem;
    color: var(--white);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.developer-logo-link {
    display: flex;
    align-items: center;
    opacity: 0.75;
    transition: opacity .25s ease, transform .25s ease;
}

.developer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;

    filter:
        invert(1)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border: 1px solid var(--white);

    filter: grayscale(100%) contrast(125%);

    transition:
        transform .3s ease,
        filter .3s ease,
        opacity .3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    filter: grayscale(100%) contrast(140%);
}

.gallery-landscape {
    grid-column: span 4;
    aspect-ratio: 16 / 9;
}

.gallery-portrait {
    grid-column: span 4;
    aspect-ratio: 3 / 4;
}

@media (max-width: 980px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-landscape,
    .gallery-portrait {
        grid-column: auto;
    }
}

@media (max-width: 720px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-landscape {
        aspect-ratio: 16 / 9;
    }

    .gallery-portrait {
        aspect-ratio: 3 / 4;
    }
}

.spotify-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;

    padding: 2rem;
    background: rgba(0,0,0,0.78);
    border: 1px solid var(--white);
    border-left: 6px solid var(--white);
    box-shadow: var(--shadow);
}

.spotify-btn {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotify-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .spotify-box {
        padding: 1.2rem;
    }
}

.album-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.album-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;

    padding: 1.5rem;
    background: rgba(0,0,0,0.72);
    border: 1px solid var(--white);
    border-left: 6px solid var(--white);
    box-shadow: var(--shadow);
}

.album-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.album-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border: 1px solid var(--white);
    filter: grayscale(100%) contrast(125%);
}

.album-images img:first-child {
    grid-row: span 2;
    aspect-ratio: 1 / 1;
}

.album-images img:not(:first-child) {
    aspect-ratio: 16 / 9;
}

.album-content {
    display: grid;
    gap: 1rem;
}

.album-content h3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.album-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 980px) {
    .album-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .album-card {
        padding: 1.2rem;
    }

    .album-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .album-images img:first-child,
    .album-images img:not(:first-child) {
        aspect-ratio: 16 / 9;
    }

    .album-content h3 {
        font-size: 2rem;
    }
}