/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d; /* near-black background */
    color: white;
}

/* ===== DRIFTING SOFT GRAY SPOTLIGHT ===== */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 700px;
    pointer-events: none;
    z-index: 0;

    background: radial-gradient(
        circle at center,
        rgba(220,220,220,0.4) 0%,  /* soft gray */
        rgba(0,0,0,0) 50%
    );

    filter: blur(140px);
    transform: translate(-50%, -50%);

    animation: drift 15s infinite alternate ease-in-out;
}

@keyframes drift {
    0% {
        transform: translate(-50%, -50%) translateX(-80px) translateY(-50px);
    }
    25% {
        transform: translate(-50%, -50%) translateX(70px) translateY(40px);
    }
    50% {
        transform: translate(-50%, -50%) translateX(-60px) translateY(70px);
    }
    75% {
        transform: translate(-50%, -50%) translateX(60px) translateY(-60px);
    }
    100% {
        transform: translate(-50%, -50%) translateX(-80px) translateY(-50px);
    }
}

/* ===== LOGO ===== */
header .logo {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
}

header .logo img {
    height: 150px; 
    width: auto;
    object-fit: contain;
}

/* Mobile logo sizing */
@media (max-width: 600px) {
    header .logo img {
        height: 120px;
    }
    header .logo {
        top: 15px;
        left: 15px;
    }
}

/* ===== COMING SOON CONTAINER ===== */
.coming-soon-container {
    position: relative;       /* for spotlight positioning */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 180px 20px 80px;
    text-align: center;
    gap: 20px;
    z-index: 5;               /* ensure above spotlight */
}

/* ===== IMAGE WRAPPER ===== */
.image-wrapper {
    position: relative;
    z-index: 1; /* in front of spotlight */
}

.image-wrapper img {
    max-width: 700px;
    width: 90%;
    border-radius: 15px;

    /* Soft gray glow behind image + deep blue accent glow */
    box-shadow: 
        0 0 50px rgba(220,100,150,0.3),
        0 0 60px rgba(30,70,160,0.4);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.015);
    box-shadow: 
        0 0 60px rgba(220,220,220,0.4),
        0 0 80px rgba(30,70,160,0.6);
}

/* ===== TEXT ===== */
.coming-soon-container h1 {
    font-size: 3rem;
    margin-top: 20px;
}

.coming-soon-container p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 150px 15px 60px;
    }
    .image-wrapper img {
        max-width: 90%;
    }
    .coming-soon-container h1 {
        font-size: 2.5rem;
    }

    .ambient-glow {
        width: 600px;
        height: 500px;
        filter: blur(120px);
        animation-duration: 12s; /* slightly faster drift */
    }
}
