: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;
}


html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF8E7;
  margin: 0;
  font-family: sans-serif;
}

/* 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 {
  display: flex;
}

.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 */
.banner {
  position: relative;
  height: 70vh;
  max-height: 500px;
  overflow: hidden;
}

.bannerimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.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;
  animation: typing 3s steps(20) 1 forwards, blink 0.5s step-end 6 alternate;
  margin-bottom: 1rem;
}

@keyframes typing {
  from { width: 0; }
  to { width: 26ch; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #3498db; }
}

.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;
}

/* Typing Text: "Today's Special Menu" */
.banner-overlay1 {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  text-align: center;
  padding-top: 60px;
  z-index: 2;
}

.typing-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.typing-text1 {
  font-size: 28px;
  font-weight: bold;
  color: #800000;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #3498db;
  width: 26ch;
  animation: typing 3s steps(26, end) forwards, blink 0.7s step-end 6;
}

/* Scroll Cards */
.infinite-scroll-container {
  max-width: 800px;
  margin: 0 auto 60px auto;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 20px 0;
}

.infinite-scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll-cards 20s linear infinite;
  padding: 0 20px;
  align-items: flex-start;
}

.scroll-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  flex: 0 0 auto;
}

.infinite-scroll-card {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: blueviolet;
}

.scroll-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scroll-caption {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #FFD700;
  text-align: center;
}

@keyframes scroll-cards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-270px * 3));
  }
}


.story {
  background-color: #0d2c2a;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.story-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #f6c36e;
  margin-bottom: 20px;
}

.story-line {
  font-size: 36px;
  font-weight: 500;
  margin: 10px 0;
}

.fancy-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-img {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #f6c36e;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.highlight {
  color: #f6c36e;
  font-weight: 600;
  margin: 0 5px;
  font-size: 32px;
}
.txt3 {
  background-color: #062a27;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.feature-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature-box {
  max-width: 300px;
}

.feature-icon {
  font-size: 40px;
  color: #f6c36e;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #f6c36e;
  letter-spacing: 1px;
}

.feature-description {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}

.booking-box {
  margin-top: 30px;
}

.booking-text {
  font-size: 16px;
  margin-bottom: 5px;
}

.booking-number {
  font-size: 20px;
  color: #f6c36e;
  font-weight: bold;
  margin-bottom: 15px;
}

.book-button {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #f6c36e;
  color: #f6c36e;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.book-button:hover {
  background-color: #f6c36e;
  color: #062a27;
}
.services-section {
  background-color: #062a27;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.services-subtitle {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f6c36e;
  margin-bottom: 10px;
  font-weight: bold;
}

.services-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #ffffff;
  line-height: 1.3;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.services-left,
.services-right {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-center {
  flex: 1;
  max-width: 300px;
}

.services-image {
  width: 100%;
  border-radius: 50% 50% 0 0;
  border: 2px solid #f6c36e;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.service-item {
  text-align: center;
}

.service-icon {
  font-size: 32px;
  color: #f6c36e;
  margin-bottom: 10px;
}

.service-item h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
  letter-spacing: 1px;
}

.service-item p {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}



.testimonial-section {
  background-color: #062a27;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 20px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.testimonial-left {
  flex: 1;
  max-width: 500px;
}

.testimonial-right {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.testimonial-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.testimonial-subtitle {
  text-align: center;
  font-size: 16px;
  color: #f6c36e;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonial-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.testimonial-users {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.user {
  text-align: center;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #f6c36e;
  object-fit: cover;
}

.user.highlighted img {
  width: 70px;
  height: 70px;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.user.highlighted p {
  margin-top: 5px;
  font-size: 14px;
  color: #f6c36e;
  font-weight: bold;
  letter-spacing: 1px;
}



.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 */
  }
}



.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);
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.scroll-slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

 /* responsive */
 @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 (prefers-color-scheme: dark) {
  .scroll-caption {
    color: #800000;
  }

  .infinite-scroll-card {
    background: #800000;
  }
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
  }

  .services-left,
  .services-right,
  .services-center {
    max-width: 100%;
  }

  .services-title {
    font-size: 28px;
  }

  .services-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-title {
    font-size: 28px;
  }

  .testimonial-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-card {
    width: 250px;
    height: 160px;
  }
  @keyframes gallery-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 3));
    }
  }
}
