/* ========== Global Styles & Variables ========== */
:root {
    --bg-color: #F8F8F8; /* Very very light grey */
    --text-color-primary: #212121; /* Near black */
    --text-color-secondary: #757575; /* Medium grey */
    --accent-color: #2563EB; /* Modern tech blue */
    --accent-color-darker: #1D4ED8; /* Darker blue for hover */

    --font-primary: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color-primary);
    line-height: 1.6;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure body takes full viewport height */
    text-align: center; /* Center text within the container */
    padding: 20px; /* Add padding for smaller screens */
}

/* ========== Coming Soon Container ========== */
.coming-soon-container {
    max-width: 600px; /* Limit width of the content */
}

.logo-name {
    font-size: 2.5rem; /* Slightly smaller than full page h1 */
    font-weight: 700; /* Poppins Bold */
    color: var(--text-color-primary);
    margin-bottom: 15px;
}

.status-message {
    font-size: 1.8rem;
    font-weight: 600; /* Poppins Semi-Bold */
    color: var(--text-color-primary);
    margin-bottom: 25px;
    letter-spacing: 1px; /* Optional: add slight spacing */
}

.description {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    margin-bottom: 30px;
}

.contact-info {
    font-size: 1rem;
    color: var(--text-color-secondary);
}

.contact-info a {
    color: var(--accent-color);
    font-weight: 500; /* Poppins Medium */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-info a:hover {
    color: var(--accent-color-darker);
    text-decoration: underline; /* Add underline on hover for clarity */
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 480px) {
    html {
        font-size: 15px; /* Slightly smaller base font on small devices */
    }

    .logo-name {
        font-size: 2.2rem;
    }

    .status-message {
        font-size: 1.6rem;
    }

    .description {
        font-size: 1rem;
    }
}