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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #45a049cc;
  color: #333;
  overflow-x: hidden;
  /* Handle iPhone notch and safe areas */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* iPhone status bar styling */
@supports (padding: max(0px)) {
  body {
    background: linear-gradient(
      135deg,
      rgba(76, 175, 80, 0.9) 0%,
      rgba(69, 160, 73, 0.8) 100%
    );
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: rgba(255, 255, 255, 0.185); */
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  /* Handle iPhone notch */
  padding-top: env(safe-area-inset-top);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}

.logo {
  margin: 6px auto;
  padding-top: 6px;
  height: 150px;
  width: auto;
  max-width: 250px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #222222;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ff9800;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff9800;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #222222;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  /* Account for safe area on mobile */
  min-height: calc(
    100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom)
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.9) 0%,
    rgba(69, 160, 73, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  /* padding-top: 1rem; */
  color: white;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 36px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(45deg, #ff9800, #ff6f00);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.6);
  background: linear-gradient(45deg, #ff6f00, #e65100);
}

.btn-secondary {
  background: transparent;
  color: #4caf50;
  border: 2px solid #4caf50;
}

.btn-secondary:hover {
  background: #4caf50;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Hero section specific secondary button styling */
.hero .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero .btn-secondary:hover {
  background: white;
  color: #4caf50;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-image {
  position: relative;
}

.truck-image {
  width: 100%;
  height: auto;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
  transform: perspective(1000px) rotateY(-5deg);
  transition: none;
  /* Animation for appearing from the right */
  animation: slideInFromRight 2s ease-out forwards;
  opacity: 1;
  transform: translateX(100px) perspective(1000px) rotateY(-5deg);
}

/* Create a class that gets applied after the slide-in completes */
.truck-image.loaded {
  animation: none;
  opacity: 1;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.truck-image.loaded:hover {
  animation: bumpyRoad 1.2s ease-in-out infinite;
}

/* Keyframe animation for truck image */
@keyframes slideInFromRight {
  0% {
    transform: translateX(150px) perspective(1000px) rotateY(-5deg);
  }
  100% {
    transform: translateX(0) perspective(1000px) rotateY(-5deg);
  }
}

/* Mobile version without perspective transform */
@keyframes slideInFromRightMobile {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Bumpy road animation for truck hover effect */
@keyframes bumpyRoad {
  0% {
    transform: perspective(1000px) rotateY(-5deg) translateY(0px) rotate(0deg)
      translateX(0px);
  }
  12% {
    transform: perspective(1000px) rotateY(-4.5deg) translateY(-2px)
      rotate(0.3deg) translateX(0px);
  }
  25% {
    transform: perspective(1000px) rotateY(-5.2deg) translateY(1px)
      rotate(-0.2deg) translateX(0px);
  }
  38% {
    transform: perspective(1000px) rotateY(-4.8deg) translateY(-1px)
      rotate(0.4deg) translateX(0px);
  }
  50% {
    transform: perspective(1000px) rotateY(-5.1deg) translateY(0px)
      rotate(-0.1deg) translateX(0px);
  }
  62% {
    transform: perspective(1000px) rotateY(-4.7deg) translateY(-1.5px)
      rotate(0.2deg) translateX(0px);
  }
  75% {
    transform: perspective(1000px) rotateY(-5.3deg) translateY(0.5px)
      rotate(-0.3deg) translateX(0px);
  }
  88% {
    transform: perspective(1000px) rotateY(-4.9deg) translateY(-1px)
      rotate(0.1deg) translateX(0px);
  }
  100% {
    transform: perspective(1000px) rotateY(-5deg) translateY(0px) rotate(0deg)
      translateX(0px);
  }
}

/* About Section */
.about {
  padding: 100px 20px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.highlight {
  color: #ff9800;
  font-weight: 700;
}

.about p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ff6f00;
  transform: translateX(5px);
}

.chef-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Menu Preview Section */
.menu-preview {
  padding: 100px 20px;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 50px;
}
.schedule-instructions {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: left;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  justify-items: center;
}

.menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

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

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-item h3 {
  padding: 20px;
  font-size: 1.3rem;
  color: #2c3e50;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.menu-cta {
  text-align: center;
}

/* Catering Section */
.catering {
  padding: 100px 20px;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  text-align: center;
}

.catering h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.catering p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.catering .btn-primary {
  background: white;
  color: #4caf50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.catering .btn-primary:hover {
  background: #f8f9fa;
  color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Location Section */
.location {
  padding: 100px 20px;
  background: white;
}

.location-content {
  text-align: center;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.location-item i {
  color: #ff9800;
  font-size: 1.5rem;
}

/* Schedule Display Styles */
.schedule-container {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.schedule-header i {
  color: #ff9800;
  font-size: 1.8rem;
}

.schedule-header h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin: 0;
}

.schedule-loading {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.schedule-loading i {
  font-size: 2rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.schedule-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff9800;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.schedule-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #f0f7ff;
}

.schedule-item[data-location]:hover::after {
  content: "📍 Click to open in Google Maps";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  animation: fadeInTooltip 0.3s ease forwards;
}

@keyframes fadeInTooltip {
  to {
    opacity: 1;
  }
}

/* Mobile version of bumpy road animation */
@keyframes bumpyRoadMobile {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  12% {
    transform: translateY(-1px) rotate(0.2deg);
  }
  25% {
    transform: translateY(0.5px) rotate(-0.1deg);
  }
  38% {
    transform: translateY(-0.8px) rotate(0.3deg);
  }
  50% {
    transform: translateY(0px) rotate(-0.1deg);
  }
  62% {
    transform: translateY(-1px) rotate(0.2deg);
  }
  75% {
    transform: translateY(0.3px) rotate(-0.2deg);
  }
  88% {
    transform: translateY(-0.5px) rotate(0.1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.schedule-item.today {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-left-color: #4caf50;
}

.schedule-date {
  min-width: 120px;
  margin-right: 20px;
}

.schedule-day {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.schedule-date-text {
  color: #666;
  font-size: 0.9rem;
}

.schedule-details {
  flex: 1;
}

.schedule-time {
  font-weight: 600;
  color: #ff9800;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.schedule-location {
  color: #666;
  font-size: 1rem;
}

.schedule-error {
  text-align: center;
  padding: 30px;
  color: #666;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #ddd;
}

/* Multiple locations per day styling */
.schedule-day-group {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.schedule-day-group.today {
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.schedule-date-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-day-group.today .schedule-date-header {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.schedule-multiple-note {
  background: #4caf50;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.schedule-locations-list {
  background: white;
}

.schedule-item.multiple-location {
  margin-bottom: 0;
  border-radius: 0;
  border-left: none;
  border-bottom: 1px solid #f0f0f0;
  background: white;
}

.schedule-item.multiple-location:last-child {
  border-bottom: none;
}

.schedule-item.multiple-location:hover {
  background: #f8f9fa;
  transform: none;
  box-shadow: none;
}

.schedule-item.multiple-location .schedule-details {
  padding-left: 20px;
}

/* Schedule refresh button */
.schedule-refresh-container {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.schedule-refresh-btn {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.schedule-refresh-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, #4caf50);
}

.schedule-refresh-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.schedule-refresh-btn i {
  margin-right: 8px;
}

/* Contact Section */
.contact {
  padding: 100px 20px;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.contact-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-item a {
  color: #666;
  text-decoration: none;
}

.contact-item a:hover {
  color: #ff9800;
}

.social-media {
  text-align: center;
}

.social-media h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ff9800;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ff6f00;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #45a049;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-emojis {
  font-size: 1.5rem;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 10px;
  }

  .menu-item {
    width: 100%;
    max-width: 300px;
    min-width: 250px;
  }

  .menu-item img {
    height: 220px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* iPhone notch and safe area handling */
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  /* Navigation adjustments for mobile */
  .navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-container {
    height: 120px;
    padding: 0 15px;
    justify-content: flex-end;
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }

  .logo {
    height: 100px;
    max-width: 180px;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 120px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
    gap: 20px;
    z-index: 9;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 11;
  }

  /* Hero section improvements */
  .hero {
    padding: 120px 15px 20px;
    height: 100vh;
    min-height: unset;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    height: 100%;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .truck-image {
    transform: none;
    position: relative;
    animation: slideInFromRightMobile 1.5s ease-out forwards;
    opacity: 1;
    top: -3vh;
    transition: none;
  }

  .truck-image.loaded {
    animation: none;
    opacity: 1;
    transform: none;
    transition: transform 0.3s ease;
  }

  .truck-image.loaded:hover {
    animation: bumpyRoadMobile 1.2s ease-in-out infinite;
  }

  /* Section spacing improvements */
  .about,
  .menu-preview,
  .catering,
  .location,
  .contact {
    padding: 60px 15px;
  }

  .chef-image {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    object-position: top;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 5px;
    max-width: 500px;
    margin: 0 auto 50px auto;
  }

  .menu-item {
    margin-bottom: 15px;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 260px;
    display: flex;
    flex-direction: column;
  }

  .menu-item img {
    height: 180px;
    border-radius: 15px 15px 0 0;
  }

  .menu-item h3 {
    padding: 12px;
    font-size: 1.1rem;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
  }

  /* Schedule container mobile improvements */
  .schedule-container {
    padding: 20px;
    margin-bottom: 25px;
  }

  .schedule-header h3 {
    font-size: 1.3rem;
  }

  .schedule-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 10px;
    cursor: pointer;
  }

  .schedule-item[data-location]:hover::after {
    content: "📍 Tap to open in Maps";
    font-size: 0.7rem;
    top: -30px;
  }

  .schedule-date {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .schedule-day {
    font-size: 1rem;
  }

  .schedule-time {
    font-size: 1rem;
  }

  .schedule-location {
    font-size: 0.9rem;
  }

  /* Multiple locations mobile styling */
  .schedule-day-group {
    margin-bottom: 15px;
    border-radius: 8px;
  }

  .schedule-date-header {
    padding: 12px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .schedule-multiple-note {
    align-self: flex-end;
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  .schedule-item.multiple-location {
    padding: 12px 15px;
  }

  .schedule-item.multiple-location .schedule-details {
    padding-left: 0;
  }

  /* Contact info improvements */
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 25px 20px;
  }

  .contact-item i {
    font-size: 1.8rem;
  }

  /* Location item improvements */
  .location-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .location-item i {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Footer improvements */
  .footer {
    padding: 25px 15px;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }

  /* Container padding adjustment */
  .container {
    padding: 0 15px;
  }
}

/* Small tablet styles */
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    max-width: 400px;
  }

  .menu-item {
    border-radius: 12px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
  }

  .menu-item img {
    height: 160px;
  }

  .menu-item h3 {
    padding: 10px;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-container {
    height: 70px;
    padding: 0 10px;
    justify-content: flex-end;
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .logo {
    padding-top: 10px;
    height: 80px;
    max-width: 150px;
  }

  .nav-toggle {
    position: relative;
    left: -10px;
    z-index: 11;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .schedule-container {
    padding: 15px;
  }

  .schedule-item {
    padding: 12px;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 350px;
    gap: 10px;
  }

  .menu-item img {
    height: 140px;
  }

  .menu-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
  }

  .menu-item h3 {
    padding: 8px;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
  }

  .nav-menu {
    top: 70px;
    padding: 25px 0;
  }

  .hero {
    padding: 100px 10px 20px;
    height: 100vh;
    min-height: unset;
  }

  .about,
  .menu-preview,
  .catering,
  .location,
  .contact {
    padding: 40px 10px;
  }

  .container {
    padding: 0 10px;
  }
}
