/* ===================================================
   GN Ventures — Coming Soon
   =================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===================================================
   LOADER
   =================================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.loader-logo {
    width: 420px;
    height: auto;
    object-fit: contain;
    animation: logoFadeIn 0.5s ease-out forwards;
}

/* Progress bar */
.progress-bar-track {
    width: 260px;
    height: 3px;
    background: rgba(139, 30, 30, 0.10);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #8b1e1e, #c0392b);
    border-radius: 4px;
    animation: progressFill 1.2s ease-in-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================================
   MAIN CONTENT
   =================================================== */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 24px;
    animation: contentReveal 0.8s ease-out 1.6s both;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

/* Main logo */
.main-logo {
    width: 720px;
    max-width: 85vw;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.main-logo:hover {
    transform: scale(1.03);
}

/* Divider line */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b1e1e, transparent);
    border-radius: 2px;
}

/* Typography */
.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    padding: 24px 0;
    width: 100%;
    text-align: center;
}

.footer p {
    font-size: 0.78rem;
    color: #b0b0b0;
    letter-spacing: 0.03em;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 480px) {
    .loader-logo {
        width: 300px;
    }

    .progress-bar-track {
        width: 200px;
    }

    .main-logo {
        width: 450px;
    }

    .divider {
        width: 40px;
    }
}
