/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full height & responsive settings */
body, html {
    width: 100%;
    min-height: 100vh; /* Fix for iPhone 12 Pro Max */
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* Background and layout */
.coming-soon {
    background: url('/images/background.jpg') no-repeat center center/cover;
    width: 100%;
    min-height: 100vh; /* Ensures full coverage on mobile */
    display: flex;
    color: white; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Background fallback for iOS rendering issues */
.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/background.jpg') no-repeat center center/cover;
    z-index: -1;
}

/* Logo styling */
.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* First logo specific positioning for mobile */
.logo-container .logo:first-child {
    transform: translateY(-50%);
}

/* Separator line */
.logo-separator {
    background: rgba(0, 0, 0, 0.5);
    width: 500px;
    height: 2px;
    margin-bottom: 20px;
}

/* Text styling */
h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
}

p {
    color: white;
    font-weight: 100;
    font-family: 'Montserrat', sans-serif; /* Updated to Montserrat */
    font-size: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo {
        width: 150px;
    }
    .logo-container .logo:first-child {
        transform: translateY(-75%);
    }
    h1 {
        font-size: 28px;
    }
    p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .logo {
        width: 450px;
    }
    h1 {
        font-size: 40px;
    }
    p {
        font-size: 22px;
    }
}

