/* Import Google Font for a modern look */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black; /* Dark background */
    color: #ffffff; /* White text */
}

/* --- Logo Styling --- */
.logo-container {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 100; /* Ensure it's on top */
}

.logo {
    height: 100px; /* Adjust size as needed */
}

/* --- Hero Section Styling --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: #121212; /* Slight overlay background */
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px); /* Adds a nice frosted effect */
    -webkit-backdrop-filter: blur(5px);
}

.main-message {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    /* Gradient text effect */
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-message {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #cccccc;
}

/* --- Countdown Timer Styling --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white box */
    border-radius: 8px;
    min-width: 80px;
}

.time-value {
    font-size: 3rem;
    font-weight: 700;
    color: #feb47b; /* Accent color for the numbers */
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #cccccc;
    margin-top: 5px;
}

/* --- Subscription Form Styling --- */
.subscribe-section p {
    margin-bottom: 15px;
    color: #cccccc;
}

.subscription-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input {
    padding: 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    flex-grow: 1;
    font-size: 1rem;
    outline: none;
}

.subscription-form button {
    padding: 15px 25px;
    background-color: #ff7e5f; /* Accent color for button */
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
}

.subscription-form button:hover {
    background-color: #e06c4f;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 600px) {
    .main-message {
        font-size: 2.5rem;
    }

    .sub-message {
        font-size: 1.1rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .time-unit {
        padding: 10px;
        min-width: 60px;
    }

    .time-value {
        font-size: 2rem;
    }
}