/* * This file should be saved as 'style.css'
 * and placed inside the 'coming-soon-assets' folder.
 */

/* Basic reset and font settings */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f8ff; /* A light, soft blue-white */
    color: #1e3a8a; /* A deep blue for text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Main container to center content and add spacing */
.container {
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px; /* Rounded corners for the container */
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15); /* A subtle blue shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Styling for the main title */
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #0b1f48; /* A darker blue for emphasis */
}

/* Styling for the "coming soon" text */
.coming-soon-text {
    font-size: 28px;
    font-weight:500;
    margin: 0;
    max-width: 600px;
    color: #3b5998; /* A slightly lighter blue */
}

/* Container for the images */
.image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows images to wrap on smaller screens */
}

/* Styling for the images */
.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for images */
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }
}

/* Even smaller screens, stacking images vertically */
@media (max-width: 500px) {
    .image-container {
        flex-direction: column;
    }
}
