/* Basic Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.content {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

/* Logo */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #004d99; /* A common construction blue */
    margin-bottom: 10px;
}

.teaser-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6600; /* A contrasting construction orange */
    margin: 20px 0;
}

/* Newsletter Form */
.newsletter-form {
    margin: 30px 0;
}

.newsletter-form p {
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    width: calc(100% - 110px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #004d99;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #003366;
}

/* Social Media Icons */
.social-media {
    margin-top: 20px;
}

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

.social-icon img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .teaser-text {
        font-size: 1rem;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}
