/* =========================
   FONT LOADING
========================= */

@font-face {
    font-family: 'Ravensara';
    src: url('fonts/ravensaraantiquastencil-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================
   RESET
========================= */

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

/* =========================
   BASE
========================= */

body {
    font-family: "Avenir", "Avenir Next", sans-serif;
    color: white;
    background: black;
}

/* =========================
   BACKGROUND VIDEO
========================= */

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: -1;
}

/* =========================
   HERO LAYOUT
========================= */

.hero {
    min-height: 100vh;
    min-height: 100svh; /* iOS Safari fix */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 1.5rem;
    text-align: center;
}

/* =========================
   ARTIST NAME (RAVENSARA)
========================= */

.artist-name {
    font-family: 'Ravensara', serif;

    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);

    font-size: clamp(36px, 4vw, 60px);
    letter-spacing: 6px;
    font-weight: 400;

    opacity: 0.95;
    z-index: 10;
}

/* =========================
   CENTER CONTENT
========================= */

.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =========================
   ALBUM TITLE (RAVENSARA)
========================= */

.album-title {
    font-family: 'Ravensara', serif;
    font-size: clamp(90px, 12vw, 200px);
    letter-spacing: 6px;
    margin-bottom: 45px;
}

/* =========================
   CTA BUTTON (AVENIR)
========================= */

.cta a {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 18px 44px;

    font-family: "Avenir", "Avenir Next", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;

    text-decoration: none;
    border: 1px solid white;
    color: white;

    transition: all 0.3s ease;
}

.cta a:hover {
    background: white;
    color: black;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 600px) {

    .artist-name {
        top: 50px;
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 3px;
        white-space: nowrap; /* Forces single line */
    }

    .album-title {
        font-size: clamp(70px, 18vw, 120px);
        letter-spacing: 4px;
        margin-bottom: 35px;
    }

    .cta a {
        padding: 16px 32px;
        font-size: 13px;
        letter-spacing: 2px;
    }

}