/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #34495e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    width: 120px;
    min-width: 100px;
}

.countdown-item span {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.countdown-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.7;
}

/* Contact Form */
.contact-form p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column; /* Stacks inputs vertically on mobile */
    align-items: center;
}

.contact-form input[type="email"] {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
}

.contact-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background-color: #2ecc71;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.contact-form button:hover {
    background-color: #27ae60;
}

/* Responsive Design */
@media (min-width: 600px) {
    .headline {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .contact-form form {
        flex-direction: row; /* Aligns inputs horizontally on desktop */
    }

    .contact-form input[type="email"] {
        width: auto;
    }
}