/* css/style.css */
@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');

:root {
  --bg-primary:       #080808;
  --bg-secondary:     #101010;
  --bg-tertiary:      #181818;
  --bg-card:          #141414;

  --gold-primary:     #C9A84C;
  --gold-light:       #E3C06A;
  --gold-faint:       rgba(201,168,76,0.10);
  --gold-border:      rgba(201,168,76,0.25);

  --text-primary:     #F5F0E8;
  --text-secondary:   #A89880;
  --text-tertiary:    #665544;
  --text-gold:        #C9A84C;

  --border-default:   #1E1E1E;
  --border-emphasis:  #2E2E2E;

  --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);

  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

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

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

p {
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Reusable Components & Layout utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

/* Section Header styling */
.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin: 15px auto 0;
}

.section-header .sub-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold {
  background-color: var(--gold-primary);
  color: #000;
  border: 1px solid var(--gold-primary);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  background-color: var(--gold-faint);
  border-color: var(--gold-primary);
  color: var(--text-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #fff !important;
  border: 1px solid var(--whatsapp-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Top Announcement Bar */
.announcement-bar {
  background-color: #030303;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

.navbar.scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Brand Text Styling */
.brand-logo-small {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-logo-small .line-1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-gold);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

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

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

/* Hamburger mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  background-color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

/* Large decorative Brand Block */
.brand-block {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 30px 0;
  margin-bottom: 30px;
}

.hero-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.brand-block .line-1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  color: var(--text-gold);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-block .line-3 {
  font-size: 1.2rem;
  color: var(--text-gold);
  letter-spacing: 0.3em;
  margin-top: 15px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text-gold);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-secondary);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-left .quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.8rem;
  line-height: 1.3;
  color: var(--text-gold);
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--gold-primary);
}

.about-right .story-text {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.about-right .story-text strong {
  color: var(--text-gold);
  font-weight: 600;
}

/* Stats Highlight Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.stat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-gold);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Rooms Section */
.rooms-note {
  text-align: center;
  color: var(--text-gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-top: -40px;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Room Slideshow Container */
.room-slideshow {
  height: 250px;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.room-slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.room-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.room-slide img,
.room-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.room-slideshow-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.room-slideshow-prev {
  left: 15px;
}

.room-slideshow-next {
  right: 15px;
}

/* Slideshow dots */
.room-slideshow-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.room-slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.room-slideshow-dot.active {
  background: var(--gold-primary);
  width: 20px;
  border-radius: 4px;
}

/* Placeholder for room photo */
.room-photo-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  padding: 20px;
  text-align: center;
}

.room-photo-placeholder i {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 10px;
}

/* Room Details */
.room-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.room-card h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
}

.room-badge {
  background-color: var(--gold-faint);
  border: 1px solid var(--gold-primary);
  color: var(--text-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card .room-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Room feature icons */
.room-features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border-default);
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.room-feature-item i {
  color: var(--text-gold);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.amenity-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.amenity-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.amenity-card i {
  font-size: 2.2rem;
  color: var(--text-gold);
  margin-bottom: 18px;
  display: inline-block;
}

.amenity-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.amenity-card p {
  font-size: 0.85rem;
}

/* Scroll Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.staggered-delay {
  transition-delay: 0.1s;
}

.checkin-infobar {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--gold-border);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* Dining Section */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.dining-card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.dining-card h3 {
  font-size: 1.8rem;
  color: var(--text-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dining-card .timings-badge {
  background-color: var(--gold-faint);
  color: var(--text-gold);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 25px;
  border: 1px solid rgba(201,168,76,0.2);
}

.dining-card p {
  font-size: 0.95rem;
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Breakfast Menu Layout */
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.menu-category-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-emphasis);
  padding-bottom: 8px;
}

.menu-list {
  list-style: none;
}

.menu-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px dotted var(--border-emphasis);
  margin: 0 10px;
}

.menu-item span {
  order: 2; /* Move label after dot fills */
}

.menu-note {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 15px;
}

/* Events & Banquet Section */
.banquet-card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.banquet-text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banquet-text p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.banquet-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.banquet-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.banquet-highlight-item i {
  color: var(--text-gold);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.banquet-highlight-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
}

.banquet-highlight-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.banquet-slideshow {
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

/* Nearby Attractions */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.attraction-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 35px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.attraction-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.attraction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.attraction-badge {
  background-color: var(--gold-faint);
  color: var(--text-gold);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.2);
  font-weight: 500;
}

.attraction-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.attraction-icon {
  font-size: 2rem;
}

.attraction-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.attraction-distance {
  font-size: 0.85rem;
  color: var(--text-gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Photo Gallery Section */
.gallery-container {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slideshow {
  height: 480px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  background-color: #000;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  cursor: pointer;
}

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

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

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--gold-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 20px;
  transition: var(--transition-fast);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--gold-primary);
}

/* Experience Video Section */
.video-scroll-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 10px 5px 30px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.video-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.video-card {
  min-width: 320px;
  width: 320px;
  height: 450px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: var(--transition-smooth);
}

.video-card:hover {
  border-color: var(--gold-border);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,8,8,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.video-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.video-play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.video-card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  z-index: 10;
}

/* Guest Reviews Section */
.reviews-container {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  padding: 0 10px;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

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

.review-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-gold);
  letter-spacing: 0.05em;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-emphasis);
  cursor: pointer;
  transition: var(--transition-fast);
}

.reviews-dot.active {
  background: var(--gold-primary);
}

/* Contact & Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item i {
  color: var(--text-gold);
  font-size: 1.3rem;
  margin-top: 3px;
  width: 24px;
  text-align: center;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: pre-line;
}

.contact-item a:hover {
  color: var(--text-gold);
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-ctas .btn {
  width: 100%;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  height: 100%;
  min-height: 420px;
}

/* Footer Section */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-default);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

.footer-logo-block {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-block .title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-logo-block .stars {
  color: var(--text-gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.footer-logo-block .tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-gold);
}

.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-default);
}

.footer-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

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

.footer-contacts-row {
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.footer-contacts-row a:hover {
  color: var(--text-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  text-decoration: underline;
}

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

/* RESPONSIVE DESIGN STYLES */

/* Desktop & Laptop sizes (Default grid setup) */

/* Tablet viewports: 480px - 768px */
@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .navbar {
    top: 0; /* Align directly on scroll overlay */
  }

  /* Hamburger Menu Toggle */
  .nav-toggle {
    display: block;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-default);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 1001;
  }

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

  /* Hero adjustments */
  .brand-block .line-1 {
    font-size: 2.8rem;
  }

  .brand-block .line-2 {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
  }

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

  /* About stacking */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Stats 2x2 grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Room card stacking / tablet layout */
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  /* Amenities layout */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Dining stack */
  .dining-grid {
    grid-template-columns: 1fr;
  }

  /* Banquet layouts */
  .banquet-card {
    grid-template-columns: 1fr;
  }

  .banquet-slideshow {
    min-height: 300px;
  }

  /* Attractions 2-column to 1-column responsive shift */
  .attractions-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  /* Lightbox buttons responsive alignment */
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }

  /* Contact stacking */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 350px;
  }

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

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

  .section-header h2 {
    font-size: 1.8rem;
  }

  .brand-block .line-1 {
    font-size: 2.2rem;
  }

  .brand-block .line-2 {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }

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

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .about-left .quote {
    font-size: 1.8rem;
  }

  /* Stats stack fully on tiny devices */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .menu-columns {
    grid-template-columns: 1fr;
  }

  .banquet-text {
    padding: 25px;
  }

  .gallery-slideshow {
    height: 300px;
  }

  .review-card {
    padding: 30px 15px;
  }

  .review-text {
    font-size: 1.1rem;
  }

  .contact-info-card {
    padding: 24px;
  }
}
