/* CSS Variables */
:root {
    --gold-metallic: #D4AF37;
    --gold-accent: #FFD700;
    --deep-brown: #1F1B12;
    --white: #FFFFFF;
    --warm-off-white: #FDF7E6;
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(31, 27, 18, 0.1);
    --transition: all 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-metallic);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    margin-left: auto;
}


.nav-links a {
    color: var(--deep-brown);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-metallic);
    background: var(--warm-off-white);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    position: relative;
    z-index: 1002;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep-brown);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
    
    .logo span {
        font-size: 0.9rem;
    }
    
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }
    
    .nav-links {
        display: none !important;
    }
    
    nav {
        position: relative;
        width: 100%;
    }
    
    header .container {
        position: relative;
    }
    
    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        box-shadow: var(--shadow);
        z-index: 1000;
        list-style: none;
        margin: 0;
        transform: translateX(0);
        animation: slideInFromRight 0.3s ease;
    }
    
    @keyframes slideInFromRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .nav-links li {
        margin: 0.5rem 0;
        width: auto;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        text-align: center;
        border-radius: var(--border-radius);
        background: var(--warm-off-white);
        color: var(--deep-brown);
        text-decoration: none;
        min-width: 150px;
    }
}
