    /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
a {
  text-decoration: none;
  color: white;
}
ul {
  list-style: none;
}

/* Header */
.site-header {
  background: #9c27b0;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}
.nav ul {
  display: flex;
  gap: 20px;
}
.nav ul li a.active,
.nav ul li a:hover {
  border-bottom: 2px solid orange;
}
.hamburger {
  display: none;
}

/* Hero Slider */
.hero {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.slider {
  display: flex;
  width: 300%;
  max-width: 2700px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: slide-loop 12s infinite;
}

/* Single Slide */
.slide {
  width: 100%;
  flex: 0 0 100%;
}

/* Slide Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Slider animation */
@keyframes slide {
  0%, 20% { transform: translateX(0%); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 100% { transform: translateX(0%); }
}
/* Precise Animation Timing */
@keyframes slide-loop {
  0%   { transform: translateX(0); }
  33.33% { transform: translateX(-100%); }
  66.66% { transform: translateX(-200%); }
  100%  { transform: translateX(0); }
}
/* Mobile */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: #9c27b0;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
  }
  .nav ul.show {
    display: flex;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
  }
}
.hero-slider {
  width: 100%;
  max-width: 1140px; /* Adjust this to desired width */
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 0 20px; /* Optional side space on small screens */
}


.glide__slide img {
  width: 100%;
  height: 500px; /* previously 400px */
  object-fit: cover;
  display: block;
}


.glide__arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.glide__arrow {
  background: #9c27b0;
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.glide__arrow:hover {
  background: #7b1fa2;
}

@media (max-width: 768px) {
  .glide__slide img {
    height: 250px;
  }
}
.welcome-section {
  padding: 60px 20px;
  background-color: #fff;
  display: block; /* 👈 Ensure no flex or grid applied */
  text-align: center;
}

.welcome-section .container {
  display: block !important;
}

.welcome-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.welcome-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.welcome-title::after {
  content: '';
  width: 100%;
  height: 3px;
  background: #e53935;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.welcome-text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 1000px;
  margin: 0 auto;
}

/* This is the key fix: */
.welcome-section .container {
  display: block !important;
}

.location-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.map-box {
  flex: 1 1 500px;
  min-width: 300px;
}

/* LOCATION SECTION OVERHAUL */
.location-section {
  background-color: #f8f8f8;
  padding: 40px 15px; /* Reduced padding for mobile */
}

.location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.map-box {
  flex: 1 1 500px;
  min-width: 300px;
  padding: 0;
}

.location-section {
  background-color: #f8f8f8;
  padding: 40px 15px;
}

.location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.map-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.map-box iframe {
  width: 100%;
  max-width: 600px; /* ✅ Add this */
  height: 300px;
  border: none;
}


/* INFO CARD */
.location-info {
  flex: 1 1 300px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-radius: 12px;
  margin: 0; /* 🛠️ important for mobile */
}

.location-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.location-info h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.location-info p {
  margin: 0;
  font-size: 15px;
  color: #444;
}

.order-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #e53935;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.order-btn:hover {
  background-color: #c62828;
}

/* 📱 Mobile Fix */
@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    gap: 0;
  }

  .map-box,
  .location-info {
    width: 100%;
    margin: 0 auto 20px auto; /* ⬅️ only add bottom spacing */
  }

  .map-box iframe {
    height: 240px;
  }
}

.review-section {
  padding: 60px 20px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.review-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  border-bottom: none;
  margin-left: auto;
  margin-right: auto;
}

.review-heading::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #e53935;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}



.review-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
  width: 100%;
}

.review-left {
  flex: 0 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #f39c12;
  font-size: 16px;
  margin-top: 5px;
}

.review-right {
  flex: 1;
}

.review-right strong {
  font-weight: bold;
  color: #111;
  display: block;
  margin-bottom: 6px;
}

.review-right p {
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .review-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-left {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
  }

  .review-left img {
    width: 50px;
    height: 50px;
  }

  .stars {
    font-size: 14px;
  }
}

.review-form-section {
  padding: 60px 20px;
  background: #fff;
}

.form-heading {
  text-align: center;
  color: #c62828;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.review-form {
  max-width: 1000px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.stars-display {
  color: orange;
  font-size: 24px;
  margin-top: 5px;
}

.center {
  justify-content: center;
}

.submit-btn {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 2px 2px 0 #000;
}

.submit-btn:hover {
  background-color: #c62828;
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
  }
}

.menu-section {
  padding: 60px 20px;
  background: #fff;
}


.menu-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto 40px auto;
}

.menu-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #e53935;
  position: absolute;
  bottom: -10px;
  left: 0;
}


.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.menu-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-gallery img:hover {
  transform: scale(1.03);
}

.menu-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.menu-category {
  margin-bottom: 60px; /* 👈 Adds spacing between categories */
}

.menu-cat-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 3px solid #e53935;
  display: inline-block;
}

.scrollable-items {
  max-height: 320px; /* shows approx 5 items */
  overflow-y: auto;
  padding-right: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  gap: 20px;
}

.menu-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.menu-item p {
  margin: 5px 0 0 0;
  font-size: 15px;
  color: #444;
}

.item-price {
  font-weight: bold;
  white-space: nowrap;
  color: #222;
  font-size: 16px;
}

.opening-section {
  padding: 60px 20px;
  background-color: #fff;
}

.opening-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  border-bottom: 3px solid #e53935;
  text-align: left;
  display: block;
  width: fit-content;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.opening-section-description {
  text-align: left;
  max-width: 700px;
  font-size: 16px;
  color: #555;
  line-height: 1.6; 
  margin: 0 0 16px 0;
}

.opening-section-table {
  width: 100%;
  max-width: 500px;
  
  border-collapse: collapse;
  font-size: 16px;
}

.opening-section-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
}

.opening-section-table td:first-child {
  font-weight: 600;
  text-align: left;
}

.opening-section-table td:last-child {
  text-align: right;
  color: #333;
}

.opening-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
.custom-footer {
  background-color: #9c27b0;
  color: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style-type: disc;
  padding-left: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}

  :root {
    --primary-color: #a413a9;
    --primary-hover: #7b1fa2;
  }

  .site-header {
    background: var(--primary-color);
  }

  @media (max-width: 768px) {
    .nav ul {
      background: var(--primary-color);
    }
  }

  .glide__arrow {
    background: var(--primary-color);
  }

  .glide__arrow:hover {
    background: var(--primary-hover);
  }

  .custom-footer {
    background-color: var(--primary-color);
  }
  .location-section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  border-bottom: 3px solid #e53935;
}
