
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}


/* nav bar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(34, 34, 34, 0.7); /* transparent bg */
  padding: 10px 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

/* Logo */
.logo img {
  height: 120px;
  width: 100%;
}

/* Menu list (desktop) */
.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 20px;
}

/* Links */
.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 8px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #f39c12;
}


.top-btn{
  background: #f39c12;
  color: #222 !important;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Order Now button */
.order-btn {
  background: #f39c12;
  color: #222 !important;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #fff;
  color: #f39c12 !important;
  transform: scale(1.05);
}

/* Hamburger icon (hidden on desktop) */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width: 768px) {
  /* Turn menu into dropdown */
  .menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(34, 34, 34, 0.95);
    flex-direction: column;
    width: 220px;
    border-radius: 0 0 10px 10px;

    /* animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .menu li {
    margin: 12px 0;
    text-align: center;
  }

  /* Toggle open state */
  #menu-toggle:checked ~ .menu {
    max-height: 400px; /* expand smoothly */
  }

  /* Show hamburger icon */
  .menu-icon {
    display: block;
  }
}

/* Prevent navbar from covering content */
body {
  padding-top: 80px;
}

/* hidden menu start */
/* Hidden with smooth transition */
.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.show {
  max-height: 1000px; /* big enough to fit items */
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

/* Header */
.view-more-title {
  text-align: center;
  font-size: 2rem;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  transition: color 0.3s ease;
}

.view-more-title:hover {
  color: #d35400;
}

/* Menu Section */
.menu-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 10px;
}

.menu-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.dish-name {
  font-size: 1.1rem;
  margin: 5px 0;
}

.price {
  color: #555;
  margin-bottom: 10px;
}

/* Button styles */
.view-more-container {
  text-align: center;
  margin-top: 15px;
  margin: 30px 0 10px; /* more space above button */
  clear: both;
}

#viewMoreBtn {
  padding: 10px 20px;
  font-size: 1rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

#viewMoreBtn:hover {
  background: #555;
  transform: scale(1.05);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .view-more-title {
    font-size: 1.5rem;
  }

  #viewMoreBtn {
    width: 80%;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .view-more-title {
    font-size: 1.3rem;
  }

  .menu-item {
    padding: 10px;
  }

  .dish-name {
    font-size: 1rem;
  }

  .price {
    font-size: 0.9rem;
  }

  #viewMoreBtn {
    width: 100%;
    font-size: 0.9rem;
  }
}


/* =======================
   BANNER STYLES
======================= */

/* Banner container */
.banner-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glass text box */
.glass-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  max-width: 700px;
  width: 90%;
}

/* Heading */
.glass-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.6);
}

/* Buttons */
.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; /* ensures stacking on small screens */
}

.banner-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
}

/* Primary and secondary styles */
.banner-btn.secondary {
  background: #f39c12;
  color: #222;
}

.banner-btn.secondary:hover {
  background: #fff;
  color: #f39c12;
  transform: scale(1.05);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
  .banner-container {
    height: 400px;
  }
  .glass-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .banner-container {
    height: 350px;
  }
  .glass-text {
    padding: 20px;
  }
  .glass-text h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 300px;
  }
  .glass-text {
    padding: 15px;
  }
  .glass-text h1 {
    font-size: 1.3rem;
  }
  .banner-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
/* banner ends */

/* bg starts */
/* =======================
   HERO SECTION
======================= */

.hero-section {
  width: 100%;
  height: 500px; /* full screen height on desktop */
  min-height: 400px;
  background: url("images/lady eating.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  position: relative;
  overflow: hidden;
}

/* Dark overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}

/* Text box */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 90%;
  text-align: center;
  background: rgba(255, 255, 255, 0.15); /* glass effect */
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); /* responsive scaling */
  margin-bottom: 15px;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.hero-text .btn {
  display: inline-block;
  background: #f39c12;
  color: #222;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-text .btn:hover {
  background: #fff;
  color: #f39c12;
  transform: scale(1.05);
}

/* =======================
   RESPONSIVE
======================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero-section {
    height: 80vh;
  }
  .hero-text {
    padding: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
  .hero-text {
    max-width: 95%;
    padding: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-section {
    height: 60vh;
  }
  .hero-text {
    padding: 15px;
  }
  .hero-text .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
/* bg ends */



/* menu starts */
/* =======================
   MENU SECTION
======================= */

.menu-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 60px 0 40px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Menu grid */
.menu-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 40px 60px;
}

/* Menu card */
.menu-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Menu images */
.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Dish name */
.dish-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 0 10px;
  color: #444;
}

.price {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

/* Order button */
.order-btn {
  background: #f39c12;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #e67e22;
  transform: scale(1.05);
}

/* =======================
   RESPONSIVE
======================= */

/* Tablets */
@media (max-width: 1024px) {
  .menu-title {
    font-size: 2.2rem;
  }
  .menu-section {
    gap: 20px;
    padding: 0 20px 50px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-title {
    font-size: 2rem;
    margin: 40px 0 30px;
  }
  .dish-name {
    font-size: 1rem;
  }
  
  .order-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .menu-title {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .menu-item img {
    height: 180px;
  }
  .order-btn {
    width: 90%;
    padding: 10px;
    font-size: 0.85rem;
  }
}
/* menu ends */

/* drinks section starts */

/* Full-width drinks background */
.drinks-bg {
  width: 100%;
  background-color: #000000;
  background-size: cover;   /* makes it responsive */
  padding: 60px 20px;       /* spacing inside */
  color: #fff;              /* text color for contrast */
  text-align: center;
}

/* Title & Caption */
.drinks-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5px;
}

.drinks-caption {
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Container */
.drinks-container {
  max-width: 900px; /* keeps it smaller */
  margin: 0 auto;   /* centers it */
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Drinks Grid */
.drinks-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Drink Card */
.drink-item {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.drink-item:hover {
  transform: translateY(-5px);
}

.drink-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.drink-name {
  font-weight: bold;
  margin: 8px 0 5px;
}

.price {
  color: #e63946;
  font-size: 1rem;
  margin-bottom: 10px;
}

.order-btn {
  background: #ff9800;
  border: none;
  padding: 10px 15px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.order-btn:hover {
  background: #e68900;
}

/* Responsive tweak */
@media (max-width: 500px) {
  .drink-item img {
    height: 140px;
  }
}
/* drinks section ends */

/* hidden view more button */
.hidden {
  display: none;
}

.view-more-container {
  text-align: center;
  margin-top: 20px;
}

#viewMoreDrinksBtn {
  background: #595959;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

#viewMoreDrinksBtn:hover {
  background: #f39c12;
}


/* Modal Base for view more drinks */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Hide initially */
.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

/* Smooth fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

#orderForm label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

#orderForm input {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #cc5200;
}








/* Modal background */
/* =======================
   MODAL
======================= */

.modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 15px; /* prevent content from sticking to edges */
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #333;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-content input, 
.modal-content button {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.modal-content input:focus {
  outline: none;
  border-color: #f39c12;
  box-shadow: 0 0 4px rgba(243, 156, 18, 0.4);
}

.modal-content button {
  background: #f39c12;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-content button:hover {
  background: #e67e22;
  transform: scale(1.03);
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #f39c12;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =======================
   RESPONSIVE
======================= */

/* Tablets */
@media (max-width: 768px) {
  .modal-content {
    padding: 20px;
    max-width: 350px;
  }
  .modal-content h2 {
    font-size: 1.3rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
    max-width: 95%;
    border-radius: 10px;
  }
  .modal-content h2 {
    font-size: 1.1rem;
  }
  .modal-content input, 
  .modal-content button {
    padding: 10px;
    font-size: 0.9rem;
  }
}


/* about us start */
/* =======================
   ABOUT US SECTION
======================= */

.about-title {
  text-align: center;
  margin-top: 70px;
  font-size: 2rem;
  color: #333;
}

.about-us {
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  color: #fff; /* text white for contrast */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background: url("images/people dining.jpg") center/cover no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 30px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-us p {
  margin-bottom: 18px;
}

/* Hover effect */
.about-us:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.6rem;
  }
  .about-overlay {
    padding: 20px 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-overlay {
    padding: 15px 12px;
    font-size: 0.95rem;
  }
}

/* =======================
   CONTACT SECTION
======================= */
.contact {
  padding: 40px 20px;
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: center; /* centers both containers horizontally */
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
  margin-top: 20px;
}

.address-box {
  max-width: 400px;
  text-align: left;
}

.icons-box {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap; /* wraps icons on small screens */
  justify-content: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

/* Optional: style links */
.icon-item a {
  color: #000;
  text-decoration: none;
}

.icon-item a:hover {
  color: #e67e22; /* orange highlight on hover */
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .icon-item img {
    width: 40px;
    height: 40px;
  }
}
/* =======================
   SERVICES SECTION
======================= */

.services-title {
  text-align: center;
  margin-top: 50px;
  font-size: 2.2rem;
  color: #333;
}

.services-subtitle {
  text-align: center;
  margin-top: 10px;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services container */
.services-cnt {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 40px auto;
  flex-wrap: wrap; /* responsive layout */
  max-width: 1000px;
  padding: 0 20px; /* breathing space on mobile */
}

/* Each service box */
.services-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.services-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.services-box h3 {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 10px;
}

/* Dropdown description (hidden initially) */
.service-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  color: #555;
  margin-top: 0;
}

/* Active dropdown */
.services-box.active .service-desc {
  max-height: 200px;  /* allow text expansion */
  opacity: 1;
  margin-top: 10px;
}

/* Hover effects */
.services-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.services-box:hover img {
  transform: scale(1.1);
}

/* =======================
   RESPONSIVE
======================= */

/* Tablets */
@media (max-width: 1024px) {
  .services-title {
    font-size: 2rem;
  }
  .services-subtitle {
    font-size: 1rem;
  }
  .services-cnt {
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-cnt {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .services-box {
    max-width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .services-title {
    font-size: 1.6rem;
  }
  .services-subtitle {
    font-size: 0.95rem;
  }
  .services-box {
    padding: 20px 15px;
  }
  .services-box img {
    width: 65px;
    height: 65px;
  }
}
/* services ends here */

/* view more button starts here */

.book-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 25px;     /* balanced padding */
  border-radius: 10px;
  font-size: 1rem;        /* scalable text */
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;  /* keeps natural button sizing */
}

.book-btn:hover {
  background-color: darkred;
  color: #fff !important;
  font-weight: 700;
  transform: translateY(-2px); /* subtle lift effect */
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .book-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}
/* view more button ends here */



/* location starts */
.location-img {
  text-align: center;
  padding: 40px 20px;
  background-color: #040404;
}

.location-img .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px; /* reduced margin */
  color: #ffffff;
}

.location-img .section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px; /* spacing before map */
  color: #ffffff;
}


.location-img .section-subtitle {
  display: inline-block;
  background: rgba(6, 6, 6, 0.8); /* semi-transparent orange */
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease; /* smooth transition */
  margin-bottom: 10px;
}

.location-img .section-title:hover,
.location-img .section-subtitle:hover {
  background: rgb(174, 173, 172); /* full opacity on hover */
  transform: scale(1.05); /* slightly enlarge text */
}

.location-img .location-map {
  width: 100%;
  max-width: 1000px; /* expanded map width */
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.location-img iframe {
  width: 100%;
  height: 300px; /* increased map height */
  border: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .location-img .section-title {
    font-size: 2rem;
  }
  .location-img .section-subtitle {
    font-size: 1.2rem;
  }
  .location-img iframe {
    height: 350px;
  }
}

/* review starts */
.reviews-section {
  padding: 3rem 1.5rem;
  text-align: center;
  background: url('images/menu-pic.jpg') no-repeat center center/cover;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.reviews-carousel {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease;
}

.review-slide {
  flex: 0 0 33.33%; /* Show 3 at a time */
  box-sizing: border-box;
  padding: 1rem;
}

.review-slide > div, 
.review-slide {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.reviewer-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  border: 2px solid #f1c40f;
  object-fit: cover;
}

.review-text {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.reviewer-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #f39c12;
}

.review-stars {
  font-size: 1.2rem;
  color: #f1c40f;
}

.slider-controls {
  margin-top: 1rem;
}

.slider-controls button {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 0.5rem 0.9rem;
  margin: 0 0.3rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

.slider-controls button:hover {
  background: #c0392b;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .review-slide {
    flex: 0 0 100%; /* Show one per view */
  }
}


.footer {
  background: linear-gradient(135deg, #111, #333); /* subtle gradient */
  color: #f5f5f5;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(-3deg);
}

.footer span {
  color: #ff4d4d; /* highlight brand color */
  font-weight: 700;
  letter-spacing: 1px;
}

.footer p {
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive text scaling */
@media (max-width: 768px) {
  .footer {
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    font-size: 0.85rem;
  }
}