@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #5C2E16;
  --secondary: #7B3F00;
  --gold: #C89B3C;
  --light-gold: #E7C980;
  --cream: #F8F3E9;
  --white: #FFFFFF;
  --dark-brown: #24140B;
  --overlay: rgba(36, 20, 11, 0.75);
  
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-nav: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-button: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark-brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-brown);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--light-gold);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   CUSTOM CURSOR & LOADER
   ========================================================================== */
.custom-cursor {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
}

/* Loader Screen */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-brown);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-mandala {
  width: 120px;
  height: 120px;
  animation: spin 15s linear infinite;
  margin-bottom: 24px;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--light-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpLoader 1.5s forwards 0.5s;
}

.loader-tagline {
  font-family: var(--font-subheading);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  margin-top: 8px;
  animation: fadeInUpLoader 1.5s forwards 1s;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.viewport-corner-mandala {
  position: absolute;
  width: 200px;
  opacity: 0.85;
  z-index: 1005;
  pointer-events: none;
  filter: drop-shadow(0 4px 15px rgba(36, 20, 11, 0.25));
}
.viewport-corner-mandala.top-left {
  top: -65px;
  left: -65px;
}
.viewport-corner-mandala.top-right {
  top: -65px;
  right: -65px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 8%;
  background-color: rgba(36, 20, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 155, 60, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-main-img {
  height: 65px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-main-img {
  height: 48px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  border-top: 1.5px solid rgba(200, 155, 60, 0.25);
  border-bottom: 1.5px solid rgba(200, 155, 60, 0.25);
  padding: 8px 16px;
}

.nav-link {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--light-gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Button */
.btn-book-nav {
  font-family: var(--font-button);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-gold);
  background: transparent;
  padding: 8px 20px;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-book-nav:hover {
  background: var(--gold);
  color: var(--dark-brown);
  box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
}

.flower-icon-svg {
  width: 14px;
  height: 14px;
  color: inherit;
}


.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--light-gold);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background-image: url('../assets/images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(36,20,11,0.92) 0%, rgba(36,20,11,0.7) 50%, rgba(36,20,11,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
  margin-left: 8%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-subtitle-top {
  font-family: var(--font-subheading);
  font-size: 22px;
  font-style: italic;
  color: var(--light-gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  font-family: var(--font-heading);
}

.highlight-bengal {
  font-size: 64px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: var(--font-heading);
  display: block;
  margin-top: 8px;
}

.hero-text-divider {
  width: 150px;
  margin: 10px 0 24px;
  opacity: 0.8;
}

.hero-desc {
  font-family: var(--font-subheading);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
}

.btn-hero-explore {
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-gold);
  background: transparent;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.btn-hero-explore:hover {
  background-color: var(--gold);
  color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 155, 60, 0.3);
}

/* Hero Border Filigrees */
.hero-border-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.hero-border-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  z-index: 2;
  transform: scaleX(-1);
  pointer-events: none;
}

/* Dome-framed slider indicators */
.hero-slider-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 120px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 8px;
}

.hero-dots-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero-dots-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin-bottom: 2px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.6;
}

.hero-dot.active {
  background-color: var(--gold);
  opacity: 1;
  transform: scale(1.2);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}

.float-left {
  left: 5%;
  top: 30%;
  width: 150px;
  animation: floatSlow 8s ease-in-out infinite;
}

.float-right {
  right: 5%;
  bottom: 20%;
  width: 180px;
  animation: floatSlow 10s ease-in-out infinite alternate;
}

.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--light-gold));
  width: 0%;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-image: url('../assets/images/dark_bg.png');
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
}

.section-dark h2 {
  color: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  position: relative;
}

.section-divider {
  width: 120px;
  height: 12px;
  margin: 0 auto;
  opacity: 0.8;
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about-story-panel {
  position: relative;
  color: var(--cream);
  overflow: hidden;
}

.about-facade-drawing {
  position: absolute;
  right: 2%;
  top: 10%;
  width: 360px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 24px;
  text-align: justify;
}

.about-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.story-framed-wrapper {
  position: relative;
  width: 380px;
  height: 266px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.story-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.story-image-inner {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  z-index: 2;
  overflow: hidden;
  position: relative;
}

.story-img-file {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.35) contrast(1.15);
  transition: var(--transition-smooth);
}

.story-framed-wrapper:hover .story-img-file {
  filter: sepia(0) contrast(1.0);
  transform: scale(1.03);
}

/* ==========================================================================
   SIGNATURE DISHES SECTION
   ========================================================================== */
.dishes-edge-mandala {
  position: absolute;
  width: 350px;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
  animation: spin 90s linear infinite;
}
.dishes-edge-mandala.edge-left {
  left: -150px;
  top: 15%;
}
.dishes-edge-mandala.edge-right {
  right: -150px;
  bottom: 15%;
}

.dishes-carousel-container {
  position: relative;
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 0 50px;
  z-index: 2;
}

.dishes-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.dishes-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 24px;
}

.dish-card {
  flex: 0 0 calc((100% - 72px) / 4);
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  position: relative;
  transition: var(--transition-smooth);
}

.dish-card-border-top,
.dish-card-border-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.dish-card-border-top img,
.dish-card-border-bottom img {
  width: 100%;
  display: block;
}

.dish-card-inner {
  background: transparent;
  width: calc(100% - 20px);
  margin: -1px auto;
  padding: 10px 14px;
  border-left: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-grow: 1;
}

.dish-image-wrapper.circular-frame {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  padding: 8px;
  background-color: transparent;
  margin: 15px 0;
  overflow: hidden;
}

.dish-image-wrapper.circular-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dish-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.dish-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.dish-desc {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 15px;
  color: #7B3F00;
  line-height: 1.45;
  opacity: 0.95;
  text-align: center;
  max-width: 190px;
  margin-bottom: 12px;
  flex-grow: 1;
}

.dish-card-scroll-divider {
  width: 70px;
  margin: 8px auto 12px;
  opacity: 0.7;
}

.dish-card-scroll-divider img {
  width: 100%;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary);
  color: var(--light-gold);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.carousel-arrow:hover {
  background-color: var(--gold);
  color: var(--dark-brown);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

/* ==========================================================================
   ROYAL EXPERIENCE TIMELINE
   ========================================================================== */
.experience-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 44px;
  height: 44px;
  background-color: var(--dark-brown);
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.timeline-marker svg {
  width: 100%;
  height: 100%;
}

.timeline-content {
  padding: 30px;
  background-color: rgba(92, 46, 22, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.15);
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-date {
  font-family: var(--font-nav);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 14px;
  opacity: 0.9;
}

/* ==========================================================================
   AMBANCE GALLERY
   ========================================================================== */
.gallery-notched-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-notched-card {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallery-notch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.gallery-notched-img-box {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px;
  z-index: 2;
  overflow: hidden;
}

.gallery-notched-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: sepia(0.2) contrast(1.05);
}

.gallery-notched-card:hover {
  transform: translateY(-5px);
}

.gallery-notched-card:hover .gallery-notched-img-box img {
  transform: scale(1.08);
  filter: sepia(0) contrast(1.0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 20, 11, 0.95);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  border: 4px solid var(--gold);
  background-color: var(--dark-brown);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--cream);
  font-size: 30px;
  cursor: pointer;
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.lightbox-arrow:hover {
  color: var(--gold);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-alpona-section {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
  padding: 100px 8%;
}

.testimonials-margin-alpona {
  position: absolute;
  width: 320px;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
  animation: spin 95s linear infinite;
}

.testimonials-margin-alpona.left-alpona {
  left: -160px;
  top: 20%;
}

.testimonials-margin-alpona.right-alpona {
  right: -160px;
  bottom: 20%;
  animation-direction: reverse;
}

.testimonials-notched-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 50px auto 0;
  z-index: 2;
  position: relative;
}

.testimonial-notched-card {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.testimonial-notched-card:hover {
  transform: translateY(-5px);
}

.test-border-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.test-card-inner {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  padding: 24px 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.test-quote-double {
  font-family: var(--font-heading);
  font-size: 50px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
  margin-top: 15px;
  margin-bottom: -5px;
}

.test-quote-body {
  font-family: var(--font-subheading);
  font-size: 15px;
  font-style: italic;
  color: var(--primary);
  line-height: 1.45;
  margin-bottom: 12px;
  flex-grow: 1;
  max-width: 220px;
}

.test-author-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.test-stars-gold {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

/* ==========================================================================
   RESERVATION SECTION
   ========================================================================== */
.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: rgba(36, 20, 11, 0.88);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(200, 155, 60, 0.3);
  padding: 60px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.reservation-container::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(200, 155, 60, 0.15);
  border-radius: 8px;
  pointer-events: none;
}

.reserve-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.reserve-title {
  color: var(--cream);
  font-size: 32px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.reserve-desc {
  font-family: var(--font-subheading);
  font-size: 16px;
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.reserve-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reserve-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(200, 155, 60, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reserve-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 155, 60, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reserve-contact-item:hover .contact-icon-box {
  background-color: var(--gold);
  color: var(--dark-brown);
  transform: rotate(15deg);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.contact-text {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(248, 243, 233, 0.6);
}

.contact-text a {
  display: block;
  font-size: 18px;
  color: var(--light-gold);
  font-family: var(--font-body);
  margin-top: 4px;
  transition: var(--transition-fast);
}

.contact-text a:hover {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Reservation Form */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-input, .form-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-bottom: 2px solid rgba(200, 155, 60, 0.4);
  color: var(--cream);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input::placeholder {
  color: rgba(248, 243, 233, 0.4);
}

.form-input:focus, .form-select:focus {
  border-color: var(--light-gold);
  border-bottom-color: var(--light-gold);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 15px rgba(200, 155, 60, 0.12);
}

.form-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

.form-select option {
  background-color: #24140B;
  color: var(--cream);
  padding: 10px;
}

.btn-form-submit {
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-brown);
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  padding: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(200, 155, 60, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: all 0.6s ease;
}

.btn-form-submit:hover::before {
  left: 100%;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(200, 155, 60, 0.45);
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 100%);
}

.btn-form-submit:active {
  transform: translateY(0);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-image: url('../assets/images/dark_bg.png');
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  padding: 80px 8% 30px;
  position: relative;
  border-top: 1px solid rgba(200, 155, 60, 0.2);
  overflow: hidden;
}

.footer-corner-alpona {
  position: absolute;
  width: 320px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
  animation: spin 100s linear infinite;
}

.footer-corner-alpona.bottom-left-alpona {
  left: -140px;
  bottom: -140px;
}

.footer-corner-alpona.bottom-right-alpona {
  right: -140px;
  bottom: -140px;
  animation-direction: reverse;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--light-gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-subheading);
  font-size: 14px;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cream);
  font-size: 13px;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--dark-brown);
  transform: translateY(-3px);
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  opacity: 0.8;
  position: relative;
}

.footer-link:hover {
  color: var(--light-gold);
  padding-left: 5px;
}

.footer-contact-info {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
}

/* Newsletter Form Update */
.footer-newsletter-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(200, 155, 60, 0.35);
  border-radius: 2px;
  overflow: hidden;
  max-width: 240px;
}

.newsletter-input {
  flex-grow: 1;
  border: none;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--cream);
  background: transparent;
  outline: none;
  width: 100%;
}

.newsletter-btn {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  padding: 0 16px;
  color: var(--dark-brown);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  opacity: 0.9;
}

/* Bottom Centered Copyright details */
.footer-bottom-centered {
  border-top: 1px solid rgba(200, 155, 60, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom-scroll {
  width: 100px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.footer-bottom-scroll img {
  width: 100%;
}



/* ==========================================================================
   BACK TO TOP & SCROLL PROGRESS
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--dark-brown);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--gold);
  color: var(--dark-brown);
  transform: translateY(-5px);
}


/* Lakkhir Paa Footprints path in Reservation */
.lakkhir-paa-guiding-path {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.lakkhir-footprint {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1s ease, transform 1s ease;
  filter: drop-shadow(0 2px 4px rgba(200,155,60,0.15));
}

.lakkhir-footprint.step-1 {
  bottom: 8%;
  left: 34%;
  transform: rotate(15deg);
}

.lakkhir-footprint.step-2 {
  bottom: 20%;
  left: 39%;
  transform: rotate(25deg);
}

.lakkhir-footprint.step-3 {
  bottom: 32%;
  left: 44%;
  transform: rotate(35deg);
}

.lakkhir-footprint.step-4 {
  bottom: 44%;
  left: 49%;
  transform: rotate(45deg);
}

/* Custom Cursor Alpona Sparkle trail */
.alpona-sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--light-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: sparkleFade 1s forwards cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* SECTION-SPECIFIC ALPONA LIGHT BACKGROUNDS */
#dishes, #gallery, .testimonials-alpona-section, #reservation {
  background-image: url('../assets/images/body_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HIGH CONTRAST BUTTONS ON LIGHT BACKGROUNDS */
.section-light .btn-hero-explore, 
#gallery .btn-hero-explore {
  color: var(--dark-brown);
  border-color: var(--dark-brown);
}

.section-light .btn-hero-explore:hover, 
#gallery .btn-hero-explore:hover {
  background-color: var(--dark-brown);
  color: var(--cream);
  border-color: var(--dark-brown);
}

