/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Open+Sans:wght@400;600&family=Playfair+Display:wght@400;600;700&family=Noto+Sans:wght@400;600&family=Noto+Serif:wght@400;600;700&display=swap');

body {
  font-family: 'Noto Sans', 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #E7DEBE;
  color: #000000;
  line-height: 1.6;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.2rem;
}
.logo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-img {
  height: 160px;
  width: 160px;
  vertical-align: middle;
  margin-right: 0;
  display: inline-block;
  opacity: 1;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #000000;
  background: none;
  font-weight: 600;
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  padding: 0.5rem 1.2rem;
  border-radius: 0.6rem;
  transition: color 0.2s, text-decoration 0.2s;
}
.nav-links a:hover, .nav-links a:focus {
  color: #333333;
  text-decoration: underline;
  background: none;
}
.hero {
  background: #E7DEBE;
  text-align: center;
  padding: 0;
}

/* Welcome banner styles */
.welcome-banner {
  position: relative;
  width: 100%;
  height: 600px;
  max-height: 70vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%), url('out.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.welcome-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
}

.slide:first-child {
  transform: translateX(0);
}

.slide.active {
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.blank-slide {
  width: 100%;
  height: 100%;
  background: #E7DEBE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
}

.welcome-section {
  flex: 0 1 auto;
  text-align: center;
  margin-right: 4rem;
  max-width: 45%;
}

.welcome-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  word-wrap: break-word;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-subtitle {
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
  font-size: 1.3rem;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.3;
  word-wrap: break-word;
}

.daily-dishes-link {
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
  font-size: 1.3rem;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  word-wrap: break-word;
  text-decoration: none;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #000000;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.daily-dishes-link:hover {
  background: #000000;
  color: #E7DEBE;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.daily-dishes-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact-section-slide {
  flex: 0 1 auto;
  text-align: center;
  margin-left: 4rem;
  max-width: 45%;
}

.contact-section-slide h3 {
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info-slide p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #000000;
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
  word-wrap: break-word;
}

.contact-info-slide a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-slide a:hover {
  color: #333333;
  text-decoration: underline;
}

.opening-hours-slide {
  margin-top: 1.5rem;
  text-align: center;
}

.hours-title-slide {
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
}

.hours-details-slide {
  font-size: 0.8rem;
  line-height: 1.3;
  color: #333333;
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
}

.hours-details-slide div {
  margin-bottom: 0.3rem;
  word-wrap: break-word;
}

.contact-slide {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E7DEBE 0%, #f5f0d8 50%, #E7DEBE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.contact-slide-image {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
}

.contact-slide-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-slide-img:hover {
  transform: scale(1.05);
}

.contact-slide-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  z-index: 3;
}

.contact-slide-content h3 {
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-slide-info p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
}

.contact-slide-info a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.contact-slide-info a:hover {
  color: #333333;
  text-decoration: underline;
}

.opening-hours {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.hours-title {
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.hours-details {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333333;
}

.hours-details div {
  margin-bottom: 0.3rem;
}

/* Navigation dots */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #fff;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 3;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.site-title {
  font-family: 'Noto Sans', 'Open Sans', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.tagline {
  font-size: 1rem;
  color: #000000;
  font-family: 'Noto Sans', 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.promotional-heading {
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #000000;
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}

.promotional-slogan {
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
  margin: 0.5rem 0;
  line-height: 1.5;
}
.about-section {
  max-width: 800px;
  margin: 2.5rem auto 2rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  border: 1px solid #e0e0e0;
  text-align: center;
}
.about-section h2 {
  color: #000000;
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 400;
}
.about-section p {
  color: #000000;
  font-size: 1.15rem;
  line-height: 1.7;
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
}
.about-img {
  display: block;
  margin: 0 auto 2.5rem auto;
  width: 220px;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(26,35,126,0.08);
}
.about-banner {
  width: 100%;
  height: 500px;
  max-height: 60vh;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  background: #f8fafd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-banner:hover {
  transform: scale(1.01);
}

@media (max-width: 700px) {
  .welcome-banner {
    height: 500px;
    max-height: 70vh;
    background-attachment: scroll;
  }
  
  .welcome-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }
  
  .contact-slide-content {
    padding: 1rem;
  }
  
  .contact-slide-image {
    top: 15px;
    right: 20px;
  }
  
  .contact-slide-img {
    width: 60px;
    height: 60px;
    padding: 8px;
  }
  
  .contact-slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-slide-info p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .dots-container {
    bottom: 10px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .prev, .next {
    padding: 12px;
    font-size: 16px;
  }
  
  .about-banner {
    height: 300px;
    max-height: 45vh;
    border-radius: 0;
  }
  
  .blank-slide {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .welcome-section-single {
    max-width: 95%;
    margin: 0 auto;
  }
  
  .welcome-section-single .welcome-title {
    font-size: 2rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .welcome-section-single .daily-dishes-link {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    text-align: center;
    display: block;
    margin: 1rem auto 0 auto;
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .welcome-section {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .welcome-title {
    font-size: 1.5rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .welcome-subtitle {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .daily-dishes-link {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    text-align: center;
    display: block;
    margin: 1rem auto 0 auto;
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-section-slide {
    padding-left: 0;
    text-align: center;
    margin-top: 1rem;
  }
  
  .contact-section-slide h3 {
    font-size: 1.8rem;
  }
  
  .contact-info-slide p {
    font-size: 1rem;
  }
  
  .opening-hours-slide {
    text-align: center;
  }
}

/* Category Navigation Bar */
.category-nav-container {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 80px; /* Account for header height */
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Ensure sticky behavior works properly */
  will-change: transform;
  transform: translateZ(0);
}

.category-nav {
  display: flex;
  overflow-x: auto;
  padding: 1rem 2rem;
  gap: 1rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* Smooth scrolling for category navigation */
  scroll-behavior: smooth;
  /* Ensure proper scrolling on all devices */
  -webkit-overflow-scrolling: touch;
  /* Ensure proper flex behavior */
  align-items: center;
  /* Prevent wrapping */
  flex-wrap: nowrap;
}

.category-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

  .category-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-family: 'Noto Sans', 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    /* Ensure proper button sizing */
    min-width: max-content;
    /* Better focus visibility */
    outline: none;
  }

.category-btn:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  color: #212529;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-btn.active {
  background: #E7DEBE;
  border-color: #d4c9a8;
  color: #000000;
  box-shadow: 0 2px 8px rgba(231, 222, 190, 0.3);
  /* Enhanced active state visibility */
  transform: translateY(-1px);
  font-weight: 700;
  /* Ensure active button is always visible */
  position: relative;
  z-index: 2;
}

.category-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: #d4c9a8;
  border-radius: 2px;
}

/* Ensure smooth scrolling behavior */
.category-nav:focus-within {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.category-btn:focus {
  outline: 2px solid #E7DEBE;
  outline-offset: 2px;
}

.menu-category-section {
  margin-bottom: 3rem;
}

.menu-category-section h2 {
  text-align: center;
  font-family: 'Cinzel', Georgia, serif;
  color: #000000;
  margin-bottom: 2rem;
  font-size: 2rem;
  padding-top: 1rem;
}

.menu-section {
  position: relative;
  border-radius: 1.2rem;
  background-clip: padding-box;
  background-color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  margin: 3rem auto;
  max-width: 900px;
  padding: 2.5rem 1.5rem;
}
.menu-section h2 {
  text-align: center;
  font-family: 'Cinzel', Georgia, serif;
  color: #000000;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.menu-intro {
  text-align: center;
  margin: 1.2rem 0 2rem 0;
}
.menu-intro p {
  color: #000000;
  font-size: 1.18rem;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.menu-decor-top {
  margin-bottom: -1.2rem;
}
.menu-decor-top svg path {
  fill: #000000;
}
.menu-decor-bottom {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.menu-decor-bottom svg path,
.menu-decor-bottom svg circle {
  stroke: #333333;
  fill: #333333;
}
.menu-decor-bottom svg {
  opacity: 0.7;
}
.daily-specials {
  background: #e3eafc;
  border-radius: 0.8rem;
  padding: 1.2rem 1rem;
  margin: 0 auto 2rem auto;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.06);
  border: 1px solid #333333;
  text-align: center;
}
.daily-specials h3 {
  color: #000000;
  font-family: 'Cinzel', Georgia, serif;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}
.daily-specials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.daily-specials li {
  color: #333333;
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.menu-category {
  background: #f8fafd;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(26,35,126,0.04);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid #e3eafc;
}
.menu-category h3 {
  color: #000000;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 1px;
  font-weight: 600;
}
.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-category li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid #e3eafc;
  gap: 1.5rem;
}
.menu-category li:last-child {
  border-bottom: none;
}
.dish-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-right: 0.5rem;
  box-shadow: 0 2px 8px rgba(26,35,126,0.06);
  background: #e3eafc;
  border: 1px solid #e3eafc;
}
.dish-name {
  font-weight: 500;
  color: #000000;
  min-width: 120px;
  font-size: 1.1rem;
  font-family: 'Cinzel', Georgia, serif;
}
.dish-desc {
  color: #000000;
  flex: 1;
  margin: 0 1rem;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.dish-price {
  font-weight: 700;
  color: #333333;
  min-width: 50px;
  text-align: right;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.menu-nav button {
  background: #fff;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 0.8rem;
  padding: 0.8rem 1.7rem;
  font-size: 1.05rem;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
}
.menu-nav button:hover, .menu-nav button:focus {
  background: #000000;
  color: #fff;
  border: 2px solid #000000;
  transform: translateY(-2px) scale(1.04);
}
.phone-number {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #000000;
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.phone-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333333;
  transform: translateY(-1px);
}

.phone-link i {
  font-size: 1rem;
  color: #000000;
}

.lang-switcher {
  display: flex;
  gap: 0;
  margin-left: 1.5rem;
}
.lang-switcher button {
  background: none;
  color: #000000;
  border: none;
  border-radius: 0.6rem;
  padding: 0.4rem 1.1rem;
  font-size: 1rem;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
}
.lang-switcher button.active, .lang-switcher button:focus {
  color: #333333;
  text-decoration: underline;
  background: none;
  border: none;
}
.contact-reviews-social-section {
  width: 100%;
  max-width: none;
  margin: 0.5rem 0 0 0;
  padding: 1.5rem 0;
  background: #E7DEBE;
  position: relative;
}

@media (max-width: 700px) {
  .contact-reviews-social-section {
    padding: 1rem 0 1rem 0;
  }
}

.contact-reviews-social-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-side, .reviews-side, .social-side {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 1rem;
  border-radius: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-side:hover, .reviews-side:hover, .social-side:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-side h2, .reviews-side h2, .social-side h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 1rem;
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.social-link-large {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.6rem;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.social-link-large:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link-large i {
  font-size: 1.5rem;
  color: #000000;
}

.social-link-large span {
  font-size: 1rem;
  font-weight: 600;
}

.contact-section {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0 0;
  padding: 1.5rem 0 1.2rem 0;
  background: linear-gradient(120deg, #e3eafc 0%, #f8fafd 100%);
  border-radius: 0;
  box-shadow: 0 4px 32px rgba(26,35,126,0.10);
  position: relative;
}
.contact-section h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 1.2rem;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #e3eafc;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}
form button {
  background: #000000;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover {
  background: #333333;
}
.contact-info {
  text-align: center;
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  flex: 1;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.contact-info span,
.contact-info i {
  font-size: 1.2em;
  color: #000000;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
}

.contact-link {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, text-decoration 0.2s;
}
.contact-link:hover, .contact-link:focus {
  color: #333333;
  text-decoration: underline;
}
footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 1rem;
}
.qr-section {
  text-align: center;
  margin-bottom: 1rem;
}
.qr-section h3 {
  margin-bottom: 0.5rem;
  color: #000000;
  font-family: 'Cinzel', Georgia, serif;
}
.qr-img {
  width: 120px;
  height: 120px;
  margin-bottom: 0.5rem;
}
.image-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1rem;
}
.image-col {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}
.side-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(26,35,126,0.08);
}
.site-quote {
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  color: #000000;
  margin: 2.5rem auto 1.5rem auto;
  font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.5px;
  max-width: 700px;
}

/* Menu Button Styles */
.menu-button-container {
  text-align: center;
  margin: 2rem auto 4rem auto;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: black;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.menu-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.menu-button:hover::before {
  left: 100%;
}

.menu-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.menu-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #e8e8e8;
}

.menu-button-text {
  position: relative;
  z-index: 2;
}

.menu-button i {
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* Features Section Styling */
.features-section {
  padding: 2rem 0 4rem 0;
  background: #E7DEBE;
}

.features-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0 2rem;
}

.feature-circle {
  text-align: center;
  background: #fff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
  max-width: 200px;
  max-height: 200px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(26,35,126,0.1);
  border: 2px solid #e3eafc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  overflow: hidden;
}

.feature-circle h3, .feature-circle p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-width: 100%;
}

.feature-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(26,35,126,0.15);
}



.feature-circle h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.2rem;
  color: #000000;
  margin: 0 0 0.8rem 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-circle p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.9rem;
  color: #333333;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 900px) {
  .features-container {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .feature-circle {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    max-width: 180px;
    max-height: 180px;
    padding: 1.2rem;
  }
  

  
  .feature-circle h3 {
    font-size: 1.1rem;
  }
  
  .feature-circle p {
    font-size: 0.85rem;
  }
}

@media (max-width: 700px) {
  .features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    justify-items: center;
  }
  .feature-circle {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    max-width: 160px;
    max-height: 160px;
    padding: 1rem;
  }
  
  /* Mobile button styles */
  .menu-button {
    padding: 16px 28px;
    font-size: 1.1rem;
    gap: 10px;
  }
  
  .menu-button i {
    font-size: 1rem;
  }
}

.story-section {
  padding: 4rem 0;
  background: #f8fafd;
}

.story-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1.2rem;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 400;
}

.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.story-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(26,35,126,0.15);
  object-fit: cover;
}

/* Menu Page Styles */
.menu-hero {
  background: #E7DEBE;
  text-align: center;
  padding: 4rem 2rem 2.5rem 2rem;
}

.menu-hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 0.7rem;
  letter-spacing: 1.5px;
}

.menu-hero p {
  font-size: 1.25rem;
  color: #333333;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}

.menu-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
}

.menu-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #000000 #f0f0f0;
}

.menu-nav::-webkit-scrollbar {
  height: 6px;
}

.menu-nav::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.menu-nav::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 3px;
}

.menu-nav::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

.menu-btn {
  background: #fff;
  border: 2px solid #000000;
  color: #000000;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
  min-width: fit-content;
}

.menu-btn:hover, .menu-btn.active {
  background: #000000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,35,126,0.2);
}

.menu-category {
  display: none;
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid #e0e0e0;
}

.menu-category.active {
  display: block;
}

.menu-category h2 {
  text-align: center;
  font-family: 'Cinzel', Georgia, serif;
  color: #000000;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
  border-bottom: none;
}

.item-info {
  flex: 1;
}

.item-info h3 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.item-info p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.price {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  color: #000000;
  font-size: 1.2rem;
  margin-left: 1rem;
}

/* Drinks Section Styling */
.drinks-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8fafd;
  border-radius: 1rem;
  border: 1px solid #e3eafc;
}

.drinks-section:last-child {
  margin-bottom: 0;
}

.drinks-category {
  font-family: 'Cinzel', Georgia, serif;
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.drinks-category-title {
  font-family: 'Cinzel', Georgia, serif;
  color: #000000;
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.5rem;
  opacity: 0.9;
}

.drinks-section .menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.drinks-section .menu-item {
  background: #fff;
  padding: 1rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(26,35,126,0.06);
  border: 1px solid #e0e0e0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.drinks-section .menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,35,126,0.12);
}

@media (max-width: 700px) {
  .drinks-section .menu-items {
    grid-template-columns: 1fr;
  }
  
  .drinks-section {
    padding: 1rem;
  }
  
  .drinks-category {
    font-size: 1.2rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: #E7DEBE;
  text-align: center;
  padding: 4rem 2rem 2.5rem 2rem;
}

.contact-hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 0.7rem;
  letter-spacing: 1.5px;
}

.contact-hero p {
  font-size: 1.25rem;
  color: #333333;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}

.contact-page-section {
  padding: 3rem 0;
  background: #f8fafd;
}

.contact-page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-card, .hours-card, .social-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid #e0e0e0;
}

.contact-info-card {
  grid-column: 1 / -1;
}

.hours-card, .social-card {
  grid-column: span 1;
}

.contact-info-card h2, .hours-card h2, .social-card h2 {
  font-family: 'Cinzel', Georgia, serif;
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #000000;
  margin-top: 0.2rem;
  width: 1.5rem;
  text-align: center;
}

.contact-item h3 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #000000;
}

.time {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333333;
  font-weight: 500;
}

.time.closed {
  color: #e74c3c;
  font-weight: 600;
}

.social-links-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.social-link-page {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: #f8fafd;
  border-radius: 0.8rem;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  width: 100%;
  justify-content: center;
}

.social-link-page:hover {
  background: #e3eafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,35,126,0.15);
}

.social-link-page i {
  font-size: 1.5rem;
  color: #000000;
}

.social-link-page span {
  font-size: 1rem;
  font-weight: 600;
}
.map-container {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 0 auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,35,126,0.10);
}
.social-links {
  margin-top: 1.1em;
  display: flex;
  justify-content: center;
  gap: 1.2em;
}
.social-links i {
  font-size: 2rem;
  color: #000000;
  transition: color 0.2s;
}
.social-links a:hover i {
  color: #333333;
}
.reviews-section {
  background: #f8fafc;
  padding: 1.5em 0 2em 0;
  text-align: center;
  margin-top: -1em;
}
.reviews-section h2 {
  font-family: 'Montserrat', serif;
  font-size: 2.2em;
  color: #1a3a6b;
  margin-bottom: 1.2em;
}
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(30, 60, 120, 0.08);
  padding: 1.8em 1.5em 1.5em 1.5em;
  max-width: 300px;
  min-width: 250px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.review-stars {
  color: #f7b731;
  font-size: 1.6em;
  margin-bottom: 0.6em;
  text-align: center;
}
.review-text {
  font-size: 1em;
  color: #000000;
  margin-bottom: 1em;
  font-style: italic;
  line-height: 1.5;
  flex-grow: 1;
}
.reviewer {
  font-weight: 600;
  color: #1a3a6b;
  font-size: 1em;
}
.review-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.review-link:hover .review-card {
  box-shadow: 0 8px 28px rgba(30, 60, 120, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}
.more-reviews-btn {
  display: inline-block;
  margin: 2em auto 0 auto;
  padding: 0.8em 2.2em;
  background: #1a3a6b;
  color: #fff;
  border-radius: 30px;
  font-family: 'Montserrat', serif;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30, 60, 120, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.more-reviews-btn:hover {
  background: #2956a3;
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.16);
}
@media (max-width: 900px) {
  .image-row {
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: center;
  }
  .side-img {
    max-width: 90vw;
  }
  .story-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .story-text h2 {
    font-size: 1.8rem;
  }
  .story-text p {
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }
  .nav-links {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .nav-links a {
    padding: 0.3rem 0.5rem;
    font-size: 0.9em;
  }
  .phone-number {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .phone-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
  
  .lang-switcher {
    margin-top: 0.5rem;
  }
  
  .category-nav-container {
    top: 120px; /* Account for mobile header height */
  }
  
  .category-nav {
    padding: 0.8rem 1rem;
    gap: 0.8rem;
    /* Ensure proper scrolling on mobile */
    scroll-snap-type: x mandatory;
  }
  
  .category-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    /* Add scroll snap for better mobile experience */
    scroll-snap-align: start;
  }
  
  /* Enhanced mobile active state */
  .category-btn.active {
    background: #E7DEBE;
    border-color: #d4c9a8;
    color: #000000;
    box-shadow: 0 2px 8px rgba(231, 222, 190, 0.3);
    transform: translateY(-1px);
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  
  .category-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #d4c9a8;
    border-radius: 2px;
  }
  .menu-section {
    padding: 1rem;
  }
  .about-section, .contact-section {
    padding: 1rem 0.5rem;
  }
  .menu-category {
    padding: 1rem 0.5rem;
  }
  .dish-img {
    width: 70px;
    height: 70px;
    border-radius: 0.8rem;
  }
  .menu-nav {
    gap: 0.6rem;
  }
  .menu-nav button {
    padding: 0.6rem 1rem;
    font-size: 0.98rem;
  }
  .reviews-container {
    flex-direction: column;
    gap: 1.2em;
  }
  .review-card {
    max-width: 95vw;
    min-width: 0;
  }
  .contact-reviews-social-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0 0.6rem;
  }
  .contact-side, .reviews-side, .social-side {
    flex: 1 1 0;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.6rem 0.6rem;
  }
  
  .contact-side h2, .reviews-side h2, .social-side h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .social-links-large {
    gap: 0.5rem;
  }
  
  .social-link-large {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .social-link-large i {
    font-size: 1.2rem;
  }
  
  .social-link-large span {
    font-size: 0.9rem;
  }
  .menu-nav {
    gap: 0.5rem;
  }
  .menu-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .menu-section {
    padding: 1rem;
  }
  .menu-category {
    padding: 1.5rem;
  }
  .contact-page-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-info-card, .hours-card, .social-card {
    padding: 1.5rem;
  }
  /* Make menu items stack and fit screen */
  .menu-section, .menu-category, .menu-items, .menu-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7em 0.5em;
    margin-bottom: 0.7em;
    border-bottom: 1px solid #eee;
  }
  .menu-item-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .menu-item-price {
    color: #333333;
    font-weight: bold;
    margin-left: 1em;
    white-space: nowrap;
  }
  .menu-item-desc {
    font-size: 0.98em;
    color: #000000;
    margin-top: 0.2em;
    margin-left: 0;
  }
  /* Reduce padding/margin for headings */
  .menu-category h2, .menu-category h3 {
    margin-top: 0.7em;
    margin-bottom: 0.4em;
    font-size: 1.2em;
  }
  .menu-category li {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.3rem !important;
    padding: 0.7rem 0 !important;
  }
  .dish-name, .dish-desc, .dish-price {
    min-width: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
    word-break: break-word;
    text-align: left;
  }
  .dish-img {
    margin-bottom: 0.5em;
    margin-right: 0;
    width: 60px;
    height: 60px;
  }
} 

/* About Page Styles */
.about-hero {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}

.about-hero .about-banner {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.about-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-hero-content h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.5rem;
  color: #000000;
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #333333;
  margin: 0;
  font-weight: 500;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem 2rem;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

.about-image-section {
  width: 100%;
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-content-image:hover {
  transform: scale(1.02);
}

/* Responsive design for About page */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-hero-content {
    padding: 1.5rem 2rem;
  }
  
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .about-hero-content p {
    font-size: 1.1rem;
  }
  
  .about-image-section {
    margin: 1.5rem 0;
  }
  
  .about-banner {
    height: 400px;
    max-height: 55vh;
  }
}

@media (max-width: 600px) {
  .about-content {
    padding: 0 1rem 2rem 1rem;
  }
  
  .about-hero-content {
    padding: 1rem 1.5rem;
    width: 90%;
  }
  
  .about-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .about-hero-content p {
    font-size: 1rem;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-image-section {
    margin: 1rem 0;
  }
  
  .about-content-image {
    border-radius: 0.6rem;
  }
} 

/* Home page hero banner image (make it much taller) */
.hero .about-banner {
  width: 100%;
  max-width: 100%;
  height: 400px;
  max-height: 60vh;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 1.2rem;
  background: #f8fafd;
}
@media (max-width: 700px) {
  .hero .about-banner {
    height: 300px;
    max-height: 50vh;
  }
} 

@media (max-width: 700px) {
  .contact-side, .reviews-side, .social-side {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }
} 

@media (max-width: 700px) {
  .contact-side .contact-info {
    font-size: 0.95em;
    line-height: 1.2;
  }
  .contact-side .contact-info > div {
    margin-bottom: 0.2em;
  }
  .contact-side .contact-info div[style*="font-size:1.2em;"] {
    font-size: 1em !important;
  }
  .contact-side .contact-info div[style*="font-size: 0.9em;"] {
    font-size: 0.85em !important;
  }
} 

@media (max-width: 700px) {
  .menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.3rem 0.2rem;
    overflow-x: unset;
    white-space: normal;
  }
  .menu-nav button, .menu-btn {
    font-size: 0.92em;
    padding: 0.4em 0.7em;
    flex: 1 1 30%;
    min-width: 90px;
    max-width: 33vw;
    margin-bottom: 0.3em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: border-box;
  }
  .menu-nav button:nth-child(4),
  .menu-nav button:nth-child(5) {
    flex-basis: 48%;
    max-width: 48vw;
  }
} 

@media (max-width: 700px) {
  .site-title {
    font-size: 1.1em;
    white-space: normal;
  }
} 

@media (max-width: 480px) {
  .welcome-banner {
    height: 450px;
    max-height: 65vh;
  }
  
  .about-banner {
    height: 250px;
    max-height: 40vh;
  }
  
  /* Extra small mobile button styles */
  .menu-button {
    padding: 14px 24px;
    font-size: 1rem;
    gap: 8px;
  }
  
  .menu-button i {
    font-size: 0.9rem;
  }
} 

.welcome-section-single {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.welcome-section-single .welcome-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.welcome-section-single .daily-dishes-link {
  font-family: 'Noto Sans', 'Open Sans', sans-serif;
  font-size: 1.5rem;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  word-wrap: break-word;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #000000;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.welcome-section-single .daily-dishes-link:hover {
  background: #000000;
  color: #E7DEBE;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.welcome-section-single .daily-dishes-link:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Additional improvements for very small screens */
@media (max-width: 480px) {
  .category-nav-container {
    top: 100px; /* Adjust for smaller mobile header */
  }
  
  .category-nav {
    padding: 0.6rem 0.8rem;
    gap: 0.6rem;
  }
  
  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    /* Ensure minimum touch target size */
    min-height: 44px;
    /* Better text handling for long category names */
    word-break: break-word;
    hyphens: auto;
  }
  
  /* Enhanced active state for small screens */
  .category-btn.active {
    background: #E7DEBE;
    border-color: #d4c9a8;
    color: #000000;
    box-shadow: 0 2px 8px rgba(231, 222, 190, 0.4);
    transform: translateY(-1px);
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  
  .category-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 4px;
    background: #d4c9a8;
    border-radius: 2px;
  }
}

/* Ensure smooth scrolling behavior across all devices */
.category-nav {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Better focus management for accessibility */
.category-btn:focus-visible {
  outline: 2px solid #E7DEBE;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(231, 222, 190, 0.3);
}

/* Desktop/Laptop Menu Layout Improvements */
@media (min-width: 768px) {
  .menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
      "name price"
      "description description";
    gap: 0.5rem 1rem;
    align-items: start;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e8e8e8;
  }

  .menu-item-name {
    grid-area: name;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .menu-item-name strong {
    font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
  }

  .menu-item-price {
    grid-area: price;
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #000000;
    text-align: right;
    white-space: nowrap;
    padding-left: 1rem;
    border-left: 2px solid #E7DEBE;
    min-width: 80px;
  }

  .menu-item-desc {
    grid-area: description;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-top: 0.3rem;
    font-style: italic;
  }

  /* Enhanced spacing for larger screens */
  .menu-category-section {
    margin-bottom: 3rem;
  }

  .menu-category-section h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #E7DEBE;
    text-align: center;
    letter-spacing: 1px;
  }

  /* Hover effects for desktop */
  .menu-item:hover {
    background: rgba(231, 222, 190, 0.05);
    border-radius: 8px;
    padding: 1.2rem 1rem;
    margin: 0 -1rem;
    transition: all 0.2s ease;
  }

  .menu-item:hover .menu-item-price {
    color: #8B7355;
    border-left-color: #8B7355;
  }
}

/* Large Desktop Enhancements */
@media (min-width: 1200px) {
  .menu-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .menu-item {
    padding: 1.5rem 0;
    gap: 0.8rem 1.5rem;
  }

  .menu-item-name strong {
    font-size: 1.3rem;
  }

  .menu-item-price {
    font-size: 1.4rem;
    min-width: 90px;
  }

  .menu-item-desc {
    font-size: 1rem;
  }

  .menu-category-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
}
