:root {
    --bg-dark: #050505;
    --text-main: #fcfcfc;
    --text-muted: #999999;
}

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

body, html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    user-select: none; /* Prevent text selection */
}

/* Background image setup */
body {
    background-image: url('assets/background.jpg?v=1.1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    opacity: 0;
    animation: fadeInBackground 3s ease-in-out forwards;
}

@keyframes fadeInBackground {
    to { opacity: 1; }
}

/* Protection Overlay: A transparent div on top of the background */
.protection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
}

/* Dark overlay to ensure text legibility */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Subtle darkening */
    z-index: 1;
}

.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 60px;
    z-index: 10;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.9;
}

.container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.content {
    text-align: center;
}

/* Hide visible text because it's already in the background image (Coming Soon.jpeg) */
.coming-soon-text {
    opacity: 0;
    pointer-events: none;
    font-size: 4.5rem;
    font-weight: 700;
}

footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 10;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 2.5s ease-in-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 2.8rem;
        padding: 0 20px;
    }
    
    .top-nav {
        padding: 30px;
    }
    
    .logo-text {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    footer {
        bottom: 30px;
        font-size: 0.55rem;
    }
}
