/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #8B4513;
    --secondary-brown: #654321;
    --accent-gold: #DAA520;
    --background-cream: #F4F1E8;
    --text-dark: #2C1810;
    --text-light: #666;
    --white: #fff;
    --black: #000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
}

.nav-menu li {
    width: 100%;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border-left: 3px solid transparent;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-gold);
}

.nav-menu a.active {
    color: var(--accent-gold);
    background: rgba(218, 165, 32, 0.1);
    border-left-color: var(--accent-gold);
}

/* ===== MOBILE NAVIGATION ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

/* ===== BODY LAYOUT ===== */
body {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-brown);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navigation {
        left: -250px;
        transition: left 0.3s ease;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}
