/* ==========================================================================
   DIVIRA Coming Soon Page
   ========================================================================== */

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0b0a;
    color: #f5f2ed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-particles .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.6; transform: translateY(-80px) scale(1); }
}

/* Layout */
.coming-soon {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

/* Header / Logo */
.coming-soon__header {
    margin-bottom: 3rem;
}

.logo {
    text-align: center;
}

.logo-main {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #d4af37;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.logo-sub {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8c827a;
    margin-top: 4px;
}

/* Content */
.coming-soon__content {
    text-align: center;
    max-width: 650px;
}

.coming-soon__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.coming-soon__title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    color: #f5f2ed;
    margin-bottom: 1.2rem;
}

.coming-soon__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a09890;
    margin-bottom: 3rem;
}

/* Countdown Timer */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 1rem 0.8rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
}

.countdown__number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.countdown__label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8c827a;
    margin-top: 6px;
}

.countdown__separator {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.4);
    padding: 0 0.2rem;
}

/* Email Signup */
.coming-soon__signup {
    max-width: 460px;
    margin: 0 auto;
}

.coming-soon__signup-text {
    font-size: 0.8rem;
    color: #8c827a;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.signup-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease;
}

.signup-form:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.signup-form__input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    color: #f5f2ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.signup-form__input::placeholder {
    color: #6b6360;
}

.signup-form__btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #0d0b0a;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.signup-form__btn:hover {
    opacity: 0.9;
}

.signup-form__success {
    color: #d4af37;
    font-size: 0.82rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Footer */
.coming-soon__footer {
    margin-top: 4rem;
    text-align: center;
}

.coming-soon__social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    color: #0d0b0a;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.coming-soon__copyright {
    font-size: 0.7rem;
    color: #5a5350;
    letter-spacing: 0.05em;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .logo-main {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .coming-soon__title {
        font-size: 2rem;
    }

    .coming-soon__desc {
        font-size: 0.88rem;
    }

    .countdown__item {
        min-width: 60px;
        padding: 0.8rem 0.5rem;
    }

    .countdown__number {
        font-size: 1.5rem;
    }

    .signup-form {
        flex-direction: column;
        border-radius: 12px;
    }

    .signup-form__input {
        padding: 14px 20px;
        text-align: center;
    }

    .signup-form__btn {
        padding: 14px 20px;
        border-radius: 0;
    }
}

@media screen and (max-width: 480px) {
    .coming-soon {
        padding: 2rem 1.2rem;
    }

    .coming-soon__title {
        font-size: 1.6rem;
    }

    .countdown {
        gap: 0.3rem;
    }

    .countdown__item {
        min-width: 50px;
    }

    .countdown__number {
        font-size: 1.2rem;
    }

    .countdown__separator {
        font-size: 1rem;
    }
}
