/* ===================================================================
   HOTEL DALHOUSIE GRAND — Luxury Stylesheet
   Palette: Deep Burgundy · Walnut Wood · Warm Gold · Ivory Cream
   Pure HTML/CSS — no frameworks, no build tools
   =================================================================== */

/* -------------------------------------------------------------------
   1. Root variables
   ------------------------------------------------------------------- */
:root {
  --burgundy: #6B1F2A;
  --burgundy-dark: #4A1320;
  --burgundy-light: #8B2E3A;
  --walnut: #3D2817;
  --walnut-light: #5C3D24;
  --gold: #C8923D;
  --gold-light: #E0B85C;
  --gold-dark: #A0742A;
  --cream: #FAF6EF;
  --cream-dark: #EDE4D3;
  --ivory: #FFFCF7;
  --charcoal: #2A2520;
  --charcoal-soft: #6B6358;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 16px rgba(42, 37, 32, 0.08);
  --shadow-md: 0 12px 40px rgba(42, 37, 32, 0.14);
  --shadow-lg: 0 24px 60px rgba(42, 37, 32, 0.20);
  --radius: 16px;
  --radius-lg: 26px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* -------------------------------------------------------------------
   2. Base resets
   ------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--walnut);
  line-height: 1.2;
}

p { color: var(--charcoal-soft); }

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

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

section { position: relative; }

/* -------------------------------------------------------------------
   3. Utility helpers
   ------------------------------------------------------------------- */
.container-lux { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 64px 0; }
.text-gold { color: var(--gold) !important; }
.text-burgundy { color: var(--burgundy) !important; }
.text-cream { color: var(--cream) !important; }
.bg-burgundy { background-color: var(--burgundy) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-walnut { background-color: var(--walnut) !important; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

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

/* -------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------- */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--walnut);
  box-shadow: 0 8px 24px rgba(200, 146, 61, 0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--walnut);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(200, 146, 61, 0.45);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(107, 31, 42, 0.3);
}
.btn-burgundy:hover {
  background: var(--burgundy-light);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 252, 247, 0.5);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

/* -------------------------------------------------------------------
   5. Navbar
   ------------------------------------------------------------------- */
.luxury-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(42, 37, 32, 0.06);
}
.luxury-nav.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 24px rgba(42, 37, 32, 0.10);
  padding: 10px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  transition: color var(--transition);
}

.nav-brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--walnut);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 400;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--burgundy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--cream) !important; font-size: 1rem; }
  .nav-links a::after { background: var(--gold); }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--cream); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--cream); }
}

/* -------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  transform: scale(1.08);
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 7s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1.18); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 37, 32, 0.35) 0%, rgba(42, 37, 32, 0.55) 60%, rgba(42, 37, 32, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
}
.hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  color: rgba(255, 252, 247, 0.92);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 252, 247, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.hero-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}
.hero-dots button:hover { border-color: var(--gold); }

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}
.hero-arrows button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 252, 247, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrows button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--walnut);
}
@media (max-width: 575px) { .hero-arrows { display: none; } }

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255, 252, 247, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: floatY 2.4s ease-in-out infinite;
}
.scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 252, 247, 0.6);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--cream);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}
@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* -------------------------------------------------------------------
   6b. Booking bar (overlaps hero bottom)
   ------------------------------------------------------------------- */
.booking-bar {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: -37px auto 0;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.booking-bar .bb-field { display: flex; flex-direction: column; gap: 6px; }
.booking-bar .bb-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.booking-bar .bb-field input,
.booking-bar .bb-field select {
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  transition: all var(--transition);
}
.booking-bar .bb-field input:focus,
.booking-bar .bb-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 61, 0.12);
  outline: none;
}
.booking-bar .bb-btn {
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.booking-bar .bb-btn:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
}
@media (max-width: 991px) {
  .booking-bar { grid-template-columns: 1fr 1fr; margin-top: -50px; padding: 20px; }
  .booking-bar .bb-btn { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .booking-bar { grid-template-columns: 1fr; margin: 0 16px; }
}

/* -------------------------------------------------------------------
   7. Welcome / About intro
   ------------------------------------------------------------------- */
.welcome-section { padding: 120px 0; }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
}

.welcome-image-stack {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.welcome-image-stack .img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome-image-stack .img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.welcome-image-stack .img-main:hover img { transform: scale(1.05); }

.welcome-image-stack .img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.welcome-image-stack .img-badge .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.welcome-image-stack .img-badge .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 991px) {
  .welcome-image-stack { padding: 0; }
  .welcome-image-stack .img-main img { height: 380px; }
  .welcome-image-stack .img-badge { width: 140px; height: 140px; }
  .welcome-image-stack .img-badge .num { font-size: 2rem; }
}

.welcome-text .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.welcome-text .check-list div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.welcome-text .check-list i { color: var(--gold); }

@media (max-width: 575px) {
  .welcome-text .check-list { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------
   8. Glass cards (facilities, features)
   ------------------------------------------------------------------- */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 15px 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.9);
}
.glass-card .icon-circle {
  width: 64px;
    height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.glass-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--walnut);
  transform: rotate(8deg) scale(1.08);
}
.glass-card h5 { font-size: 1.2rem; margin-bottom: 10px; color: var(--walnut); }
.glass-card p { font-size: 0.92rem; margin: 0; }

/* -------------------------------------------------------------------
   9. Room cards
   ------------------------------------------------------------------- */
.room-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.room-card .room-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.room-card .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img img { transform: scale(1.1); }
.room-card .room-price {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(107, 31, 42, 0.92);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.room-card .room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card .room-body h4 { font-size: 1.4rem; margin-bottom: 10px; color: var(--walnut); }
.room-card .room-body p { font-size: 0.92rem; margin-bottom: 18px; }
.room-card .room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.room-card .room-features li {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-card .room-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}
.room-card .room-meta {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.room-card .room-meta span {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-card .room-meta span strong { color: var(--burgundy); }

/* -------------------------------------------------------------------
   10. Parallax / CTA banner
   ------------------------------------------------------------------- */
.parallax-banner {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(61, 40, 23, 0.8), rgba(42, 37, 32, 0.75));
}
.parallax-banner .container-lux { position: relative; z-index: 2; }
.parallax-banner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}
.parallax-banner p {
  color: rgba(255, 252, 247, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}
@media (max-width: 991px) { .parallax-banner { background-attachment: scroll; } }

/* -------------------------------------------------------------------
   11. Section divider
   ------------------------------------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 20px;
}
.divider .line { width: 50px; height: 1px; background: var(--gold); }
.divider .diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* -------------------------------------------------------------------
   12. Testimonials
   ------------------------------------------------------------------- */
.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 16px; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card .quote { font-size: 1rem; color: var(--charcoal-soft); margin-bottom: 24px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author h6 { font-size: 1rem; margin: 0; color: var(--walnut); }
.testimonial-card .author span { font-size: 0.8rem; color: var(--charcoal-soft); }

/* -------------------------------------------------------------------
   13. Gallery (masonry + lightbox)
   ------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--burgundy);
  color: var(--cream);
}

.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}
@media (max-width: 991px) { .masonry-grid { column-count: 2; } }
@media (max-width: 575px) { .masonry-grid { column-count: 1; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.masonry-item:hover img { transform: scale(1.08); }
.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(61, 40, 23, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.masonry-item:hover .overlay { opacity: 1; }
.masonry-item .overlay span {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover { background: var(--gold); color: var(--walnut); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* -------------------------------------------------------------------
   14. Attraction cards
   ------------------------------------------------------------------- */
.attraction-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--ivory);
  transition: all var(--transition);
  height: 100%;
}
.attraction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.attraction-card .img-wrap { position: relative; overflow: hidden; height: 240px; }
.attraction-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.attraction-card:hover .img-wrap img { transform: scale(1.1); }
.attraction-card .distance-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--burgundy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.attraction-card .card-body { padding: 28px; }
.attraction-card .card-body h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--walnut); }
.attraction-card .card-body p { font-size: 0.9rem; }

/* -------------------------------------------------------------------
   15. Stats counters
   ------------------------------------------------------------------- */
.stat-block { text-align: center; padding: 20px; }
.stat-block .num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block .lbl {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.8);
}

/* -------------------------------------------------------------------
   16. Timeline (about page)
   ------------------------------------------------------------------- */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
  transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 20px 40px; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item .dot {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  z-index: 2;
}
.timeline-item:nth-child(odd) .dot { right: -8px; }
.timeline-item:nth-child(even) .dot { left: -8px; }
.timeline-item .year { font-family: var(--font-head); font-size: 1.6rem; color: var(--burgundy); margin-bottom: 6px; }
.timeline-item h5 { font-size: 1.1rem; margin-bottom: 6px; color: var(--walnut); }
.timeline-item p { font-size: 0.9rem; margin: 0; }
@media (max-width: 767px) {
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; padding-right: 10px; }
  .timeline-item .dot { left: 12px !important; right: auto !important; }
}

/* -------------------------------------------------------------------
   17. Contact form
   ------------------------------------------------------------------- */
.contact-form-wrap {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 991px) { .contact-form-wrap { padding: 32px 24px; } }

.form-control, .form-select {
  width: 100%;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  background: var(--cream);
  transition: all var(--transition);
  font-family: var(--font-body);
  color: var(--charcoal);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 146, 61, 0.15);
  background: var(--ivory);
  outline: none;
}
.form-label { font-weight: 500; font-size: 0.88rem; margin-bottom: 6px; color: var(--walnut); display: block; }

.contact-info-card {
  background: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
}
@media (max-width: 991px) { .contact-info-card { padding: 32px 24px; } }
.contact-info-card h4 { color: var(--cream); margin-bottom: 24px; }
.contact-info-card .info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-card .info-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 146, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
}
.contact-info-card .info-item h6 { color: var(--cream); margin: 0 0 2px; font-size: 0.95rem; }
.contact-info-card .info-item p { color: rgba(255, 252, 247, 0.8); margin: 0; font-size: 0.9rem; }

.social-icons { display: flex; gap: 12px; margin-top: 28px; }
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 146, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
  font-size: 1.1rem;
}
.social-icons a:hover { background: var(--gold); color: var(--walnut); transform: translateY(-3px); }

/* -------------------------------------------------------------------
   18. Footer
   ------------------------------------------------------------------- */
.footer {
  background: var(--walnut);
  color: rgba(255, 252, 247, 0.7);
  padding: 80px 0 0;
}
.footer h5 { color: var(--cream); font-size: 1.15rem; margin-bottom: 24px; }
.footer .footer-brand {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer p { color: rgba(255, 252, 247, 0.6); font-size: 0.9rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255, 252, 247, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer .newsletter input {
  background: rgba(255, 252, 247, 0.08);
  border: 1px solid rgba(255, 252, 247, 0.15);
  color: var(--cream);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.88rem;
  flex: 1;
  font-family: var(--font-body);
}
.footer .newsletter input::placeholder { color: rgba(255, 252, 247, 0.4); }
.footer .newsletter input:focus { background: rgba(255, 252, 247, 0.12); border-color: var(--gold); outline: none; }
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 252, 247, 0.1);
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 252, 247, 0.5);
}

/* -------------------------------------------------------------------
   19. Floating buttons
   ------------------------------------------------------------------- */
.floating-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btns a, .floating-btns button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  text-decoration: none;
}
.floating-btns a:hover, .floating-btns button:hover { transform: scale(1.1) translateY(-2px); }
.btn-whatsapp { background: #25d366; }
.btn-call { background: var(--burgundy); }
.btn-top { background: var(--gold); color: var(--walnut); opacity: 0; pointer-events: none; }
.btn-top.visible { opacity: 1; pointer-events: auto; }

/* -------------------------------------------------------------------
   20. Scroll progress bar
   ------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1100;
  width: 0;
  transition: width 0.1s linear;
}

/* -------------------------------------------------------------------
   21. FAQ accordion
   ------------------------------------------------------------------- */
.faq-item {
  background: var(--ivory);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item .faq-q {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  color: var(--walnut);
  transition: color var(--transition);
}
.faq-item .faq-q:hover { color: var(--burgundy); }
.faq-item .faq-q .icon { font-size: 1.4rem; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-item .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item .faq-a p { padding: 0 28px 22px; margin: 0; font-size: 0.92rem; }

/* -------------------------------------------------------------------
   22. Page header (interior pages)
   ------------------------------------------------------------------- */
.page-header {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-header .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 40, 23, 0.5), rgba(42, 37, 32, 0.65));
}
.page-header .content { position: relative; z-index: 2; }
.page-header h1 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 12px; }
.page-header .breadcrumb-lux {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 252, 247, 0.8);
  font-size: 0.9rem;
}
.page-header .breadcrumb-lux a { color: var(--gold-light); }
.page-header .breadcrumb-lux a:hover { color: var(--cream); }

/* -------------------------------------------------------------------
   23. Form feedback
   ------------------------------------------------------------------- */
.form-feedback {
  display: none;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-feedback.success { display: block; background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.form-feedback.error { display: block; background: #FBE9E7; color: #C62828; border: 1px solid #FFCCBC; }

/* -------------------------------------------------------------------
   24. Animations
   ------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeInUp 1s ease forwards; opacity: 0; }
.hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content > *:nth-child(4) { animation-delay: 0.9s; }

/* -------------------------------------------------------------------
   25. Grid helpers (replacing Bootstrap)
   ------------------------------------------------------------------- */
.row-lux { display: grid; gap: 24px; }
.cols-1 { grid-template-columns: 1fr; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .section-padding { padding: 70px 0; }
  .welcome-section { padding: 70px 0; }
}

/* -------------------------------------------------------------------
   26. Restaurant section
   ------------------------------------------------------------------- */
.restaurant-section { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); }
.restaurant-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);margin-top:20px; }
.restaurant-img img { width: 100%; height: 215px; object-fit: cover; transition: transform 0.8s ease; }
.restaurant-img:hover img { transform: scale(1.05); }

.menu-list { list-style: none; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li .dish { font-weight: 500; font-size: 0.95rem; color: var(--walnut); }
.menu-list li .desc { font-size: 0.82rem; color: var(--charcoal-soft); display: block; }
.menu-list li .price { color: var(--gold); font-weight: 600; font-family: var(--font-head); }

/* -------------------------------------------------------------------
   27. Instagram strip
   ------------------------------------------------------------------- */
.insta-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 767px) { .insta-strip { grid-template-columns: repeat(3, 1fr); } }
.insta-strip a { position: relative; display: block; overflow: hidden; aspect-ratio: 1; }
.insta-strip a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insta-strip a:hover img { transform: scale(1.12); }
.insta-strip a::after {
  content: '📷';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(61, 40, 23, 0.6);
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-strip a:hover::after { opacity: 1; }

/* -------------------------------------------------------------------
   28. Map
   ------------------------------------------------------------------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.book{
    background: var(--burgundy);
    color: var(--cream) !important;
}
.icon-circle .fas{
  font-size:18px;

}
.thankyou-section{
            height:100vh;
            display:flex;
            justify-content:center;
            align-items:center;
        }

        .thankyou-box{
            background:#fff;
            margin-top: 95px;
            padding:50px;
            max-width:650px;
            border-radius:15px;
            text-align:center;
            box-shadow:0 10px 35px rgba(0,0,0,.12);
        }

        .check{
            width:90px;
            height:90px;
            background:#28a745;
            color:#fff;
            border-radius:50%;
            margin:auto;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:45px;
            margin-bottom:25px;
        }

        .thankyou-box h1{
            color:var(--gold-500);
            font-weight:700;
            margin-bottom:20px;
        }

        .thankyou-box p{
            color:#666;
            font-size:18px;
            line-height:30px;
        }
        .hero-btns{
          padding-top:20px;
        }

