:root {
    --primary-color: #2D3E50;
    --secondary-color: #F3F3F3;
    --accent-color: #E63946;
    --font-stack: "Helvetica Neue", Arial, sans-serif;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack);
    color: var(--primary-color);
    background: #FFF;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Header & Nav */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #FFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    gap: 2em;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed);
}

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

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 1em;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0,0,0,0.1));
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: 14000;
    text-shadow: 
    -1px -1px 0 black,
    1px -1px 0 black,
   -1px  1px 0 black,
    1px  1px 0 black;
    margin-bottom: 0.5em;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    text-shadow: 
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
    margin-bottom: 1.5em;
    animation: fadeInUp 1.5s ease forwards;
}
.btn-primary {
    background: var(--accent-color);
    color: #FFF;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background var(--transition-speed);
    animation: fadeInUp 2s ease forwards;
    box-shadow: 0 4px 8px rgba(0,0,0,0.7);
}

.btn-primary:hover {
    background: #c0283b;
}

/* About */
.about {
    padding: 5em 2em;
    background: var(--secondary-color);
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1em;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Menu */
.menu {
    padding: 5em 2em;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2em;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.5em auto;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.menu-item {
    background: #FFF;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 280px;
    transition: transform var(--transition-speed);
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    display: block;
}

.menu-item h3 {
    font-size: 1.25rem;
    margin: 1em;
    color: var(--accent-color);
}

.desc, .price {
    margin: 0 1em 1em 1em;
}

.price {
    font-weight: bold;
}

.hidden {
    display: none;
}


/* Offers & Events */
.offers {
    padding: 5em 2em;
    background: var(--secondary-color);
    text-align: center;
}

.offers-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.offer-item {
    max-width: 300px;
    text-align: left;
    padding: 1em;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.offer-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

/* Delivery */
.delivery {
    padding: 5em 2em;
    text-align: center;
}

.delivery-links {
    margin-top: 2em;
    display: flex;
    gap: 2em;
    justify-content: center;
}

.delivery-btn {
    background: var(--primary-color);
    color: #FFF;
    padding: 0.75em 1.5em;
    border-radius: 5px;
    text-decoration: none;
    transition: background var(--transition-speed);
}

.delivery-btn:hover {
    background: #1B2A38;
}

/* Contact */
.contact {
    padding: 5em 2em;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #FFF;
    padding: 3em;
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #FFF;
        width: 60%;
        height: 100vh;
        padding-top: 2em;
        transition: left var(--transition-speed);
    }

    .nav-list.show {
        left: 0;
    }

    .burger {
        display: flex;
    }

    .menu-grid {
        flex-direction: column;
        align-items: center;
    }

    .offers-content {
        flex-direction: column;
    }

    .delivery-links {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-page {
    padding: 5em 2em;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .menu-section {
    margin-bottom: 3em;
  }
  
  .menu-section-title {
    font-size: 1.75rem;
    margin-bottom: 1em;
    color: var(--accent-color); /* Or any color from your palette */
  }
  
  .menu-item-line {
    margin-bottom: 1.5em;
    padding: 1em;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .item-name-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }
  
  .item-name {
    font-size: 1rem;
  }
  
  .item-price {
    font-size: 1rem;
  }
  
  .item-description {
    margin-top: 0.5em;
    line-height: 1.4;
    color: var(--primary-color); /* Or a secondary text color */
  }
  