/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #0d0d0f;
    color: #ffffff;
    min-height: 100vh;
}


/* ================================
   MAIN
================================ */

.coming-soon {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(197, 139, 42, 0.08),
            transparent 38%
        ),
        #0d0d0f;
}


/* ================================
   BACKGROUND GLOW
================================ */

.gold-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 157, 48, 0.08);
    filter: blur(100px);
    pointer-events: none;
}

.glow-one {
    top: -200px;
    left: -150px;
}

.glow-two {
    bottom: -220px;
    right: -150px;
}


/* ================================
   CONTAINER
================================ */

.container {
    width: 100%;
    max-width: 900px;
    min-height: 100vh;
    min-height: 100svh;
    padding: 50px 25px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}


/* ================================
   LOGO
================================ */

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 150px;
    max-width: 40vw;
    height: auto;
    object-fit: contain;

    filter:
        drop-shadow(0 0 15px rgba(229, 178, 67, 0.15));

    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* ================================
   HERO
================================ */

.hero {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin-top: -20px;
}

.eyebrow {
    color: #d6a33b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -2px;
    color: #ffffff;
}

h1 span {
    display: block;

    background: linear-gradient(
        110deg,
        #a86d18,
        #f8d76a,
        #fff0a0,
        #c48827,
        #f0c75e
    );

    background-size: 250% auto;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 5s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 250% center;
    }
}


/* ================================
   GOLD LINE
================================ */

.gold-line {
    width: 65px;
    height: 2px;
    margin: 28px auto;

    background: linear-gradient(
        90deg,
        #9a641b,
        #f5d263,
        #9a641b
    );
}


/* ================================
   DESCRIPTION
================================ */

.description {
    max-width: 540px;
    margin: 0 auto;

    color: #d0d0d0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* ================================
   COUNTDOWN
================================ */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin: 40px 0;
}

.countdown-item {
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-size: 32px;
    font-weight: 500;

    background: linear-gradient(
        180deg,
        #fff0a0,
        #d29a2d
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-item small {
    margin-top: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #8f8f8f;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.separator {
    color: #8e641f;
    font-size: 24px;
    margin-top: -20px;
}


/* ================================
   BUTTON
================================ */

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 15px 27px;

    color: #0d0d0f;
    background: linear-gradient(
        135deg,
        #b9781d,
        #f6d263,
        #c48929
    );

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-radius: 3px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-btn span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(218, 166, 59, 0.2);
}

.contact-btn:hover span {
    transform: translateX(4px);
}


/* ================================
   FOOTER
================================ */

footer {
    width: 100%;
    text-align: center;
}

footer p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #666666;
    letter-spacing: 0.5px;
}


/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .container {
        padding: 35px 20px 20px;
    }

    .logo {
        width: 130px;
    }

    .hero {
        margin-top: 0;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 65px;
    }

    .countdown-item span {
        font-size: 28px;
    }

    .separator {
        font-size: 20px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 480px) {

    .container {
        padding: 30px 18px 20px;
    }

    .logo {
        width: 115px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
        letter-spacing: -1px;
    }

    .gold-line {
        margin: 22px auto;
    }

    .description {
        font-size: 14px;
        line-height: 1.7;
    }

    .countdown {
        gap: 5px;
        margin: 30px 0;
    }

    .countdown-item {
        min-width: 58px;
    }

    .countdown-item span {
        font-size: 23px;
    }

    .countdown-item small {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .separator {
        font-size: 16px;
    }

    .contact-btn {
        padding: 14px 23px;
        font-size: 11px;
    }

    footer p {
        font-size: 9px;
    }
}


/* ================================
   REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}