/* Navigation Styles (Unchanged) */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    background-color: rgba(59, 46, 47, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo-circle {
    width: 70px;
    height: 70px;
    background-color: #f8f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #423738;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-circle img {
    display: block;
    padding: 0;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav-links li a {
    color: #f9f6f6;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f0c14b;
}

.nav-links li::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #f0c14b;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-links li:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Menu Hero Section (Unchanged) */
.menu-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(66, 55, 56, 0.9) 0%, rgba(42, 31, 32, 0.9) 100%);
    position: relative;
    background-image: url('images/DSC08094_11zon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #f8f5f5;
    text-align: center;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 55, 56, 0.8);
    /* Removed backdrop blur for smoother scrolling */
    z-index: 1;
}

.menu-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Menu Open CTA and Chevrons */
.menu-open-cta {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(229,147,18,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.menu-open-cta:hover,
.menu-open-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(229,147,18,0.35);
    opacity: 0.95;
    outline: none;
}

.hero-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    position: relative;
    z-index: 2;
}
.hero-chevrons span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    opacity: 0.8;
    animation: chevronDown 1.6s infinite;
}
.hero-chevrons span:nth-child(2) { animation-delay: 0.15s; opacity: 0.65; }
.hero-chevrons span:nth-child(3) { animation-delay: 0.3s; opacity: 0.5; }

@keyframes chevronDown {
    0% { transform: translateY(-4px) rotate(45deg); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(6px) rotate(45deg); opacity: 0; }
}

/* Menu Introduction (Unchanged) */
.menu-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f5 0%, #e8e4e4 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Menu Categories */
.menu-categories {
    padding: 80px 0; /* Adjusted in media queries */
    background: linear-gradient(135deg, #423738 0%, #2a1f20 100%);
    position: relative;
    background-image: url('images/DSC08115_11zon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.menu-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 55, 56, 0.9);
    /* Removed backdrop blur for smoother scrolling */
    z-index: 1;
}

.menu-categories .container {
    position: relative;
    z-index: 2;
}

.menu-category {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1.5px solid rgba(229,147,18,0.25);
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}

.menu-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
    border-color: rgba(229,147,18,0.45);
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
    cursor: pointer;
    position: relative;
}
.category-header:hover {
    filter: brightness(1.02);
}

.category-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #423738;
    margin: 0;
    flex: 1;
}

.category-header::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 3px solid #E59312;
    border-bottom: 3px solid #E59312;
    transform: rotate(45deg);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.9;
}

.menu-category.open .category-header::after {
    transform: rotate(-135deg);
}

.category-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #f0c14b 0%, #e6b800 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(240, 193, 75, 0.3);
}

.category-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.menu-items {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-items.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.menu-subcategory {
    margin-bottom: 24px;
}
.menu-subcategory + .menu-subcategory {
    border-top: 1px dashed rgba(66,55,56,0.25);
    padding-top: 18px;
}

.menu-subcategory h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a1f20;
    margin-bottom: 14px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(229,147,18,0.12);
    border: 1px solid rgba(229,147,18,0.4);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    color: #423738;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item .price {
    font-weight: 700;
    color: #E59312;
    background: rgba(229,147,18,0.12);
    padding: 4px 10px;
    border-radius: 999px;
}

.menu-item span:first-child {
    max-width: 100%;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229,147,18,0.12);
    border-color: rgba(229,147,18,0.3);
}

/* Menu Footer (Unchanged) */
.menu-footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f5 0%, #e8e4e4 100%);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-quote {
    font-size: 2rem;
    font-weight: 600;
    color: #423738;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

/* Media Queries for Menu Card and Overlap Fix */
@media (max-width: 900px) {
    body {
        padding-top: 70px; /* Offset for fixed header */
    }

    .menu-categories {
        padding: 60px 0; /* Reduced padding, header offset handled by body */
    }

    .menu-hero {
        padding: 80px 0 60px; /* Adjusted for mobile, below header */
    }

    .container {
        padding: 0 15px; /* Reduced padding for tighter fit */
        width: 100%; /* Ensure container spans full viewport */
        max-width: 100%; /* Remove max-width constraint */
        box-sizing: border-box;
    }

    .menu-category {
        width: 100%; /* Full-width menu card */
        max-width: 100%; /* Ensure no width constraints */
        margin: 0 0 30px 0; /* Remove side margins, keep bottom margin */
        padding: 30px 20px; /* Reduced padding, ensure content fits */
        border-radius: 15px; /* Slightly smaller border radius */
        text-align: center; /* Center all text */
        box-sizing: border-box; /* Prevent padding overflow */
    }

    .category-header {
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center horizontally */
        gap: 15px; /* Reduced gap */
    }

    .category-header h2 {
        font-size: 2rem; /* Smaller for mobile */
        text-align: center;
    }

    .category-icon {
        width: 70px; /* Smaller icon */
        height: 70px;
        font-size: 2.8rem;
    }

    .category-content p {
        font-size: 1.1rem; /* Smaller text */
        text-align: center;
    }

    .menu-items {
        grid-template-columns: 1fr; /* Single column */
        gap: 15px; /* Reduced gap */
    }

    .menu-subcategory h3 {
        font-size: 1.4rem; /* Smaller for mobile */
        text-align: center;
    }

    .menu-item {
        flex-direction: column; /* Stack name and price */
        align-items: center; /* Center items */
        padding: 8px 0; /* Adjusted padding */
        font-size: 0.95rem; /* Smaller text */
    }

    .menu-item .price {
        font-size: 0.95rem;
        margin-top: 5px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        background: rgba(66, 55, 56, 0.98);
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 70px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        border-radius: 0;
        transform: translateX(100%);
        transition: transform 0.3s, opacity 0.3s;
        padding: 1rem 0;
        opacity: 0;
        pointer-events: none;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li a {
        color: #f4f3f3;
        padding: 2rem 3rem;
        display: block;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Maintain header offset */
    }

    .menu-categories {
        padding: 50px 0; /* Further reduced padding */
    }

    .menu-hero {
        padding: 70px 0 50px; /* Adjusted for smaller screens */
    }

    .container {
        padding: 0 10px; /* Tighter padding */
        width: 100%;
        max-width: 100%;
    }

    .menu-category {
        padding: 25px 15px; /* Tighter padding */
        border-radius: 12px; /* Smaller border radius */
    }

    .category-header h2 {
        font-size: 1.8rem; /* Smaller for smaller screens */
    }

    .category-icon {
        width: 60px; /* Smaller icon */
        height: 60px;
        font-size: 2.5rem;
    }

    .category-content p {
        font-size: 1rem; /* Smaller text */
    }

    .menu-subcategory h3 {
        font-size: 1.3rem; /* Smaller titles */
    }

    .menu-item {
        font-size: 0.9rem; /* Smaller text */
    }

    .menu-item .price {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .footer-quote {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px; /* Maintain header offset */
    }

    .menu-categories {
        padding: 40px 0; /* Minimal padding */
    }

    .menu-hero {
        padding: 60px 0 40px; /* Minimal padding */
    }

    .container {
        padding: 0 5px; /* Minimal padding */
        width: 100%;
        max-width: 100%;
    }

    .menu-category {
        padding: 20px 10px; /* Minimal padding */
        border-radius: 10px; /* Minimal border radius */
    }

    .category-header h2 {
        font-size: 1.6rem; /* Minimal font size */
    }

    .category-icon {
        width: 50px; /* Smallest icon */
        height: 50px;
        font-size: 2rem;
    }

    .category-content p {
        font-size: 0.95rem; /* Smallest text */
    }

    .menu-subcategory h3 {
        font-size: 1.2rem; /* Smallest titles */
    }

    .menu-item {
        font-size: 0.85rem; /* Smallest text */
    }

    .menu-item .price {
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .footer-quote {
        font-size: 1.4rem;
    }
}

@media (min-width: 901px) {
    .nav-links {
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-links li a {
        text-align: left;
    }

    .hamburger {
        display: none;
    }
}

.menu-item span {
  overflow-wrap: break-word;
  hyphens: auto; /* Optional for better wrapping */
}
.menu-item .price {
  white-space: nowrap; /* Prevent price from wrapping internally */
}

.site-footer {
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  color: #fff;
  padding: 48px 0 16px 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  padding: 0 24px;
  gap: 40px;
}

.footer-description {
  flex: 2 1 320px;
  margin-bottom: 24px;
}

.footer-description h2 {
  font-family: 'Playfair Display', serif;
  color: #E59312;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-description p {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-reserve-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  margin-top: 10px;
}

.footer-reserve-btn:hover {
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
}

.footer-contact {
  flex: 1 1 260px;
  margin-bottom: 24px;
}

.footer-contact h3 {
  color: #E59312;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #E59312;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #b49a8f;
  font-size: 0.95rem;
  padding-top: 12px;
  border-top: 1px solid rgba(229,147,18,0.12);
  letter-spacing: 0.5px;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #E59312;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #E59312;
  color: #fff;
}


/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    padding: 0 10px;
  }
  .footer-description,
  .footer-contact {
    margin-bottom: 10px;
  }
}
