/* CSS Reset: Normalize default styles across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the full height of the viewport */
html,
body {
    height: 100%;
    font-family: "Core Sans BR 15", sans-serif;
    /* Default font */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--neutral-white);
    text-align: center;
    padding: 20px;
    /* Ensures proper spacing on mobile */
}

/* Centering container */
.main-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 90%;
    /* Allows better scaling on small screens */
    padding: 15px;
}

/* Main title */
.logo-title {
    font-size: 50px;
    /* Smaller for mobile */
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
}

/* Subtitle */
.logo-subtitle {
    font-size: 19px;
    /* Adjusted for better readability on small screens */
    font-weight: 100;
    color: #666;
}

/* Subtle "Coming Soon" message */
.coming-soon {
    font-size: 14px;
    /* Slightly smaller for mobile */
    font-weight: 300;
    color: rgba(0, 0, 0, 0.4);
    /* Light gray for subtle effect */
    margin-top: 8px;
    letter-spacing: 1.5px;
}

/* Smooth fading animation */
@keyframes fadeInOut {
    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    .main-div {
        max-width: 800px;
        /* Keep original desktop design */
        padding: 20px;
    }

    .logo-title {
        font-size: 64px;
        /* Restoring original size */
        margin-bottom: 10px;
    }

    .logo-subtitle {
        font-size: 26px;
    }

    .coming-soon {
        font-size: 16px;
        letter-spacing: 2px;
    }
}
