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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('background.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    width: 90%;
    margin: 20px;
}

.logo {
    width: 290px; /* Adjust as needed */
    /*margin-bottom: 20px;*/
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2c3e50; /* A nice dark blue */
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.countdown-item {
    margin: 0 15px;
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #e74c3c; /* A bright red */
}

#subscribe-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#subscribe-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 60%;
    max-width: 300px;
    margin-right: 10px;
}

#subscribe-form button {
    background-color: #3498db; /* A vibrant blue */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#subscribe-form button:hover {
    background-color: #2980b9;
}

.message {
    margin-top: 10px;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
}

.social-links img {
    width: 30px; /* Adjust as needed */
}

.copyright {
    font-size: 0.8em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .countdown {
        flex-direction: column;
        align-items: center;
    }

    .countdown-item {
        margin: 10px 0;
    }

    #subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    #subscribe-form input[type="email"] {
        margin-right: 0;
        margin-bottom: 10px;
        width: 80%;
    }
}
