:root {
    --peacock-blue: #004B5E;
    --emerald: #006D5B;
    --gold: #D4AF37;
    --dark: #121212;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: var(--dark);
}

/* Premium Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(0, 75, 94, 0.95);
    color: var(--white);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--gold);
}

/* Buttons */
.btn-gold {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Add burger menu logic in JS */
}