/*
Theme Name: Meat & Smash Theme
Author: Ahmad Barakat
Version: 1.0
*/

:root {
    --primary-color: #f3a323;
    --bg-dark: #121212;
    --bg-card: #1c1c1c;
    --text-light: #f5f5f5;
    --text-muted: #b3b3b3;
}
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Bebas Neue', cursive; letter-spacing: 1px; color: var(--primary-color); }

/* Shortcode Styling: Burger Card */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 25px; }
.item-card { background: var(--bg-card); padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary-color); }
.item-card h3 { display: flex; justify-content: space-between; font-size: 1.8rem; margin-bottom: 10px; }
.price-tag { color: var(--text-light); font-family: 'Montserrat'; font-size: 1rem; white-space: nowrap;}
.desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }


/* Shortcode Styling: Side List */
.sides-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.side-list { list-style: none; padding: 0;}
.side-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0,0,0,0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.logo img { height: 60px; vertical-align: middle; }

.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-light); text-transform: uppercase; font-size: 14px; font-weight: 700; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-color); }

.btn-order { background-color: var(--primary-color); color: #000 !important; padding: 10px 20px; border-radius: 5px; }

/* Hero */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.hero h1 { font-size: clamp(3.5rem, 10vw, 6rem); line-height: 1; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-muted); }

/* Section Styling */
section { padding: 80px 10%; }
.section-title { text-align: center; font-size: 4rem; margin-bottom: 50px; }

/* Form */
.contact-container { max-width: 600px; margin: 0 auto; background: var(--bg-card); padding: 40px; border-radius: 10px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
input, textarea { width: 100%; padding: 12px; background: #2a2a2a; border: 1px solid #444; color: white; border-radius: 4px; }
.btn-submit { background: var(--primary-color); border: none; padding: 15px 30px; width: 100%; font-weight: bold; cursor: pointer; text-transform: uppercase; margin-top: 10px; color: #333}

footer { text-align: center; padding: 40px; background: #000; color: var(--text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .sides-container { grid-template-columns: 1fr; }
    section { padding: 60px 5%; }
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

/* Menu */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .menu-wrapper {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        display: none;
        flex-direction: column;
        padding: 2rem;
    }

    .menu-wrapper.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}