:root {
  color-scheme: light;
  --background: #d7e0e9;
  --foreground: #132331;
  --primary: #13283c;
  --secondary: #d9ad45;
  --secondary-strong: #ffd45e;
  --muted: #dce5ee;
  --muted-strong: #eef4f8;
  --navy-glass: rgba(16, 32, 48, 0.92);
  --card-light: rgba(246, 249, 252, 0.8);
  --white: #ffffff;
  --shadow-dark: 0 20px 50px rgba(19, 40, 60, 0.18);
  --shadow-soft: 0 18px 45px rgba(10, 22, 34, 0.22);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  color: var(--foreground);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(217, 173, 69, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(44, 109, 130, 0.2), transparent 32%),
    linear-gradient(180deg, #dce5ee 0%, #d2dde8 38%, #cad7e3 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2,
.content-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--primary);
}

.section-heading p,
.content-card p,
.cuisine-copy p,
.footer-brand p {
  font-size: 1.05rem;
  color: rgba(19, 35, 49, 0.82);
}

.eyebrow,
.hero-kicker,
.insta-handle {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  background: var(--secondary);
  color: #1a1307;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.button-gold:hover {
  background: #e7bf63;
}

.button-dark {
  background: var(--primary);
  color: #f5f8fb;
}

.button-dark:hover {
  background: #19354f;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.is-scrolled {
  background: var(--navy-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 173, 69, 0.2);
  box-shadow: 0 14px 35px rgba(8, 17, 29, 0.35);
}

.navbar-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.scrolled-brand {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  min-width: 300px;
}

.navbar.is-scrolled .scrolled-brand {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.scrolled-brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a:not(.button) {
  color: #eaf6ff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.desktop-nav a:not(.button):hover {
  color: #f4d27b;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #f4f7fb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  overflow: hidden;
  background: #102030;
  border-top: 1px solid rgba(217, 173, 69, 0.2);
  padding: 0 16px;
  max-height: 0;
  transition: max-height 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
}

.mobile-menu a {
  display: block;
  color: #eef8ff;
  padding: 12px 8px;
  border-radius: 10px;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
  max-height: 420px;
  padding-top: 10px;
  padding-bottom: 16px;
}

.mobile-reserve {
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.hero-video,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(9, 23, 38, 0.68) 0%, rgba(12, 29, 45, 0.46) 38%, rgba(14, 21, 31, 0.72) 100%);
}

.hero-glow {
  background: radial-gradient(circle at center, rgba(217, 173, 69, 0.12), transparent 38%);
}

.hero-logo-panel {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
  max-width: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(10, 18, 28, 0.52) 0%, rgba(18, 24, 33, 0.28) 100%);
  backdrop-filter: blur(3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hero-logo-panel img {
  height: clamp(64px, 13vw, 144px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 210, 107, 0.22));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(860px, 100%);
  padding: 120px 8px 32px;
  text-align: center;
  color: #fff;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #fff1a8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: clamp(3.2rem, 10vw, 6.8rem);
  line-height: 0.95;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: #f7f9fb;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto 30px;
  color: #dce7f0;
  font-size: clamp(0.98rem, 2.5vw, 1.15rem);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 20;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  animation: bob 2s infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.about-section {
  background: linear-gradient(180deg, rgba(238, 244, 248, 0.92) 0%, rgba(221, 231, 239, 0.88) 100%);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.image-card {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 38px;
  background: var(--card-light);
  box-shadow: 0 20px 50px rgba(19, 40, 60, 0.1);
}

.cuisine-section {
  background: rgba(19, 40, 60, 0.05);
}

.carousel {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.carousel-slides,
.carousel-slide {
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.carousel-arrow.prev {
  left: 16px;
}

.carousel-arrow.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--secondary);
}

.cuisine-copy h3,
.menu-card h3,
.special-panel h3,
.why-card h3,
.info-card h3 {
  margin-top: 0;
  font-size: 2rem;
}

.feature-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-points li,
.menu-card li {
  position: relative;
  padding-left: 22px;
}

.feature-points li::before,
.menu-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary-strong);
}

.menu-section {
  background: linear-gradient(180deg, #f4efe4 0%, #efe6d6 100%);
}

.menu-grid,
.why-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.menu-card,
.why-card,
.info-card,
.special-panel {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.menu-card {
  border: 1px solid #e6d7bd;
  box-shadow: 0 18px 50px rgba(61, 40, 23, 0.18);
  background-size: cover;
  background-position: center;
}

.card-bg-1 {
  background-image: linear-gradient(180deg, rgba(26, 20, 18, 0.54) 0%, rgba(22, 18, 17, 0.72) 55%, rgba(16, 14, 13, 0.84) 100%), url("assets/images/Food/food_4.jpg");
}

.card-bg-2 {
  background-image: linear-gradient(180deg, rgba(26, 20, 18, 0.54) 0%, rgba(22, 18, 17, 0.72) 55%, rgba(16, 14, 13, 0.84) 100%), url("assets/images/Food/food_1.png");
}

.card-bg-3 {
  background-image: linear-gradient(180deg, rgba(26, 20, 18, 0.54) 0%, rgba(22, 18, 17, 0.72) 55%, rgba(16, 14, 13, 0.84) 100%), url("assets/images/Food/Dinner.jpg");
}

.menu-card-inner {
  padding: 30px;
  backdrop-filter: blur(1px);
}

.menu-card h3,
.special-panel h3,
.why-card h3 {
  color: #9fd8ff;
}

.menu-card p,
.menu-card li,
.special-panel p,
.special-panel li,
.why-card p,
.info-card p {
  color: #fff8f0;
}

.menu-card ul,
.special-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-card li {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.menu-card li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.menu-highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 48px;
}

.special-panel {
  padding: 30px;
  box-shadow: 0 20px 60px rgba(47, 36, 27, 0.3);
  background-size: cover;
  background-position: center;
}

.special-food {
  background-image: linear-gradient(180deg, rgba(48, 31, 20, 0.72) 0%, rgba(31, 20, 14, 0.82) 100%), url("assets/images/Food/CholeBhature.jpg");
}

.special-care {
  border: 1px solid #e6d7bd;
  background-image: linear-gradient(180deg, rgba(28, 22, 19, 0.54) 0%, rgba(20, 16, 14, 0.74) 100%), url("assets/images/Food/food_3.jpg");
}

.special-food .eyebrow {
  color: var(--secondary);
  margin: 0 0 12px;
}

.panel-cta {
  margin-top: 24px;
}

.why-section {
  background: var(--background);
}

.why-bg-1 {
  background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.5) 0%, rgba(19, 16, 15, 0.68) 48%, rgba(15, 13, 12, 0.82) 100%), url("assets/images/Logo/Indoor_1.jpg");
}

.why-bg-2 {
  background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.5) 0%, rgba(19, 16, 15, 0.68) 48%, rgba(15, 13, 12, 0.82) 100%), url("assets/images/Logo/indoor_3.jpg");
}

.why-bg-3 {
  background-image: linear-gradient(180deg, rgba(22, 18, 16, 0.5) 0%, rgba(19, 16, 15, 0.68) 48%, rgba(15, 13, 12, 0.82) 100%), url("assets/images/Outdoor/Outdoor_1.jpg");
}

.why-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.why-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 94, 0.35);
  background: rgba(255, 212, 94, 0.2);
  color: #fff2b8;
  font-weight: 700;
}

.info-section {
  background: var(--background);
}

.info-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.info-card h3 {
  margin-bottom: 12px;
  color: #fff4c7;
  font-size: 1.4rem;
}

.info-icon {
  margin-bottom: 14px;
  color: #f4d27b;
  font-size: 1.9rem;
}

.info-bg-1 {
  background-image: linear-gradient(180deg, rgba(9, 23, 37, 0.78) 0%, rgba(12, 31, 47, 0.9) 100%), url("assets/images/Outdoor/Outdoor_1.jpg");
}

.info-bg-2 {
  background-image: linear-gradient(180deg, rgba(9, 23, 37, 0.78) 0%, rgba(12, 31, 47, 0.9) 100%), url("assets/images/Logo/Indoor_2.jpg");
}

.info-bg-3 {
  background-image: linear-gradient(180deg, rgba(9, 23, 37, 0.78) 0%, rgba(12, 31, 47, 0.9) 100%), url("assets/images/Bar/bar_2.jpg");
}

.info-bg-4 {
  background-image: linear-gradient(180deg, rgba(9, 23, 37, 0.78) 0%, rgba(12, 31, 47, 0.9) 100%), url("assets/images/Logo/Indoor_1.jpg");
}

.map-card {
  position: relative;
  margin-top: 48px;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 16px;
  color: #1a3550;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.instagram-section {
  background: linear-gradient(180deg, rgba(203, 216, 228, 0.6) 0%, rgba(217, 226, 234, 0.92) 100%);
}

.insta-handle {
  margin-bottom: 14px;
  color: #2b5d73;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-cta {
  margin-top: 48px;
  text-align: center;
}

.site-footer {
  background: linear-gradient(180deg, #132231 0%, #101b27 100%);
  color: #edf4f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  padding: 52px 0 42px;
}

.footer-block h4 {
  margin: 0 0 16px;
  color: #f5d27a;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #e8f6ff;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a:hover,
.footer-bottom a:hover {
  color: #f5d27a;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 140px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.footer-brand p,
.footer-list a,
.footer-bottom {
  color: #eef8ff;
}

.footer-right {
  text-align: right;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(245, 210, 122, 0.18);
  border: 1px solid rgba(245, 210, 122, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: #f5d27a;
  color: #102030;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 32px;
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.floating-buttons {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.fab-call {
  background: #22c55e;
}

.fab-whatsapp {
  background: #4ade80;
}

.fab-reserve {
  background: var(--secondary);
  color: var(--secondary-strong);
}

.fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.fab span {
  font-size: 1.5rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .two-column,
  .menu-highlight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .why-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-block,
  .footer-right,
  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .navbar-inner {
    min-height: 88px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .scrolled-brand {
    min-width: auto;
  }

  .scrolled-brand img {
    height: 52px;
  }

  .hero-content {
    padding-top: 132px;
  }

  .hero-logo-panel {
    top: 14px;
    left: 14px;
    padding: 10px 12px;
  }

  .menu-grid,
  .why-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .carousel,
  .map-card,
  .image-card {
    min-height: 340px;
    height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-buttons {
    right: 14px;
    bottom: 18px;
  }
}
