/* Updated mainSearch and navigation styles */
.mainSearch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.navActionMain {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Enhanced search popup overlay styles */
.search-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.search-popup-overlay.active {
  display: flex;
}

.search-popup {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: slideInUp 0.4s ease;
}

.search-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
  transform: scale(1.1);
}

.nav-icon {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;

}

.nav-icon:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

/* Location Dropdown Styles */
.location-dropdown {
  position: relative;
  display: inline-block;
}

.location-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    /* right: 0; */
    background: #ffffff;
    width: 15vw;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    max-height: 30vh;
    overflow-y: auto;
}

.location-dropdown-content.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.location-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

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

.location-dropdown-item:hover {
  background: #f8f9fa;
}

.location-dropdown-item i {
  margin-right: 8px;
  color: #666;
}

.nav-icons {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.sign {
  padding: 0.6rem 2rem;
  transition: all 0.3s ease;
}

.sign:hover {
  transform: translateY(-2px);
}

/* Professional Restaurant Slider Styles */
.restaurant-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  padding: 0rem;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.restaurant-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 1rem;
  padding: 1rem 0;
}

.restaurant-slider .restaurant-card {
  flex: 0 0 380px;
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* border-radius: 15px; */
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.restaurant-slider .restaurant-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-slider .restaurant-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.slider-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.slider-btn {
  width: 40px;
    height: 40px;
    border-radius: 30%;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border: none;
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: all;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  transform: scale(1.1);
  /* box-shadow: 0 8px 10px rgba(255, 108, 108, 0.6); */

  /* background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); */
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

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

.dot.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.2);
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
}

.dot:hover {
  background: rgba(102, 126, 234, 0.6);
  transform: scale(1.1);
}

/* Beautiful Food Gallery Styles */
.food-gallery {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.food-gallery::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="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

/* Instagram-style grid layout for food gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 0.6s ease forwards;
  opacity: 0;
  aspect-ratio: 1;
}

/* Instagram pattern: Large, Small, Small, Small, Small, Large, repeat */
.gallery-item:nth-child(6n + 1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
  animation-delay: 0.1s;
}

.gallery-item:nth-child(6n + 2) {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 0.2s;
}

.gallery-item:nth-child(6n + 3) {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 0.3s;
}

.gallery-item:nth-child(6n + 4) {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 0.4s;
}

.gallery-item:nth-child(6n + 5) {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6n) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
  animation-delay: 0.6s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Professional scroll-to-top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ea6666 0%, #a80000 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  /* background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); */
}

.scroll-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-to-top i {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* .restaurant-slider .restaurant-card {
    flex: 0 0 350px;
  } */

  /* Tablet responsive grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .gallery-item:nth-child(4n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4n + 2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4n + 3) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4n) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  /* .restaurant-slider-container {
    padding: 1rem;
  }

  .restaurant-slider .restaurant-card {
    flex: 0 0 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  } */

  /* Mobile responsive grid - Instagram style */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .gallery-item:nth-child(4n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4n + 2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4n + 3) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4n) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-overlay {
    padding: 1rem;
  }

  .gallery-overlay h3 {
    font-size: 1.2rem;
  }

  .gallery-overlay h4 {
    font-size: 1rem;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.top-bar {
    width: 100%;
    background: #dbdbdb;
    padding: 1px 0;
    /* border-bottom: 1px solid #e5e5e5; */
    font-size: 14px;
}

.top-bar-left {

    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    padding: 0 20px;               /* horizontal padding */
}

.top-bar a {
    color: #555;
    text-decoration: none;
    transition: color 0.25s ease;
}

.top-bar a:hover {
    color: #000; 
    text-decoration: underline;                     /* darken on hover */
}




@media (max-width: 480px) {
  .location-dropdown{
    display: none;
  }
.slider-navigation{
    display: none;
  }
}

