/* Jaro Font - If you have the font file, uncomment and update the path */
/*
@font-face {
    font-family: 'Jaro';
    src: url('/fonts/Jaro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jaro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F5F1E8;
    color: #1E3A5F;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    max-height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.logo {
    max-width: clamp(250px, 40vw, 400px);
    width: 100%;
    margin-block: -80px;
}

.coming-soon {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #1E3A5F;
    font-weight: bold;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-frame {
    max-width: 75%;
    margin-top: 40px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .coming-soon {
        margin-top: 80px;
    }
    
    .hero-frame {
        margin-top: 160px;
        max-width: 85%;
    }
    
    .logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        margin-top: 60px;
    }
    
    .hero-frame {
        margin-top: 120px;
        max-width: 90%;
    }
    
    .logo {
        max-width: 180px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
