/* Global Styles */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #333333;
    --accent: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.alt-bg {
    background-color: var(--gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--black);
    margin: 15px auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--black);
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-top: -5px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--black);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--gray);
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Menu Sections */
.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 5px;
    display: inline-block;
}

.ingredients {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--dark-gray);
}

.item-name {
    font-weight: 500;
}

.item-price {
    font-weight: 700;
}

.promo-banner {
    background-color: var(--black);
    color: var(--white);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
}

.promo-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.promo-banner .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 10px;
}

.add-ons {
    margin-top: 40px;
}

.add-ons h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--dark-gray);
}

table th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Location Section */
.location-content {
    display: flex;
    gap: 50px;
}

.address {
    flex: 1;
}

.address h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address i {
    width: 20px;
    text-align: center;
}

.map {
    flex: 1;
    height: 400px;
    background-color: #ddd;
    border: 1px solid var(--black);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content .logo h2 {
    color: var(--white);
    font-size: 1.8rem;
}

.footer-content .logo p {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
    }
    
    .map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
/* Default styles (for desktop) */
body {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
  .menu {
    display: block; /* Stack menu items vertically */
  }
}