/* Brand Colors: Forest Green (#0a3622) & Gold (#d4af37) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden; /* This explicitly kills the horizontal scroll */
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box; /* This is the most important line for removing overflow */
}

.coming-soon {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    /* Deep Forest Green Base */
    background-color: #062416;
    
    /* A radial 'glow' that pulses slowly from the center */
    background-image: radial-gradient(circle at center, #12633e 0%, #062416 70%);
    
    /* Animation for the glow effect */
    animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.coming-soon-heading {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #d4af37; /* Gold */
    letter-spacing: 4px;
    margin-top: 20px;
}

.para {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    margin-left: 140px;
}

.dot-wave {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot-wave span {
    width: 15px;
    height: 15px;
    background-color: #d4af37; /* Gold dots */
    border-radius: 50%;
    animation: wave 1.4s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-heading {
        font-size: 3rem; /* Smaller for tablets */
    }
    .para{
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .coming-soon-heading {
        font-size: 2rem; /* Mobile friendly */
        margin-left: 40px;
    }
    .para{
        margin-left: 10px;
    }
    img {
        max-width: 180px !important;
    }
}

/* Animation */
.dot-wave span:nth-child(1) { animation-delay: -0.32s; }
.dot-wave span:nth-child(2) { animation-delay: -0.16s; }
.dot-wave span:nth-child(3) { animation-delay: 0s; }

@keyframes wave {
    0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}
/* Ensure the logo is centered */
.coming-soon img {
    margin: 0 auto 2rem auto; /* This forces the image to center itself horizontally */
    display: block;
}