:root {
    --bg-dark: #070707;
    --bg-light: #121212;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #F3E5AB;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-premium: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Page Transition Setup */
.page-fade-in {
    animation: fadeInPage 0.8s ease-out forwards;
}
@keyframes fadeInPage {
    from { opacity: 0; filter: blur(5px); }
    to { opacity: 1; filter: blur(0); }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-premium);
}

.nav-background-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 160%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
    pointer-events: none;
}

.main-logo { height: 45px; transition: var(--transition-premium); display: block; }
.logo-link:hover .main-logo { filter: brightness(1.2); transform: scale(1.02); }

.nav-center { display: flex; gap: 40px; list-style: none; }

.nav-item {
    position: relative;
}

/* Pure CSS Spotlight Animation */
.nav-item::before {
    content: '';
    position: absolute;
    top: -25px; /* Aligns perfectly with top of navbar */
    left: 50%;
    transform: translateX(-50%);
    height: 65px; 
    width: 140%; /* Creates the spread */
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.3) 0%, transparent 75%);
    border-top: 2px solid var(--accent-gold);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-item.active::before,
.nav-item:hover::before {
    opacity: 1;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    transition: 0.3s;
    position: relative;
}

.nav-item.active .nav-link, .nav-link:hover { color: var(--accent-gold); }

/* --- Footer --- */
.footer { 
    padding: 100px 10% 40px; 
    background: #040404; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    font-family: var(--font-body);
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 80px; 
}

.footer-logo { 
    height: 50px;
    width: auto;
    margin-bottom: 25px; 
    filter: brightness(1.2); 
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-col h4 { 
    color: var(--accent-gold); 
    font-size: 0.75rem; 
    font-weight: 600;
    letter-spacing: 3px; 
    margin-bottom: 35px; 
    text-transform: uppercase;
}

.footer-col a, .contact-info { 
    display: block; 
    color: var(--text-muted); 
    text-decoration: none; 
    margin-bottom: 18px; 
    font-size: 0.85rem; 
    transition: all 0.4s ease; 
}

.footer-col a:hover { 
    color: var(--accent-gold); 
    transform: translateX(8px); 
}

.contact-info { margin-bottom: 10px; }

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.social-links a:hover { color: #c9a96e; }

.footer-bottom { 
    margin-top: 100px; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255,255,255,0.03); 
    text-align: center; 
    color: #444; 
    font-size: 0.7rem; 
    letter-spacing: 1px;
}

/* --- Responsive Global Design --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col:first-child {
        grid-column: span 2;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
        background: rgba(0,0,0,0.9);
    }
    .nav-center {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-item::before {
        top: -5px; /* Adjusts the spotlight height for stacked mobile menu */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col:first-child {
        grid-column: span 1;
    }
    .footer {
        padding: 60px 5% 30px;
    }
    .nav-link {
        font-size: 0.75rem;
    }
}

/* --- CSS-Only Animation Classes (Replaces JS Observer) --- */
.slide-up { 
    opacity: 0; 
    transform: translateY(40px); 
    animation: slideUpAnim 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { 
    opacity: 0; 
    animation: fadeInAnim 1.5s ease forwards;
    animation-delay: 0.5s;
}
@keyframes fadeInAnim {
    to { opacity: 1; }
}