/* --- 1. FONTS & VARIABLES (GLOBAL) --- */
:root {
    --gold: #c59d5f;
    --gold-light: #e6cfa8;
    --dark: #222222;
    --grey: #f4f4f4;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #444;
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-gold { color: var(--gold); }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* --- 2. NAVIGATION (SHARED) --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark);
}
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-link { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    font-weight: 600; 
    color: var(--dark); 
}
.nav-link:hover { color: var(--gold); }
.cart-btn {
    border: 1px solid var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
}
.cart-btn:hover { background: var(--dark); color: var(--white); }

/* Hamburger Menu */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--dark); transition: 0.3s; }

/* --- 3. FOOTER (SHARED) --- */
.site-footer { background: #1a1a1a; color: #bbb; padding-top: 70px; font-size: 0.9rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-heading { color: var(--white); font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; }
.footer-subheading { color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; font-size: 0.9rem; }
.contact-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.social-icons a {
    width: 40px; height: 40px;
    background: #333;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: 0.3s;
}
.social-icons a:hover { background: var(--gold); }
.footer-bottom { background: #111; padding: 20px 0; text-align: center; border-top: 1px solid #222; }

/* --- 4. RESPONSIVE NAV --- */
@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed; left: -100%; top: 80px; gap: 0;
        flex-direction: column; background: var(--white); width: 100%;
        text-align: center; transition: 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 16px 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-list li { justify-content: center; }
}

/* Add to your existing theme.css */
.header-logo {
    max-height: 60px; /* Adjusts logo to fit inside the 80px navbar */
    width: auto;
    display: block;
}