/* --- General Setup & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* --- NEW BACKGROUND IMAGE --- */
    background-image: url('background.jpg'); /* Make sure your image is named background.jpg */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates a nice parallax effect */

    color: #2c3e50; /* A dark, professional blue-gray for text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

/* --- Main Glassmorphism Container (Updated for a light background) --- */
.container {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.6); /* Lighter, more opaque glass for readability */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* For Safari */
    padding: 40px;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- Typography (Updated for new color scheme) --- */
h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 2.5rem;
    color: #FF9933; /* Saffron color from the flag */
    letter-spacing: 1px;
}

.main-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #000080; /* Navy Blue from the Ashoka Chakra */
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    color: #34495e; /* A slightly lighter dark blue */
}

/* --- Countdown Timer (Updated for contrast) --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.time-box {
    background: rgba(0, 0, 0, 0.4); /* Darker box for contrast */
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 90px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff; /* White text for readability on the dark box */
}

.time-box small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Subscription Form (Updated for new color scheme) --- */
.subscribe-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-form input {
    width: 100%;
    max-width: 350px;
    padding: 15px 25px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.subscribe-form input::placeholder {
    color: #777;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #FF9933; /* Saffron focus color */
}

.subscribe-form button {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    background-color: #FF9933; /* Saffron CTA button */
    color: #fff; /* White text on button */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.subscribe-form button:hover {
    transform: scale(1.05);
    background-color: #f39c12; /* Slightly darker saffron on hover */
}

/* --- Footer & Social Icons (Updated for new color scheme) --- */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.social-icons a {
    color: #34495e; /* Dark blue-gray for icons */
    font-size: 1.2rem;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #FF9933; /* Saffron on hover */
    transform: translateY(-5px);
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

/* --- Responsive Design (No changes needed, but kept for completeness) --- */

@media (max-width: 768px) {
    .container {
        padding: 30px;
    }
    .main-headline {
        font-size: 2.8rem;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    .subscribe-form input {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 20px;
    }
    .logo {
        font-size: 2rem;
    }
    .main-headline {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .countdown-timer {
        gap: 10px;
    }
    .time-box {
        padding: 10px;
        min-width: 65px;
    }
    .time-box span {
        font-size: 1.8rem;
    }
}