/* coming-soon.css | My Happy Budget | Responsive & ADA Compliant */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #e0e0e0;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo {
    width: 80vw;
    max-width: 320px;
    height: auto;
    margin-bottom: 2rem;
    display: block;
}


.coming-soon-subtext {
    font-size: 1rem;
    color: #757575;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    max-width: 90vw;
}

@media (min-width: 600px) {
    .coming-soon-subtext {
        font-size: 1.15rem;
        max-width: 600px;
    }
}

@media (min-width: 900px) {
    .coming-soon-subtext {
        font-size: 1.25rem;
    }
}

@media (min-width: 600px) {
    .hero-logo {
        max-width: 400px;
    }
    .coming-soon-text {
        font-size: 2.5rem;
    }
}

@media (min-width: 900px) {
    .hero-logo {
        max-width: 480px;
    }
    .coming-soon-text {
        font-size: 3rem;
    }
}
