/* General */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #1b263b; /* main text - deep navy */
    text-align: center;
    background: #e0e1dd; /* light gray background */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%); /* subtle darkening */
}
.logo-img {
    width: auto;          /* let width adjust naturally */
    max-width: 300px;     /* optional max size */
    height: auto;         /* maintain aspect ratio */
    display: block;       /* prevent inline spacing issues */
    border-radius: 12px;
    filter: brightness(80%); /* subtle darkening */
    object-fit: contain;  /* ensures image fits without distortion */
    margin: 0 auto;       /* center if block */
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.2); /* subtle overlay for clarity */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f9f9f9; /* soft white box */
    padding: 70px 90px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    opacity:0.9;
}

.hero-text h1 {
    font-size: 3rem;
    color: #0A2942; /* deep navy */
    margin-bottom: 10px;
}

.hero-text h3 {
    font-size: 1.5rem;
    color: #0A2942; /* steel gray */
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #0A2942;
    margin-bottom: 30px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.time-box {
    background: #BEBEBC; /* light gray box */
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 75px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #0A2942; /* accent dark blue */
}

.time-box small {
    font-size: 0.85rem;
    color: #0A2942; /* steel gray */
    text-transform: uppercase;
}

/* Footer */
footer {
    background: #0A2942; /* deep navy */
    color: #f9f9f9;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 2px solid #BEBEBC;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text h3 {
        font-size: 1.3rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        margin: 0;         /* remove any margin */
        width: 100%;       /* full width */
        max-width: none;   /* remove max-width */
        border-radius: 0;  /* remove rounding */
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text h3 {
        font-size: 1.1rem;
    }
    .hero-text p {
        font-size: 0.95rem;
    }

    .countdown {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        margin: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
    }
    .hero-text h1 {
        font-size: 1.6rem;
    }
    .hero-text h3 {
        font-size: 1rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .time-box {
        min-width: 60px;
        padding: 10px 15px;
    }
    .time-box span {
        font-size: 1.5rem;
    }
}
