:root {
    --bg-color: #1a1a1a;
    --text-color: #f5f5f5;
    --accent-color: #d4a373; /* Golden/Earth tone suitable for cultural assoc */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* Prevent scroll if we want a single screen experience */
    display: flex;
    flex-direction: column;
}

header {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 100;
}

.logo {
    height: 80px; /* Adjust size as needed */
    width: auto;
    border-radius: 8px; /* Slight rounding if square, optional */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.wip-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the screen */
    object-position: center;
    filter: brightness(0.6); /* Darken slightly to make text readable */
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.overlay h1 {
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 2.5rem;
    }
    
    .overlay p {
        font-size: 1.1rem;
    }
    
    .logo {
        height: 60px;
        top: 15px;
        left: 15px;
    }
}
