/* Clean Full-Screen Launching Soon Screen */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Marcellus&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Prata&display=swap');

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050103;
    color: #FFFFFF;
}

.viewport-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(5, 1, 3, 0.85) 100%),
                linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.brand-domain {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #E5C158; /* Single solid gold color - no gradient */
    text-transform: lowercase;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.main-title {
    font-family: 'Playfair Display', 'Marcellus', serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

@media (max-width: 900px) {
    .brand-domain {
        font-size: 1.3rem;
        letter-spacing: 3px;
        margin-bottom: 0.9rem;
    }
    .main-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .brand-domain {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 0.6rem;
    }
    .main-title {
        font-size: 2.1rem;
        letter-spacing: 2px;
    }
}
