* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #030303;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   CINEMATIC INTRO
========================= */

#intro {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background:
        radial-gradient(circle at center, #250000 0%, #080000 30%, #000 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    transition: opacity 1.3s ease, visibility 1.3s ease;
}

.intro-content {
    padding: 25px;
}

.intro-mark {
    color: #9b0000;
    font-size: 25px;
    display: block;
    margin-bottom: 25px;
    opacity: 0;
    animation: introFade 1.5s forwards;
}

.scar-text {
    color: #777;
    font-size: 12px;
    letter-spacing: 6px;
    opacity: 0;
    animation: introFade 1.5s 0.5s forwards;
}

.intro-logo {
    font-size: clamp(70px, 15vw, 160px);
    font-weight: 900;
    letter-spacing: 15px;
    color: #a00000;
    margin: 25px 0;
    text-shadow: 0 0 50px rgba(180, 0, 0, 0.6);
    opacity: 0;
    animation: introFade 1.8s 1.5s forwards;
}

.red-line {
    width: 0;
    height: 1px;
    background: #8b0000;
    margin: 0 auto 25px;
    animation: lineGrow 1.5s 2.5s forwards;
}

.intro-quote {
    color: #999;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 3px;
    opacity: 0;
    animation: introFade 1.5s 3s forwards;
}

#enter-btn {
    margin-top: 45px;
    padding: 16px 35px;
    background: transparent;
    color: white;
    border: 1px solid #8b0000;
    letter-spacing: 4px;
    cursor: pointer;
    opacity: 0;
    animation: introFade 1.5s 4s forwards;
    transition: 0.4s;
}

#enter-btn:hover {
    background: #8b0000;
    box-shadow: 0 0 40px rgba(180, 0, 0, 0.5);
    transform: translateY(-4px);
}

.intro-hidden {
    opacity: 0;
    visibility: hidden;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.nav-logo {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 4px;
}

.nav-logo span,
footer h2 span {
    color: #a00000;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 3px;
    color: #aaa;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #a00000;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background:
        radial-gradient(circle at center, rgba(100,0,0,0.3), transparent 45%),
        linear-gradient(#030303, #080000, #030303);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-small {
    font-size: 10px;
    letter-spacing: 7px;
    color: #777;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(75px, 16vw, 180px);
    letter-spacing: 15px;
    color: #a00000;
    text-shadow: 0 0 50px rgba(180,0,0,0.5);
}

.hero-line {
    width: 80px;
    height: 1px;
    background: #8b0000;
    margin: 25px auto;
}

.hero-quote {
    color: #aaa;
    font-size: clamp(17px, 2vw, 24px);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-quote span {
    color: white;
}

.btn {
    display: inline-block;
    padding: 17px 40px;
    border: 1px solid #8b0000;
    font-size: 12px;
    letter-spacing: 4px;
    transition: 0.4s;
}

.btn:hover {
    background: #8b0000;
    box-shadow: 0 0 40px rgba(180,0,0,0.5);
    transform: translateY(-5px);
}

.scroll-text {
    position: absolute;
    bottom: 30px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #555;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: #700000;
    margin: 12px auto 0;
}


/* =========================
   SECTIONS
========================= */

.page-section {
    min-height: 100vh;
    padding: 120px 8%;
    border-top: 1px solid #111;
}

.section-heading {
    margin-bottom: 70px;
}

.section-number {
    color: #700000;
    font-size: 12px;
    letter-spacing: 3px;
}

.section-label {
    margin-top: 15px;
    color: #555;
    font-size: 10px;
    letter-spacing: 6px;
}

.section-heading h2 {
    font-size: clamp(55px, 10vw, 120px);
    letter-spacing: 10px;
    margin-top: 10px;
}

.section-line {
    width: 70px;
    height: 2px;
    background: #8b0000;
    margin: 25px 0;
}

.section-quote {
    color: #777;
    letter-spacing: 4px;
    font-size: 11px;
}


/* =========================
   MUSIC
========================= */

.music-section {
    background: #050505;
}

.music-container {
    max-width: 950px;
    margin: auto;
}

.music-card {
    border: 1px solid #1b1b1b;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #080808;
    transition: 0.4s;
}

.music-card:hover {
    border-color: #500000;
    transform: translateY(-8px);
}

.music-cover {
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle, rgba(130,0,0,0.5), transparent 60%),
        #020202;
}

.music-cover span {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 10px;
    color: #750000;
}

.music-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.release-type {
    color: #800000;
    font-size: 10px;
    letter-spacing: 5px;
}

.music-info h3 {
    font-size: 40px;
    margin: 20px 0;
}

.music-info > p:not(.release-type) {
    color: #777;
    line-height: 1.8;
}

.music-button {
    margin-top: 35px;
    width: fit-content;
    border-bottom: 1px solid #800000;
    padding-bottom: 8px;
    letter-spacing: 3px;
    font-size: 11px;
}


/* =========================
   STORY
========================= */

.story-section {
    background:
        linear-gradient(90deg, #030303, #0c0000);
}

.story-content {
    max-width: 750px;
    margin-left: auto;
}

.story-content p {
    color: #999;
    font-size: clamp(20px, 3vw, 35px);
    line-height: 1.7;
    margin-bottom: 35px;
}

.story-content blockquote {
    margin-top: 80px;
    padding-left: 30px;
    border-left: 2px solid #800000;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.6;
    letter-spacing: 2px;
}


/* =========================
   GALLERY
========================= */

.gallery-section {
    background: #030303;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 450px;
    background:
        radial-gradient(circle at center, #300000, #080808 65%);
    border: 1px solid #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.gallery-item span {
    color: #400000;
    font-size: 80px;
    font-weight: 900;
}

.gallery-item:hover {
    transform: scale(0.98);
    border-color: #600000;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    background:
        radial-gradient(circle at bottom, #250000, #030303 60%);
}

.contact-content {
    text-align: center;
}

.contact-title {
    font-size: clamp(25px, 5vw, 60px);
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 70px;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-links a {
    padding: 18px 30px;
    border: 1px solid #222;
    color: #888;
    font-size: 10px;
    letter-spacing: 3px;
    transition: 0.4s;
}

.contact-links a:hover {
    color: white;
    border-color: #800000;
    background: #500000;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #151515;
}

footer h2 {
    font-size: 40px;
    letter-spacing: 8px;
}

footer p {
    color: #555;
    font-size: 10px;
    letter-spacing: 3px;
    margin: 25px 0 50px;
}

.copyright {
    color: #333;
    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes introFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .navbar {
        padding: 22px 5%;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .hero h1 {
        letter-spacing: 7px;
    }

    .page-section {
        padding: 100px 7%;
    }

    .music-card {
        grid-template-columns: 1fr;
    }

    .music-cover {
        min-height: 330px;
    }

    .music-info {
        padding: 40px 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 350px;
    }

    .intro-logo {
        letter-spacing: 8px;
    }
}
