/* css/style.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* === PALETTE === */
  --bg-primary:       #080808;   /* Deep black — main background */
  --bg-secondary:     #101010;   /* Card backgrounds */
  --bg-tertiary:      #181818;   /* Alternate sections */
  --bg-card:          #141414;   /* Room cards, info cards */

  --gold-primary:     #C9A84C;   /* Primary gold accent — CTAs, borders, icons */
  --gold-light:       #E3C06A;   /* Gold on hover / highlights */
  --gold-faint:       rgba(201,168,76,0.10); /* Subtle gold background tint */
  --gold-border:      rgba(201,168,76,0.25); /* Gold card borders */

  --text-primary:     #F5F0E8;   /* Warm white — main headings */
  --text-secondary:   #A89880;   /* Muted warm — body text */
  --text-tertiary:    #665544;   /* Dimmed — labels, captions */
  --text-gold:        #C9A84C;   /* Gold text */

  --border-default:   #1E1E1E;   /* Subtle dividers */
  --border-emphasis:  #2E2E2E;   /* Card borders */

  --success:          #2A7A4A;
  --whatsapp-green:   #25D366;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Legacy variables mapped to the new palette for robust rendering */
  --color-bg:         var(--bg-primary);
  --color-bg-dark:    var(--bg-tertiary);
  --color-black:      var(--text-primary);
  --color-gold:       var(--gold-primary);
  --color-gold-light: var(--gold-light);
  --color-white:      var(--bg-secondary);
  --color-brown:      var(--text-secondary);
  --color-shadow:     rgba(0, 0, 0, 0.55);
  --color-danger:     #d9534f;
  --color-success:    var(--success);
}

/* Global Reset & Base Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-black);
}

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

/* Common Section Layouts */
section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 2;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-gold);
}

/* Custom Gold Underline Leaf Ornament */
.section-header .leaf-ornament {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-top: 0.5rem;
  display: block;
}

.section-header p {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--color-brown);
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* Fixed Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-default);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  top: 0;
  background-color: rgba(8, 8, 8, 0.95);
  box-shadow: 0 4px 20px var(--color-shadow);
  border-bottom: 1px solid var(--gold-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo in Nav */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-black);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--color-gold);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.3rem 0;
}

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

.nav-links a.active,
.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger mobile menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--color-black);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

/* Animated Floating Leaves */
.floating-leaves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.leaf {
  position: absolute;
  fill: rgba(201, 168, 76, 0.18);
  transform-origin: center;
  animation: floatLeaf 12s ease-in-out infinite alternate;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  animation-duration: 15s;
  animation-delay: 0s;
}

.leaf-2 {
  bottom: 12%;
  left: 8%;
  width: 100px;
  transform: rotate(45deg);
  animation-duration: 18s;
  animation-delay: -3s;
}

.leaf-3 {
  top: 15%;
  right: 6%;
  width: 90px;
  transform: rotate(-30deg);
  animation-duration: 14s;
  animation-delay: -1s;
}

.leaf-4 {
  bottom: 15%;
  right: 8%;
  width: 75px;
  transform: rotate(120deg);
  animation-duration: 16s;
  animation-delay: -5s;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(8deg) scale(1.05);
  }
  100% {
    transform: translateY(10px) rotate(-8deg) scale(0.95);
  }
}

/* Brand Text Logo & Decorative Frame */
.brand-frame {
  border: 2px solid var(--color-gold);
  padding: 2.5rem 3.5rem;
  position: relative;
  margin-bottom: 2rem;
  background-color: rgba(8, 8, 8, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.brand-frame::before,
.brand-frame::after {
  content: '✿';
  position: absolute;
  color: var(--color-gold);
  font-size: 1.2rem;
  background-color: var(--color-bg);
  padding: 0 0.5rem;
}

.brand-frame::before {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.brand-frame::after {
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Hero Tagline Below Frame */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-brown);
  max-width: 600px;
  margin-bottom: 3rem;
  z-index: 2;
  line-height: 1.4;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast) cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  border-color: var(--color-gold);
  background: transparent;
  color: var(--color-black);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 168, 76, 0.2);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-brown);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
}

.scroll-indicator .arrow {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  animation: bounceArrow 1.6s infinite;
  color: var(--color-gold);
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* About Us Section */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-style: italic;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
  position: relative;
  padding-left: 2rem;
}

.about-quote::before {
  content: '“';
  position: absolute;
  left: -1rem;
  top: -1.5rem;
  font-size: 7rem;
  color: rgba(201, 168, 76, 0.15);
  font-family: var(--font-heading);
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-brown);
  line-height: 1.8;
  text-align: justify;
}

.about-text strong {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

/* Highlight boxes */
.highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-box {
  background-color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 4px 15px var(--color-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 18, 8, 0.1);
  border-color: var(--color-gold);
}

.highlight-box .icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.highlight-box h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: 0.9rem;
  color: var(--color-brown);
}

/* Menu Section */
.menu-section {
  background-color: var(--color-bg);
}

.menu-notice-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.jain-notice {
  background: var(--color-white);
  border: 1px solid var(--color-gold);
  border-left: 5px solid var(--color-gold);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-brown);
  max-width: 700px;
  box-shadow: 0 4px 12px var(--color-shadow);
}

/* Category Filter Tabs */
.menu-categories-wrapper {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  overflow-x: auto;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.menu-categories {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-start;
  min-width: max-content;
  padding: 0 0.5rem;
}

/* Hide scrollbars for categories wrapper but allow scrolling */
.menu-categories-wrapper::-webkit-scrollbar {
  height: 4px;
}
.menu-categories-wrapper::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
}

.category-tab {
  background-color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brown);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.category-tab:hover {
  background-color: var(--color-bg-dark);
  border-color: var(--color-gold);
  color: var(--color-black);
}

.category-tab.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-primary);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.25);
}

/* Menu Grid */
.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  min-height: 300px;
}

.menu-card {
  background-color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--color-shadow);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(26, 18, 8, 0.1);
  border-color: var(--color-gold);
}

.menu-card-badge {
  align-self: flex-start;
  background-color: rgba(201, 168, 76, 0.15);
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.menu-card-separator {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin: 0.5rem 0 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-card-separator::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: rgba(201, 168, 76, 0.25);
}

.menu-card-description {
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-top: auto;
  line-height: 1.5;
}

/* Category Grid Header / Separator (if listing all) */
.menu-category-section-title {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-brown);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1rem 0;
}

.menu-category-section-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--color-gold);
}

/* Photo Gallery Section */
.gallery-section {
  overflow: hidden;
}

.gallery-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 4px solid var(--color-white);
}

.slideshow-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* Slideshow navigation */
.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(253, 250, 244, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-black);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slideshow-nav:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.slideshow-nav.prev {
  left: 1.5rem;
}

.slideshow-nav.next {
  right: 1.5rem;
}

/* Dot indicators */
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-gold);
  transform: scale(1.25);
}

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 18, 8, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 4px solid var(--color-white);
  border-radius: 8px;
}

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

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: -0.5rem;
  color: var(--text-primary);
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Videos Section */
.videos-container-outer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.videos-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 2rem 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for video row, add custom styling later */
.videos-row::-webkit-scrollbar {
  height: 6px;
}
.videos-row::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
}

.video-card {
  flex: 0 0 calc(33.333% - 1.34rem);
  scroll-snap-align: start;
  background-color: var(--color-white);
  border: 4px solid var(--color-white);
  box-shadow: 0 6px 20px var(--color-shadow);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16; /* Portrait style video card */
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 18, 8, 0.15);
  border-color: var(--color-bg-dark);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26,18,8,0.1) 60%, rgba(26,18,8,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  pointer-events: none; /* Let clicks pass to control overlay */
}

.video-play-btn {
  pointer-events: auto; /* Allow clicks on play button overlay */
  width: 60px;
  height: 60px;
  background-color: rgba(253, 250, 244, 0.9);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 5;
}

.video-card:hover .video-play-btn {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 4;
}

/* Reviews / Testimonials Section */
.reviews-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 250px;
}

.reviews-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.review-slide {
  background-color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 6px 20px var(--color-shadow);
  display: none;
  animation: fadeInReview 0.6s ease;
}

.review-slide.active {
  display: block;
}

@keyframes fadeInReview {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-brown);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.reviewer-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Location / Find Us Section */
.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.contact-card {
  background-color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 22px var(--color-shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.contact-details h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  margin-bottom: 0.3rem;
}

.contact-details p {
  font-size: 1.05rem;
  color: var(--color-black);
  line-height: 1.5;
}

.social-links-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-bg);
  color: var(--color-brown);
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.25);
}

.map-wrapper {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--color-white);
  height: 400px;
}

/* Social Media Footer Strip */
.instagram-strip {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: var(--bg-primary);
  padding: 3rem 1.5rem;
  text-align: center;
  z-index: 2;
  position: relative;
}

.instagram-strip p {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.instagram-strip h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.instagram-strip .btn-instagram {
  background-color: var(--bg-primary);
  color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.instagram-strip .btn-instagram:hover {
  background-color: #2D2012;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer styling */
footer {
  background-color: var(--color-black);
  color: var(--color-gold);
  padding: 4rem 1.5rem 2rem 1.5rem;
  text-align: center;
  border-top: 2px solid var(--color-gold);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #000000;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  letter-spacing: 0.02em;
}

.footer-bottom .director-credit {
  color: #000000;
  font-weight: 600;
}

.footer-bottom a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* Small Admin Link */
.admin-link-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.admin-link {
  font-size: 0.75rem;
  color: rgba(253, 250, 244, 0.3) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-link:hover {
  color: var(--color-gold) !important;
}

/* RESPONSIVE DESIGN STYLES */

/* Tablet (480px - 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 4rem 1.2rem;
  }

  .navbar {
    top: 0;
  }

  /* Hamburger Menu implementation */
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: right var(--transition-smooth);
    z-index: 1001;
    border-left: 2px solid var(--color-gold);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hero Section scaling */
  .brand-frame {
    padding: 1.8rem 2rem;
  }

  .brand-name {
    font-size: 3.2rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  /* About Us Section */
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-quote {
    font-size: 2.2rem;
    padding-left: 1rem;
  }

  .highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Menu Section */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Gallery Section */
  .slideshow-wrapper {
    height: 380px;
  }

  /* Videos Section */
  .video-card {
    flex: 0 0 calc(50% - 1rem);
  }

  /* Location Section */
  .location-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .map-wrapper {
    height: 350px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .admin-link-wrapper {
    justify-content: center;
  }
}

/* Mobile (< 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  section {
    padding: 3.5rem 1rem;
  }

  /* Hero Section scaling */
  .brand-frame {
    padding: 1.5rem 1.2rem;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .brand-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1.8rem;
  }

  /* Menu Section */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery Section */
  .slideshow-wrapper {
    height: 280px;
  }
  
  .slideshow-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* Videos Section */
  .video-card {
    flex: 0 0 100%;
  }

  /* Contact Card padding */
  .contact-card {
    padding: 1.5rem;
  }

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

  .instagram-strip h3 {
    font-size: 1.8rem;
  }

  .admin-floating-btn {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Floating Admin Button Style */
.admin-floating-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px;
  height: 46px;
  background-color: var(--color-black);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(26, 18, 8, 0.3);
  z-index: 999;
  transition: all var(--transition-fast) cubic-bezier(0.2, 0, 0, 1);
}

.admin-floating-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
  border-color: var(--color-gold-light);
}

