/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles with background image */
body {
    background-image: url('images/sparklebgsmall.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container for centering content */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
}

/* Logo container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Logo styling */
.logo {
    max-width: 80%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Coming soon text */
.coming-soon {
    color: #f7ee68;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 90%;
        max-height: 50vh;
    }
    
    .logo-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 95%;
        max-height: 40vh;
    }
    
    .logo-container {
        gap: 15px;
    }
    
    .coming-soon {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        letter-spacing: 1px;
    }
}
