@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #3E2723; /* Deep Cocoa */
    --accent: #D4AF37;  /* Metallic Gold */
    --bg: #FFFDF9;      /* Eggshell White */
    --text: #2D2D2D;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- UPDATED HEADER & NAV --- */
header { 
    background: var(--white); 
    padding: 10px 0; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-img { height: 50px; }

nav { display: flex; align-items: center; }

nav a { 
    text-decoration: none; 
    color: var(--primary); 
    font-weight: 600; 
    margin-left: 30px; 
    font-size: 14px; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

nav a:hover { color: var(--accent); }

/* --- MOBILE HAMBURGER ICON --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 3px;
}

/* --- MOBILE VIEW RESPONSIVENESS (FIXED) --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; } /* Show button on mobile */

    nav {
        display: none; /* Hide standard nav */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid #eee;
    }

    nav.active {
        display: flex; /* Show menu when toggle is clicked */
    }

    nav a {
        margin: 15px 0;
        font-size: 16px;
    }

    /* Animation for the hamburger icon */
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero h1 { font-size: 32px; }
}
/* HERO */
.hero { padding: 80px 0; text-align: center; background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1517433447747-233682979201?w=1200'); background-size: cover; margin-bottom: 40px; }
.hero h1 { font-family: 'Playfair Display'; font-size: 45px; color: var(--primary); }

/* PRODUCT CARDS */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 40px 0; }
.card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #f1f1f1; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 20px; text-align: center; }
.price { display: block; font-size: 22px; font-weight: 700; color: var(--primary); margin: 10px 0; }

/* BUTTONS */
.btn-gold { background: var(--accent); color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; border: none; cursor: pointer; }
.btn-wa { background: #25D366; color: white; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-flex; align-items: center; gap: 8px; }

/* FOOTER */
footer { background: var(--primary); color: white; padding: 50px 0; text-align: center; margin-top: 60px; }

@media (max-width: 768px) { nav { display: none; } /* Add burger menu later */ .hero h1 { font-size: 32px; } }