@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
    --maroon-deep: #2A0202;
    --maroon-rich: #4A0404;
    --gold-metallic: #D4AF37;
    --gold-bright: #FFD700;
    --gold-soft: #F9E2AF;
    --text-white: rgba(255, 255, 255, 0.9);
}

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

body {
    background: radial-gradient(circle at center, var(--maroon-rich) 0%, var(--maroon-deep) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    overflow: hidden;
    position: relative;
}

/* Background Texture */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 1;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    background: linear-gradient(
        to bottom,
        var(--gold-soft) 0%,
        var(--gold-bright) 45%,
        var(--gold-metallic) 55%,
        var(--gold-bright) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    animation: shimmer 5s infinite linear;
    background-size: 200% auto;
}

.coming-soon::after {
    content: "Coming soon";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(20px);
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
}

.sub-text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-metallic);
    opacity: 0.8;
    margin-top: -0.5rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold-metallic);
    margin: 2rem auto;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Subtle Floating Effect */
.container {
    animation: fadeIn 1.5s ease-out, float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sub-text {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
}
