:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --logo-color: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body.minimal {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Minimal Header */
.minimal-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--logo-color);
}

.nav-right a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.nav-right a:hover {
    opacity: 1;
}

/* Main Content */
.minimal-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.map-container {
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-map {
    width: 100%;
    height: auto;
    max-height: 80vh;
    filter: drop-shadow(0 0 40px rgba(191, 157, 87, 0.3));
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Footer */
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.3;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .minimal-header {
        padding: 30px;
        flex-direction: row;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .map-container {
        width: 95%;
    }
}
