/* style.css */
:root {
    --primary-color: #ff9f1c; /* Golden Orange from your logo and menu */
    --bg-darker: #0d0d0d;
    --bg-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: var(--bg-darker); color: var(--text-primary); line-height: 1.6; }

/* SHARED HEADER & NAVIGATION */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%;
    background: rgba(13, 13, 13, 0.95);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 55px; width: 55px; border-radius: 50%; border: 3px solid var(--primary-color); }
.logo-text { font-family: 'Playfair Display', serif; color: var(--primary-color); font-size: 1.8rem; text-decoration: none; }

.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-primary); font-weight: 400; transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); border-bottom: 2px solid var(--primary-color); }

.cart-icon { position: relative; cursor: pointer; font-size: 1.3rem; }
#cart-count { 
    position: absolute; top: -10px; right: -10px; 
    background: var(--primary-color); color: var(--bg-darker); 
    font-size: 0.75rem; font-weight: bold; 
    padding: 2px 7px; border-radius: 50%; 
}

/* SHARED FOOTER */
footer { text-align: center; padding: 40px 8%; border-top: 1px solid #333; margin-top: 50px; background: #111; }
footer p { color: var(--text-secondary); margin-bottom: 15px; }
.social-icons { display: flex; justify-content: center; gap: 20px; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

/* SHARED BUTTONS & FORMS */
.btn { 
    display: inline-block; padding: 12px 28px; border-radius: 30px; 
    background-color: var(--primary-color); color: var(--bg-darker); 
    text-decoration: none; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); 
}
.btn:hover { background-color: #f78d0f; }

/* UTILITY */
.container { padding: 80px 8%; }
.hero-section {
    height: 50vh; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1350&q=80');
    background-size: cover; background-position: center; margin-bottom: 20px;
}
.hero-section h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--primary-color); }
.hero-section p { font-size: 1.2rem; max-width: 650px; margin-top: 15px; }

/* Hamburger Button Styling  */
.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
}

/* MEDIA QUERIES for RESPONSIVENESS (Mobile View) */
@media (max-width: 900px) {
    header h1 { font-size: 3rem; }
    
    /* Show the hamburger button */
    .hamburger { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%; /* Positions it right below the navbar */
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        border-bottom: 2px solid var(--primary-color);
        
        /* Hide it by default on mobile */
        display: none; 
    }

    .nav-links.active-mobile {
        display: flex;
    }
}
