/* ========== Contact Info Section ========== */
#contact-info-section {
  padding: 100px 0 0px;
  background-color: #efe6dd;
  position: relative;
  font-family: 'Lexend', sans-serif;
}

/* ========== Container ========== */
.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Grid Layout ========== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* ========== Card Style ========== */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  padding: 40px 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  
}

/* Animation delays */
.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.3s; }
.contact-info-card:nth-child(3) { animation-delay: 0.5s; }

/* Hover effect */
.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Background overlay */
.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #ff9b00, #ff5a00);
  transition: all 0.5s ease;
  opacity: 0.05;
  pointer-events: none; /* ✅ Prevents blocking link clicks */
}

.contact-info-card:hover::before {
  left: 0;
  opacity: 0.15;
}

/* ========== Icon ========== */
.info-icon {
  font-size: 36px;
  color: #ff5a00;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.contact-info-card:hover .info-icon {
  color: #ff9b00;
}

/* ========== Titles & Text ========== */
.info-title {
  font-size: 20px;
  font-weight: 600;
  color: #2aa59e;
  margin-bottom: 10px;
}

.info-text {
  font-size: 16px;
  color: #393939;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  margin-top: 20px;
  line-height: 30px;
}

/* ========== Links ========== */
.info-link {
  color: #393939;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #e41f28;
}

/* ========== Animation ========== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .contact-info-card {
    padding: 30px 20px;
  }

  .info-title {
    font-size: 16px;
  }

  .info-text {
    font-size: 16px;
    line-height: 28px;
  }
}

/*gallery-page*/
#gallery-section {
  padding: 100px 0;
  background-color: #efe6dd;
  font-family: 'Lexend', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title h2 {
  font-size: 36px;
  color: #2aa59e;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ========== Lightbox ========== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

.lightbox.show {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  transform: scale(0.8);
  opacity: 0;
  animation: zoomIn 0.4s ease forwards;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff9b00;
}

/* Next & Prev Controls */
.lightbox-controls .prev,
.lightbox-controls .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  transition: color 0.3s ease;
  user-select: none;
}

.lightbox-controls .prev {
  left: 20px;
}

.lightbox-controls .next {
  right: 20px;
}

.lightbox-controls .prev:hover,
.lightbox-controls .next:hover {
  color: #ff9b00;
}

/* No Images Message */
.no-images {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  #gallery-section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .lightbox-controls .prev,
  .lightbox-controls .next {
    font-size: 28px;
  }
}

/*Menu Style*/
/* === South Indian Menu Grid Section === */
.south-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Each card */
.south-menu-item {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.4s ease;
}

/* Fade-in animation on scroll */
.south-menu-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.south-menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background: #222;
}

/* Food image */
.south-menu-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  transition: transform 0.6s ease;
}

.south-menu-item:hover img {
  transform: scale(1.05);
}

/* Food title */
.south-menu-item h4 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "Elsie", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  margin: 20px 0 25px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(42, 165, 158, 0.25);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Animated underline */
.south-menu-item h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2aa59e 0%, #ffd77a 100%);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.south-menu-item:hover h4 {
  color: #ffd77a;
  text-shadow: 0 0 15px rgba(255, 215, 122, 0.4);
}

.south-menu-item:hover h4::after {
  width: 60%;
}

/* === Responsive === */
@media (max-width: 1200px) {
  .south-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .south-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .south-menu-item h4 {
    font-size: 26px;
    line-height: 32px;
  }
}

@media (max-width: 480px) {
  .south-menu-grid {
    grid-template-columns: 1fr;
  }

  .south-menu-item h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

.pb-sec{
  padding-bottom: 100px;
}

/*menu-book-now*/
.book-reservation-section {
  position: relative;
  background-image: url('assets/images/Homepage1/menu-cta-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  z-index: 0;
}

.book-reservation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.67);
  z-index: 0;
}

.book-reservation-container {
  position: relative;
  z-index: 2;
}

.book-reservation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

/* -------------------- TEXT AREA -------------------- */

.reservation-text {
  flex: 1 1 60%;
  position: relative;
  z-index: 2;
}

.reservation-title {
  font-family: "Elsie", serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.reservation-desc {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #ddd;
  margin-top: 40px;
  max-width: 600px;
}

/* -------------------- BUTTON AREA -------------------- */

.reservation-btn-wrap {
  flex: 1 1 35%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.menupage-1-book-now-btn-1 {
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  text-decoration: none;
  width: 220px;
  height: 55px;
  background: #2aa59e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 1.2s ease forwards;
}

.menupage-1-book-now-btn-1:hover {
  border: 1px solid #e41f28;
  background: transparent;
  color: #fff !important;
  transform: scale(1.05);
}

.menupage-1-book-now-btn-1 a {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  line-height: 55px;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

/* -------------------- ANIMATIONS -------------------- */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- RESPONSIVE -------------------- */

/* Large desktop optimization */
@media (max-width: 1200px) {
  .reservation-title {
    font-size: 54px;
    line-height: 64px;
  }
}

/* ✅ Tablet view (matches “Our Delivery Partners”) */
@media (max-width: 992px) {
  .book-reservation-content {
    flex-direction: column;
    text-align: center;
  }
  .reservation-text {
    flex: 1 1 100%;
  }
  .reservation-title {
    font-size: 48px; /* ✅ Same as other sections */
    line-height: 58px;
  }
  .reservation-desc {
    font-family: "Lexend";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  }

  .reservation-btn-wrap {
    flex: 1 1 100%;
    justify-content: center;
    margin-top: 25px;
  }
}

/* ✅ Mobile view */
@media (max-width: 768px) {
  .book-reservation-section {
    background-attachment: scroll; /* disable parallax on mobile */
    padding: 60px 0;
  }
  .reservation-title {
   font-size: 46px;
    line-height: 52px;
  }
  .reservation-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .menupage-1-book-now-btn-1 {
    width: 200px;
    height: 50px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .reservation-title {
    font-size: 32px;
    line-height: 40px;
  }
  .reservation-desc {
    font-family: "Lexend";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  }
}

/* -------------------- VIEW MORE MENU BUTTON -------------------- */

.south-menu-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.view-more-menu-btn {
  width: 220px;
  height: 55px;
  background: #2aa59e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.view-more-menu-btn:hover {
  border: 1px solid #e41f28;
  background: transparent;
  color: #000; /* ✅ Text becomes black on hover */
  transform: scale(1.05);
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 768px) {
  .view-more-menu-btn {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }
  .south-menu-btn-wrap {
    margin-top: 30px;
  }
}
