/* ===== Grand Royale Casino Hotel — Global Styles ===== */

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

/* ===== CSS Variables ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #9a7a2e;
  --black: #0a0a0b;
  --black-2: #111114;
  --black-3: #1a1a1f;
  --black-4: #242429;
  --gray-1: #2e2e35;
  --gray-2: #4a4a55;
  --gray-3: #8a8a95;
  --ivory: #f5f0e8;
  --ivory-2: #ede8dc;
  --white: #ffffff;
  --text-body: rgba(245, 240, 232, 0.82);
  --text-muted: rgba(245, 240, 232, 0.45);
  --border: rgba(201, 168, 76, 0.18);
  --border-strong: rgba(201, 168, 76, 0.4);
  --section-bg: #0f0f13;
  --card-bg: #14141a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --radius: 2px;
  --radius-lg: 4px;
}

/* Light mode */
[data-theme="light"] {
  --black: #f8f5ef;
  --black-2: #f0ece2;
  --black-3: #e8e2d6;
  --black-4: #ddd7c8;
  --gray-1: #c8c0ae;
  --gray-2: #9a917e;
  --gray-3: #6b6357;
  --ivory: #1a1208;
  --ivory-2: #2a1e08;
  --white: #111108;
  --text-body: rgba(26, 18, 8, 0.85);
  --text-muted: rgba(26, 18, 8, 0.5);
  --border: rgba(154, 121, 46, 0.22);
  --border-strong: rgba(154, 121, 46, 0.5);
  --section-bg: #f2ede1;
  --card-bg: #faf7f0;
  --gold: #8a6820;
  --gold-light: #b38a2a;
  --gold-dark: #6a5018;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

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

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

/* ===== Typography ===== */
.display { font-family: var(--font-display); font-weight: 300; line-height: 1.1; }
.heading { font-family: var(--font-heading); letter-spacing: 0.15em; }

h1, h2, h3, h4 { line-height: 1.2; }

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* ===== Gold Divider ===== */
.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.gold-line-left {
  margin: 0;
}

/* ===== Section Label ===== */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== Section Title ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

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

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 232, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Navbar ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 11, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

[data-theme="light"] #navbar.scrolled {
  background: rgba(248, 245, 239, 0.96);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--ivory);
  line-height: 1;
}

.nav-logo-tagline {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-book {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav-book:hover {
  background: var(--gold-light);
}

.theme-toggle {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-radius: 50%;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black-2);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,11,0.3) 0%,
    rgba(10,10,11,0.1) 30%,
    rgba(10,10,11,0.6) 70%,
    rgba(10,10,11,0.93) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 8rem;
}

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-content {
  padding-bottom: 5rem;
}

/* ===== Cards ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.8rem;
}

.card-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== Grid layouts ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== Testimonial ===== */
.testimonial {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--card-bg);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===== Stars ===== */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.stars span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== Amenity Icon ===== */
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.amenity-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.amenity-title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}

.amenity-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  z-index: 0;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.78);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== FAQ Accordion ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
  transition: color var(--transition);
  gap: 1rem;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }

/* ===== Form ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--ivory);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  border-radius: var(--radius);
  -webkit-appearance: none;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* ===== Footer ===== */
#footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}

.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* ===== Booking Widget ===== */
.booking-widget {
  position: relative;
  z-index: 10;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.booking-widget .form-group {
  margin: 0;
  flex: 1;
  min-width: 140px;
}

/* ===== Gallery Grid ===== */
.masonry-grid {
  columns: 3;
  column-gap: 0.8rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.masonry-item:hover img { transform: scale(1.05); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masonry-item:hover .masonry-item-overlay { opacity: 1; }

/* ===== Scroll Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Price tag ===== */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
}

.price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.price-amount {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Award badge ===== */
.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.award-badge:hover { border-color: var(--gold); }

.award-badge-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.award-badge-title {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}

.award-badge-org {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: var(--border-strong); }

/* ===== Newsletter ===== */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form .form-input {
  border-right: none;
  border-radius: 0;
}

.newsletter-form .btn {
  flex-shrink: 0;
  border-radius: 0;
  padding: 0.9rem 1.8rem;
}

/* ===== Parallax ===== */
.parallax-wrap {
  overflow: hidden;
}

.parallax-img {
  will-change: transform;
}

/* ===== Number stat ===== */
.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Tab navigation ===== */
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--ivory); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Slider ===== */
.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider-slide {
  min-width: 100%;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  background: none;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 6px; height: 6px;
  background: var(--border-strong);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .masonry-grid { columns: 2; }
  .booking-widget { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .tab-btn { padding: 0.8rem 1.2rem; }
  .stat-number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .container { padding: 0 1.2rem; }
  .section { padding: 4rem 0; }
}
