/* ============================================
   TUONELA - Black Metal | Uppsala, Sweden
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --grey-dark: #1a1a1a;
    --grey: #333333;
    --grey-light: #888888;
    --white: #cccccc;
    --white-bright: #e0e0e0;
    --accent: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
}

/* ---- HERO ---- */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    background-image: url('assets/images/convictions-decay-artwork.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.05));
}

.tagline {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 2.5rem;
}

.nav {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--grey-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--white-bright);
}

/* ---- SECTIONS ---- */

section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--grey-light);
    margin-bottom: 3rem;
    text-align: center;
}

/* ---- MUSIC ---- */

#music {
    border-top: 1px solid var(--grey-dark);
}

.music-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.artwork img {
    width: 100%;
    height: auto;
    display: block;
}

.release-info h3 {
    font-size: 1.6rem;
    color: var(--white-bright);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.release-meta {
    font-size: 0.9rem;
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.release-desc {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.bandcamp-embed {
    border: 0;
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 2rem;
    border: 1px solid var(--grey);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn:hover {
    border-color: var(--white-bright);
    color: var(--white-bright);
}

/* ---- ABOUT ---- */

#about {
    border-top: 1px solid var(--grey-dark);
}

.about-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.2rem;
}

.about-content strong {
    color: var(--white-bright);
}

/* ---- CONTACT ---- */

#contact {
    border-top: 1px solid var(--grey-dark);
    text-align: center;
}

.contact-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.contact-links a {
    color: var(--grey-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--white-bright);
}

/* ---- FOOTER ---- */

footer {
    border-top: 1px solid var(--grey-dark);
    text-align: center;
    padding: 2rem;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 680px) {
    .music-content {
        grid-template-columns: 1fr;
    }

    .artwork {
        max-width: 350px;
        margin: 0 auto;
    }

    .release-info {
        text-align: center;
    }

    section {
        padding: 3.5rem 1.5rem;
    }

    .logo {
        max-width: 320px;
    }

    .nav {
        gap: 1.5rem;
    }
}
