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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ffcc00;
}

.navbar .logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ffcc00;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1974') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: #ffcc00;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-content .tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 5px;
}

.hero-content .sub-tagline {
    font-style: italic;
    color: #bfa15f;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffcc00;
    color: #121212;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #e6b800;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    background-color: #171717;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 40px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: #262626;
    color: #ffffff;
    border: 2px solid #ffcc00;
    padding: 12px 30px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: #ffcc00;
    color: #121212;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Menu Layout Content */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-category {
    background-color: #222222;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.menu-category h3 {
    font-family: 'Oswald', sans-serif;
    color: #ffcc00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 1px dashed #444;
    padding-bottom: 5px;
}

.menu-category ul {
    list-style: none;
}

.menu-category ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}

.menu-divider {
    border: 0;
    border-top: 1px solid #444;
    margin: 15px 0;
}

.menu-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #bfa15f;
    font-style: italic;
    font-weight: bold;
}

/* Combo Features */
.combo-card h3 {
    color: #ffcc00;
}

.highlight {
    border: 2px solid #ffcc00;
    background-color: #2a2515;
}

.customization-box {
    background-color: #ffcc00;
    color: #121212;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #ffcc00;
}

footer p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ffcc00;
    margin-bottom: 5px;
}

footer .footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .navbar { flex-direction: column; gap: 10px; }
    .nav-links { padding: 0; }
    .tabs { flex-direction: column; gap: 10px; align-items: center; }
}
