/* =============================== */
/* IMPORTS */
/* =============================== */
@import url('https://fonts.googleapis.com/css2?family=Headland+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* =============================== */
/* GLOBAL STYLES & RESET */
/* =============================== */
* {
  max-width: 100vw;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #3e2c23; /* deep warm brown */
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

/* =============================== */
/* TYPOGRAPHY */
/* =============================== */
h1, h2, h3, .menu-page-title {
  font-family: 'Headland One', serif;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b841; /* headings in logo yellow */
}

/* Override for specific heading */
.craving-heading {
  color: white !important;
}

p, a, li, span {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* =============================== */
/* LAYOUT & CONTAINERS */
/* =============================== */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 100px;
}

section {
  width: 100%;
  box-sizing: border-box;
}

/* =============================== */
/* HEADER & NAVIGATION */
/* =============================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  z-index: 1000;
  height: 80px;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 100px;
  width: auto;
}

.navbar img {
  width: 180px;
  height: auto;
}

/* Phone Link Styles */
.phone-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  display: block;
}

.phone-link {
  font-size: 18px;
  color: white;
  text-decoration: none;
  background: transparent;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover,
.phone-number a:hover {
  text-decoration: underline;
}

.mobile-call-icon {
  display: none;
}

/* Dropdown Menu */
.dropdown {
  display: flex;
  align-items: center;
}

.dropbtn {
  background-color: #ffa500;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropbtn img {
  width: 24px;
  height: 24px;
}

.dropdown-content {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  max-width: 100vh;
  height: 100vh;
  background-color: #ffa500;
  box-shadow: 2px 0 5px rgba(0,0,0,0.5);
  padding-top: 60px;
  z-index: 999;
}

.closebtn {
  display: none;
}

.dropdown-content a,
.dropdown-content button {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dropdown-content a:hover,
.order_button:hover {
  background-color: goldenrod;
}

.order_button {
  width: 100%;
  text-align: left;
}

/* =============================== */
/* HERO SECTION */
/* =============================== */
#hero {
  background: url('assets/home.png') no-repeat center center/cover;
  padding: 200px 200px 200px;
  text-align: center;
}

#hero h1 {
  font-size: 56px;
  color: #ffa500;
  margin-bottom: 20px;
}

#hero p {
  font-size: 22px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

#hero .button-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #d3842b;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.8s;
}

#hero .button-primary:hover {
  background-color: #f4b841;
  box-shadow: 0 0 10px rgba(244,184,65,0.6);
}

/* =============================== */
/* MENU SECTIONS */
/* =============================== */
.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.menu-section {
  background: #2a2a2a;
  border-radius: 10px;
  width: 350px;
  text-align: center;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
}

.section-image {
  width: 275px;
  height: 350px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.menu-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffa500;
  padding: 10px 0;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0 20px;
}

.menu-items li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #444;
  transition: color 0.3s ease-in-out, transform 0.5s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

.menu-items li:last-child {
  border-bottom: none;
}

.menu-items li:hover {
  color: #ffa500;
}

.menu-section:hover .section-image {
  transform: scale(1.1);
}

/* Menu Gallery Grid */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
  justify-content: center;
}

.menu-tile {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

/* Specific adjustment for Falooda tile */
.menu-tile[style*="falooda.png"] {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
}

.menu-tile:hover {
  transform: scale(1.05) translateY(-5px);
}

.tile-content {
  position: absolute;
  bottom: 0;
  color: white;
  padding: 20px;
  z-index: 2;
}

.tile-content h3 {
  margin: 0 0 10px;
  color: #ffa500;
}

.tile-content p {
  margin: 0;
  line-height: 1.4;
  color: white;
}

/* Menu Cards */
.menu-page-title {
  text-align: center;
  font-size: 42px;
  color: #ffa500;
  margin-bottom: 40px;
}

.menu-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  padding: 20px;
  margin: 20px;
  width: 320px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.menu-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.6);
}

.menu-card-title {
  color: #ffa500;
  margin-bottom: 10px;
  position: relative;
}

.menu-card-title::before {
  content: "";
  width: 40px;
  height: 3px;
  background: #ffa500;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-card-image {
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.menu-card-list {
  list-style: none;
  padding: 0;
}

.menu-card-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding: 8px 0;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-card-list li:hover {
  color: #ffa500;
}

/* Menu Rows */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.menu-row:hover {
  transform: translateY(-4px);
}

.menu-row-image {
  width: 45%;
  height: auto;
  object-fit: cover;
}

.menu-row-content {
  padding: 20px;
  width: 55%;
}

.menu-row-content h3 {
  color: #ffa500;
  margin-bottom: 12px;
}

.menu-row-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-row-content li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

.menu-row-content li:last-child {
  border-bottom: none;
}

.menu-row.reverse {
  flex-direction: row-reverse;
}

.menu-row.reverse .menu-row-content {
  text-align: right;
}

/* =============================== */
/* ABOUT SECTION */
/* =============================== */
#about {
  /* background: #1a1a1a; */
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 800px;
  border-radius: 12px;
  /* box-shadow: 0 6px 12px rgba(0,0,0,0.4); */
  text-align: center;
}

#about h2 {
  color: #ffa500;
  margin-bottom: 20px;
}

#about p {
  font-size: 18px;
  line-height: 1.8;
}

/* =============================== */
/* LOCATION SECTION */
/* =============================== */
.find-us-section {
  /* background: #1a1a1a; */
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 800px;
  border-radius: 12px;
  /* box-shadow: 0 6px 12px rgba(0,0,0,0.4); */
  text-align: center;
}

.find-us-section h1 {
  margin-bottom: 30px;
}

section.fade-slide {
  background-color: #3e2c23;
  padding: 20px;
}

.google-map {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.google-map iframe {
  width: 100%;
  max-width: 600px;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* =============================== */
/* FOOTER */
/* =============================== */
footer {
  position: static;
  background-color: #ffa500;
  text-align: center;
  padding: 20px;
}

.footer-columns {
  background-color: #ffa500;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 40px 20px;
  text-align: left;
  color: white;
}

.footer-section {
  flex: 1 1 180px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: 1px;
}

.footer-section a,
.footer-section p {
  display: block;
  text-decoration: none;
  color: white;
  margin: 6px 0;
  border-bottom: none;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #222;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 180px;
  margin: 10px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

/* Social Media Icons */
.fa {
  padding: 15px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa:hover {
  opacity: 0.7;
}

.fa-instagram {
  background: #910971;
  color: white;
}

.fa-phone {
  background: white;
  color: black;
}

/* =============================== */
/* ANIMATIONS */
/* =============================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Section Animations */
#hero {
  position: relative;
  overflow: hidden;
}

#hero h1 {
  animation: fadeSlideUp 1s ease-out forwards,
             shimmer 3s linear infinite;
  background: linear-gradient(90deg, 
    #ffa500 0%, 
    #f4b841 25%, 
    #ffa500 50%, 
    #f4b841 75%, 
    #ffa500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero p {
  animation: fadeSlideUp 1s ease-out 0.3s forwards;
}

#hero .button-primary {
  animation: fadeSlideUp 1s ease-out 0.6s forwards,
             pulseGlow 2s infinite;
  opacity: 0;
}

/* About Section Animations */
#about {
  animation: scaleIn 1s ease-out forwards;
}

#about h2 {
  animation: shimmer 3s linear infinite;
  background: linear-gradient(90deg, 
    #ffa500 0%, 
    #f4b841 25%, 
    #ffa500 50%, 
    #f4b841 75%, 
    #ffa500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-clipart img {
  animation: floatAnimation 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.about-clipart img:hover {
  transform: scale(1.05);
}

/* Find Us Section Animations */
.find-us-section {
  animation: scaleIn 1s ease-out forwards;
}

.find-us-section h1 {
  animation: shimmer 3s linear infinite;
  background: linear-gradient(90deg, 
    #ffa500 0%, 
    #f4b841 25%, 
    #ffa500 50%, 
    #f4b841 75%, 
    #ffa500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google-map {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 0.3s forwards;
}

.google-map iframe {
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.google-map iframe:hover {
  transform: scale(1.02);
}

/* Call to Action Section Animations */
.craving-heading {
  animation: slideInFromRight 1s ease-out forwards;
}

/* Enhanced button animations */
.button-primary, 
section a[style*="background: black"] {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button-primary:hover, 
section a[style*="background: black"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.button-primary:hover::after, 
section a[style*="background: black"]:hover::after {
  transform: scaleX(1);
}

/* Intersection Observer Animations */
.fade-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Apply floating animation to menu tiles */
.menu-tile {
  animation: floatAnimation 3s ease-in-out infinite;
}

/* Different delays for each tile to create wave effect */
.menu-tile:nth-child(1) { animation-delay: 0s; }
.menu-tile:nth-child(2) { animation-delay: 0.2s; }
.menu-tile:nth-child(3) { animation-delay: 0.4s; }
.menu-tile:nth-child(4) { animation-delay: 0.6s; }
.menu-tile:nth-child(5) { animation-delay: 0.8s; }
.menu-tile:nth-child(6) { animation-delay: 1s; }
.menu-tile:nth-child(7) { animation-delay: 1.2s; }

/* Enhanced hover effects for menu tiles */
.menu-tile:hover {
  transform: scale(1.05) translateY(-5px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Shimmering effect for headings */
.menu-page-title, .tile-content h3 {
  background: linear-gradient(90deg, 
    #ffa500 0%, 
    #f4b841 25%, 
    #ffa500 50%, 
    #f4b841 75%, 
    #ffa500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Enhanced button hover effects */
.dropbtn, .mobile-order-button, #hero .button-primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropbtn:hover, .mobile-order-button:hover, #hero .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Scale animation for footer logo */
.footer-logo img {
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

/* Enhanced social media icon hover effect */
.fa {
  transition: all 0.3s ease;
}

.fa:hover {
  transform: rotate(360deg) scale(1.2);
  opacity: 0.9;
}

/* Smooth transition for all interactive elements */
a, button, .menu-tile, .footer-section a {
  transition: all 0.3s ease;
}

/* Keep existing animations */
.hero-animate h1,
.hero-animate p,
.hero-animate a,
.about-animate h2,
.about-animate p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s forwards;
}

.hero-animate h1 { animation-delay: 0.3s; }
.hero-animate p { animation-delay: 0.6s; }
.hero-animate a { animation-delay: 0.9s; }
.about-animate h2 { animation-delay: 0.3s; }
.about-animate p { animation-delay: 0.6s; }

/* Enhanced fade-slide animation */
/* .fade-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-slide.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* Add scale animation to menu items on hover */
.menu-items li, .menu-card-list li {
  transition: all 0.3s ease;
}

.menu-items li:hover, .menu-card-list li:hover {
  transform: translateX(10px);
  color: #ffa500;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* =============================== */
/* UTILITIES */
/* =============================== */
.flex-spacer {
  flex: 1;
}

.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
  z-index: 9999;
  white-space: normal;
  max-width: 220px;
  pointer-events: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -100%);
  transition: opacity 0.2s ease-in-out;
}

.mobile-order-wrapper,
.mobile-call-bar {
  display: none;
}

/* Menu Item Tooltips */
[data-tooltip] {
  position: relative;
  cursor: pointer;
  display: inline-block; /* Added to ensure proper tooltip positioning */
  width: 100%; /* Ensure the tooltip container spans full width */
  margin: 2px 0; /* Add some vertical spacing between items */
}

[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  font-size: 14px;
  white-space: normal;
  border-radius: 6px;
  z-index: 1000;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
  width: 220px;
  text-align: center;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-tooltip]:hover::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.95);
  margin-bottom: -1px;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Adjust tooltip position for items near the top of the screen */
[data-tooltip].top-tooltip:hover::before {
  bottom: auto;
  top: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}

[data-tooltip].top-tooltip:hover::after {
  bottom: auto;
  top: 100%;
  border-top-color: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.95);
  margin-top: -1px;
}

/* Make tooltips responsive on mobile */
@media (max-width: 768px) {
  [data-tooltip]:hover::before {
    width: 250px;
    font-size: 15px;
    padding: 12px 18px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 120%;  /* Increase distance from element */
    margin-bottom: 5px;
    max-width: 90vw; /* Prevent horizontal overflow */
  }

  /* Adjust tooltip arrow position */
  [data-tooltip]:hover::after {
    bottom: 120%;
  }

  /* Handle tooltips near screen edges */
  [data-tooltip]:hover::before {
    left: 50%;
    transform: translateX(-50%);
    /* Ensure tooltip stays within viewport */
    max-height: 200px;
    overflow-y: auto;
  }

  /* Adjust position for items near the top of the viewport */
  [data-tooltip].top-tooltip:hover::before {
    bottom: auto;
    top: 120%;
    margin-top: 5px;
  }

  [data-tooltip].top-tooltip:hover::after {
    bottom: auto;
    top: 120%;
  }
}

/* Mobile-specific tooltip adjustments */
@media (max-width: 768px) {
  .menu-tile {
    height: 300px; /* Increased height for better content spacing */
  }

  .tile-content {
    padding: 30px 20px; /* Increased padding for better spacing */
  }

  [data-tooltip] {
    margin: 4px 0; /* Increased spacing between items */
  }

  [data-tooltip]:hover::before {
    width: 250px;
    font-size: 15px;
    padding: 12px 18px;
    bottom: 130%; /* Increased distance */
    transform: translateX(-50%);
    z-index: 1001; /* Ensure tooltip stays above other elements */
  }

  [data-tooltip]:hover::after {
    bottom: 130%; /* Match the tooltip position */
    z-index: 1001;
  }

  /* Adjust position for items near the top */
  [data-tooltip]:first-child:hover::before {
    bottom: auto;
    top: 130%;
  }

  [data-tooltip]:first-child:hover::after {
    bottom: auto;
    top: 130%;
    border-top-color: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.95);
  }
}

/* Mobile-first responsive adjustments */
@media (max-width: 768px) {
  main {
    margin-top: 70px;
  }

  .menu-container {
    padding: 20px;
  }

  .menu-section {
    width: 100%;
    max-width: 400px;
  }

  .menu-tile {
    width: 100%;
    margin: 10px 0;
  }

  .footer-columns {
    padding: 20px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f57c1f;
    color: white;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    text-decoration: none;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  }

  .mobile-call-bar i {
    font-size: 20px;
  }

  .mobile-order-button {
    background-color: #ffa500;
    color: black;
    font-weight: bold;
    text-decoration: none;
  }

  .mobile-order-button:hover {
    background-color: #ff9900;
  }
}

/* =============================== */
/* RESPONSIVE STYLES */
/* =============================== */
@media screen and (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

@media(max-width: 768px) {
  .menu-row,
  .menu-row.reverse {
    flex-direction: column;
  }
  
  .menu-row-image,
  .menu-row.reverse .menu-row-image {
    width: 100%;
  }
  
  .menu-row-content,
  .menu-row.reverse .menu-row-content {
    width: 100%;
    text-align: center;
  }

  /* Container width consistency for mobile */
  .find-us-section,
  #about,
  .menu-section,
  .menu-card {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 15px;
  }

  .google-map iframe {
    width: 100%;
  }

  section.fade-slide {
    padding: 10px;
  }
  
}
