/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Ensures no unwanted scroll */
}

body {
    background: url('images/coming_soon.webp') no-repeat center center fixed;
    background-size: cover; /* Ensures the image covers the whole page */
    font-family: 'Arial', sans-serif;
    color: white;
    height: 100%;
}

.coming-soon-container {
    height: 100vh; /* Ensures full height on all devices */
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6); /* Translucent overlay */
    padding: 20px; /* Padding for better responsiveness on mobile */
    box-sizing: border-box; /* Ensures padding is included in height/width calculations */
}

.coming-soon-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-align: center; /* Center align text for a better look on mobile */
}

.coming-soon-description {
    font-size: 18px;
    color: #ddd;
    text-align: center; /* Better alignment on mobile */
    margin-bottom: 20px;
}

/* Email input field */
input[type="email"] {
    width: 70%; /* Adjusts to be more mobile-friendly */
    max-width: 400px; /* Limit max width on larger screens */
    border-radius: 30px 0 0 30px;
    padding: 5px;
    border: 1px solid #ddd;
}

/* Button */
.btn-primary {
    width: 30%; /* Adjusts to fit better on smaller screens */
    max-width: 150px; /* Limit max width */
    border-radius: 0 30px 30px 0;
    background-color: #007bff;
    color: white;
    padding: 5px;
    border: none;
}

/* Social icons */
.social-icons {
    text-align: center; /* Centers icons */
    margin-top: 30px;
}

.social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #ddd;
    text-decoration: none;
}

.social-icons a:hover {
    color: #007bff;
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 14px;
    color: #ddd;
    text-align: center; /* Center align text */
}
