:root {
    --primary-color: #c5a059; /* Gold color */
    --text-color: #f8f9fa;
    --overlay-color: rgba(15, 23, 42, 0.85); /* Dark Navy with opacity */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

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

body, html {
    height: 100%;
    font-family: var(--font-sans);
    color: var(--text-color);
    overflow: hidden; /* Prevent scrolling for single page view */
}

/* Background Handling */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?q=80&w=2670&auto=format&fit=crop'); /* Rio de Janeiro Landscape */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--overlay-color);
}

/* Main Layout */
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Typography & Styling */
header {
    margin-bottom: 2rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.sub-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 0;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2rem auto;
}

.content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.announcement {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.coming-soon {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    .sub-logo {
        font-size: 1rem;
    }
    .container {
        padding: 1rem;
    }
}
