/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'DM Serif Display', serif;
}

/* Main container */
.container {
    width: 100%;
    height: 100vh;
    background-image: url('images/bckg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
}

/* Content wrapper */
.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Logo styling */
.logo {
    width: 120px;
    height: auto;
    display: block;
}

/* Coming soon text */
.coming-soon-text {
    color: white;
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        width: 100px;
    }
    
    .coming-soon-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
    }
    
    .coming-soon-text {
        font-size: 2rem;
    }
    
    .content {
        gap: 0.8rem;
    }
}
