:root {
  --nav-height: 70px;
  --nav-bg: #ffffff;
  --nav-bg-scrolled: #ffffff;
  --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --nav-text: #ffffff;
  --nav-text-hover: #4a6cf7;
  --nav-transition: all 0.3s ease;
  --nav-logo-size: 1.5rem;
  --nav-active-indicator: 2px solid #4a6cf7;
}


/* Navbar */
.sticky-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: transparent;
  transition: var(--nav-transition);
  z-index: 1000;
}

.sticky-nav.scrolled {
  background-color: var(--nav-bg-scrolled);
  box-shadow: var(--nav-shadow);
}

.sticky-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-nav-logo {
  display: flex;
  align-items: center;
  font-size: var(--nav-logo-size);
  font-weight: 700;
  color: var(--nav-text);
}

.sticky-nav-logo i {
  margin-right: 0.5rem;
  color: var(--nav-text-hover);
}

.sticky-nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-nav-menu li {
  margin: 0 1rem;
}

.sticky-nav-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--nav-transition);
}

.sticky-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nav-text-hover);
  transition: var(--nav-transition);
}

.sticky-nav-menu a:hover {
  color: var(--nav-text-hover);
}

.sticky-nav-menu a:hover::after,
.sticky-nav-menu a.active::after {
  width: 100%;
}

.sticky-nav-menu a.active {
  color: var(--nav-text-hover);
}

.sticky-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nav-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--nav-transition);
}

.sticky-nav-toggle:hover {
  color: var(--nav-text-hover);
}

/* Banner styling */
.banner {
  position: relative;
  height: 70vh;
  max-height: 500px;
  overflow: hidden;
}

.bannerimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typing text and button overlay on banner */
.banner-overlay {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.typing-text {
  font-size: 28px;
  font-weight: bold;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #3498db;
  /*  --- animations ---  */
  /* typing: plays once, holds final frame */
  /* blink: cursor blinks 6 times, then stops */
  animation: typing 3s steps(20) 1 forwards,
             blink 0.5s step-end 6 alternate;
  margin-bottom: 1rem;
}

@keyframes typing {
  0%   { width: 0; }
  100% { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.glowing-button {
  padding: 12px 24px;
  background: transparent;
  color: #00eeff;
  border: 2px solid #00eeff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px #00eeff, 0 0 10px #00eeff;
  transition: all 0.3s ease;
}

.glowing-button:hover {
  background: #00eeff;
  color: #000;
  box-shadow: 0 0 10px #00eeff, 0 0 20px #00eeff, 0 0 40px #00eeff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sticky-nav-menu {
    flex-direction: column;
    align-items: center;
    background-color: var(--nav-bg);
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    padding: 1rem 0;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .sticky-nav-menu.mobile-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-nav-menu ul {
    flex-direction: column;
    align-items: center;
  }
 .sticky-nav-menu a,
.sticky-nav-toggle {
  color: black;
  transition: var(--nav-transition)
}

  .sticky-nav-menu li {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }

  .sticky-nav-toggle {
    display: block;
  }

  .typing-text {
    font-size: 18px;
  }

  .typing-text1 {
    font-size: 20px;
    width: 20ch;
  }

  .glowing-button {
    font-size: 16px;
  }

  .banner {
    width: 100%;
    height: 45vh;
  }

  .story-txt {
    font-size: 22px;
  }
}

@media (max-width: 768px) {

}
.about-hero {
  background-color: #002a28;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.about-hero .container {
  max-width: 1200px;
  margin: auto;
}

.subtitle {
  color: #d4a04a;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
}

.highlight {
  color: #d4a04a;
  font-weight: 600;
}

.description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #ccc;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature-box {
  max-width: 250px;
  text-align: center;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 300px 300px;
  max-width: 800px;
  margin: auto;
}

.hero-image {
  width: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}
.why-dine {
  background-color: #002a28;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  color: #d4a04a;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.features-arch {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.feature-card {
  width: 220px;
  text-align: center;
}

.arch-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 120px 120px 0 0;
  clip-path: ellipse(60% 100% at 50% 100%);
  margin-bottom: 15px;
}

.arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card h4 {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-box {
  max-width: 200px;
  text-align: center;
}

.stat-box h2 {
  font-size: 32px;
  color: #d4a04a;
  margin-bottom: 10px;
}

.stat-box h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.5px;
}

.stat-box p {
  font-size: 14px;
  color: #ccc;
}
.testimonials {
  background-color: #002a28;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials .section-subtitle {
  color: #d4a04a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.testimonials .section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: transparent;
  border: 1px solid #444;
  padding: 30px 20px;
  max-width: 320px;
  border-radius: 10px;
  text-align: center;
  color: #ddd;
}

.stars {
  color: #d4a04a;
  font-size: 20px;
  margin-bottom: 15px;
}

.review {
  font-size: 15px;
  margin-bottom: 25px;
  color: #ccc;
}

.customer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #d4a04a;
  object-fit: cover;
  margin-bottom: 10px;
}

.customer h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.customer h4 span {
  color: #d4a04a;
  font-weight: 600;
}

.gallery-scroll-container {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.gallery-scroll-track {
  display: flex;
  gap: 30px;
  animation: gallery-scroll 30s linear infinite;
}

.gallery-card {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.05);
}

.gallery-header {
  text-align: center;
  padding: 40px 20px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 18px;
  color: #aaa;
}


@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-330px * 3)); /* 300px width + 30px gap */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-card {
    width: 250px;
    height: 160px;
  }

  @keyframes gallery-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 3));
    }
  }
}
.footer-section {
  background: #0c2c27;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.footer-circle {
  width: 200px;
  height: 200px;
  border: 2px solid gold;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px;
}
.footer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-center {
  max-width: 500px;
}
.footer-logo {
  font-size: 24px;
  margin-bottom: 20px;
}
.footer-newsletter form {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.footer-newsletter input {
  padding: 10px;
  border: none;
  width: 60%;
}
.footer-newsletter button {
  background: #f4b41a;
  color: #000;
  border: none;
  padding: 10px 20px;
}
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
}
.footer-social a {
  margin: 0 10px;
  color: #f4b41a;
  font-size: 18px;
}
.footer-map iframe {
  width: 100%;
  max-width: 100%;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
