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

:root {
    --gold: #d4af4f;
    --white: #ffffff;
    --font: "Baskervville SC", serif;
}

body {
    font-family: var(--font);
    color: var(--white);
    background: #0d0d0d;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: url("hero-imegen.jpg") center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

/* ===== Content (top-center) ===== */
.hero__content {
    text-align: center;
    max-width: 1600px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero__title {
    font-weight: 400; /* Regular */
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0;
    color: #FFFFFF;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__divider {
    display: block;
    width: 100%;
    max-width: 450px;
    height: 2px;
    background: #CD9C28;
    margin: 1.75rem 0 2.5rem;
}

.hero__soon {
    color: #CD9C28;
    font-weight: 600; /* SemiBold */
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0.26em; /* 26% */
    margin-bottom: 2.75rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
    /* offset to visually center given the trailing letter-spacing */
    padding-left: 0.26em;
}

/* ===== Button ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 304px;
    height: 68px;
    background: #CD9C28;
    color: #FFFFFF;
    font-weight: 600; /* SemiBold */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em; /* 14% */
    font-size: 25px;
    line-height: 50px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, transform 0.25s ease;
    /* offset for trailing letter-spacing to keep text centered */
    padding-left: 0.14em;
}

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

/* ===== Logo (bottom-left) ===== */
.hero__logo {
    position: absolute;
    left: clamp(1.5rem, 4vw, 3.5rem);
    bottom: clamp(1.5rem, 4vh, 3rem);
    width: clamp(150px, 15vw, 210px);
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
    .hero__content {
        max-width: 720px;
    }

    .hero__title {
        font-size: 34px;
        line-height: 42px;
    }

    .hero__divider {
        max-width: 340px;
        margin: 1.5rem 0 2.25rem;
    }

    .hero__soon {
        font-size: 34px;
        line-height: 42px;
        letter-spacing: 0.24em;
        padding-left: 0.24em;
        margin-bottom: 2.5rem;
    }

    /* Logo centered at the bottom */
    .hero__logo {
        left: 50%;
        transform: translateX(-50%);
        bottom: clamp(2rem, 5vh, 3.5rem);
        width: clamp(190px, 26vw, 240px);
    }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
    .hero__content {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .hero__title {
        font-size: 18px;
        line-height: 22px;
    }

    .hero__divider {
        max-width: 170px;
        margin: 1rem 0 1.5rem;
    }

    .hero__soon {
        font-size: 13px;
        line-height: 22px;
        letter-spacing: 0.2em;
        padding-left: 0.2em;
        margin-bottom: 1.75rem;
    }

    /* Smaller button */
    .btn {
        width: 200px;
        height: 40px;
        font-size: 12px;
        line-height: 1;
        border-radius: 20px;
    }

    /* Logo centered at the bottom */
    .hero__logo {
        left: 50%;
        transform: translateX(-50%);
        bottom: clamp(1.5rem, 4vh, 2.5rem);
        width: 130px;
    }
}
