/* ===== VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --black: #050709;
  --navy: #0A0E1A;
  --navy-mid: #111827;
  --navy-light: #1C2539;
  --white: #F5F5F0;
  --gray: #9CA3AF;
  --gray-light: #D1D5DB;
  --red-alert: #E53E3E;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
.gold { color: var(--gold); }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.section-title { color: var(--white); }
.section-title span { color: var(--gold); }
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto;
}

/* ===== GOLD BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  box-shadow: 0 0 25px rgba(201,168,76,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== AGE WARNING BANNER ===== */
#age-banner {
  background: #1a0000;
  border-bottom: 1px solid #6b0000;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  color: #fca5a5;
  letter-spacing: 0.5px;
  z-index: 200;
  position: relative;
}
#age-banner span { font-weight: 700; color: #f87171; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(5,7,9,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { height: 40px; width: 40px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.nav-logo-text .sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-reserve {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-reserve:hover {
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #050709 0%, #0A0E1A 40%, #050709 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.03) 40px,
      rgba(201,168,76,0.03) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.03) 40px,
      rgba(201,168,76,0.03) 41px
    );
}
.hero-card-deco {
  position: absolute;
  opacity: 0.04;
  font-size: clamp(8rem, 20vw, 18rem);
  font-family: serif;
  pointer-events: none;
  user-select: none;
}
.hero-card-deco.left { left: -2%; top: 10%; color: var(--gold); }
.hero-card-deco.right { right: -2%; bottom: 5%; color: var(--gold); }
.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 850px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  background: rgba(201,168,76,0.05);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-light);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceY 2s infinite;
}
.hero-scroll svg { color: var(--gold); }
@keyframes bounceY {0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);}}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(201,168,76,0.2);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 0.5rem; }

/* ===== SECTIONS ===== */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* ===== ABOUT ===== */
#about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.about-visual {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1520 0%, #1a2a40 50%, #0d1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.08) 0%, transparent 40%);
}
.building-svg { width: 80%; height: 80%; position: relative; z-index: 1; }
.about-badge-overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  z-index: 2;
}
.about-badge-overlay .year { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge-overlay .since { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.about-text { }
.about-text p { color: var(--gray-light); margin: 1.5rem 0; line-height: 1.9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
}
.about-feature-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-feature h4 { font-size: 0.85rem; font-family: 'Lato', sans-serif; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.8rem; color: var(--gray); margin: 0; line-height: 1.5; }

/* ===== CASINO ===== */
#casino { background: var(--navy); }
.casino-header { text-align: center; margin-bottom: 4rem; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.game-card {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
}
.game-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.08);
}
.game-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.game-visual::before {
  content: '';
  position: absolute;
  inset: 0;
}
.game-visual.slots { background: linear-gradient(135deg, #0d1a2e, #1a2d4a); }
.game-visual.slots::before { background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%); }
.game-visual.roulette { background: linear-gradient(135deg, #0d2010, #1a3d1a); }
.game-visual.roulette::before { background: radial-gradient(ellipse at center, rgba(50,180,50,0.12) 0%, transparent 70%); }
.game-visual.blackjack { background: linear-gradient(135deg, #200d0d, #3d1a1a); }
.game-visual.blackjack::before { background: radial-gradient(ellipse at center, rgba(220,50,50,0.12) 0%, transparent 70%); }
.game-visual.poker { background: linear-gradient(135deg, #0d0d20, #1a1a3d); }
.game-visual.poker::before { background: radial-gradient(ellipse at center, rgba(100,100,220,0.12) 0%, transparent 70%); }
.game-visual.baccarat { background: linear-gradient(135deg, #1a0d20, #2d1a3d); }
.game-visual.baccarat::before { background: radial-gradient(ellipse at center, rgba(160,50,220,0.12) 0%, transparent 70%); }
.game-visual.vip { background: linear-gradient(135deg, #1a1400, #3d3000); }
.game-visual.vip::before { background: radial-gradient(ellipse at center, rgba(201,168,76,0.2) 0%, transparent 70%); }
.game-icon { position: relative; z-index: 1; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
.game-card-body { padding: 1.5rem; }
.game-card-body h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.game-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.game-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.casino-cta { text-align: center; margin-top: 3.5rem; }
.casino-note { font-size: 0.8rem; color: var(--gray); margin-top: 1rem; }

/* ===== HOTEL ROOMS ===== */
#rooms { background: var(--black); }
.rooms-header { text-align: center; margin-bottom: 4rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card {
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-light);
  transition: all 0.4s;
  position: relative;
}
.room-card.featured { border-color: rgba(201,168,76,0.5); }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.room-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 2;
}
.room-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.room-visual.standard { background: linear-gradient(135deg, #0f1624, #1a2438, #0f1624); }
.room-visual.superior { background: linear-gradient(135deg, #121020, #1e1a38, #121020); }
.room-visual.suite { background: linear-gradient(135deg, #1a1000, #2d2000, #1a1000); }
.room-visual-art { width: 80%; height: 80%; }
.room-body { padding: 1.75rem; }
.room-name { font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.room-size { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 1rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.room-amenity {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--gray-light);
}
.room-amenity svg { color: var(--gold); flex-shrink: 0; }
.room-price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1rem; }
.room-price .from { font-size: 0.75rem; color: var(--gray); }
.room-price .amount { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.room-price .night { font-size: 0.75rem; color: var(--gray); }

/* ===== DINING ===== */
#dining { background: var(--navy); }
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 4rem; }
.dining-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dining-card {
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  background: var(--navy-light);
  transition: all 0.3s;
  text-align: center;
}
.dining-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.dining-card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.dining-card h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.dining-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.dining-desc p { color: var(--gray-light); line-height: 1.9; margin-bottom: 1.5rem; }
.dining-hours { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.dining-hour-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
.dining-hour-row:last-child { border-bottom: none; }
.dining-hour-row span:first-child { font-size: 0.85rem; color: var(--gray-light); }
.dining-hour-row span:last-child { font-size: 0.85rem; color: var(--gold); font-weight: 700; }

/* ===== GALLERY ===== */
#gallery { background: var(--black); padding-bottom: 3rem; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.gallery-item.span2 { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-visual {
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-visual { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(201,168,76,0.12); }
.gallery-overlay-icon { color: var(--gold); opacity: 0; transform: scale(0.5); transition: all 0.3s; }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

/* Gallery SVG scenes */
.g-lobby { background: linear-gradient(135deg, #0a0f1e 0%, #141f35 40%, #0a0f1e 100%); }
.g-casino { background: linear-gradient(135deg, #0a1505 0%, #152210 40%, #0a1505 100%); }
.g-pool { background: linear-gradient(135deg, #030e1a 0%, #061828 40%, #030e1a 100%); }
.g-room { background: linear-gradient(135deg, #10080f 0%, #1e1020 40%, #10080f 100%); }
.g-restaurant { background: linear-gradient(135deg, #100a04 0%, #201408 40%, #100a04 100%); }
.g-exterior { background: linear-gradient(135deg, #070a10 0%, #0e1525 40%, #070a10 100%); }

/* ===== AMENITIES ===== */
#amenities { background: var(--navy); }
.amenities-header { text-align: center; margin-bottom: 4rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.amenity-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  background: var(--navy-light);
  transition: all 0.3s;
}
.amenity-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.05);
  transform: translateY(-4px);
}
.amenity-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.amenity-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.amenity-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ===== RESPONSIBLE GAMBLING ===== */
#responsible {
  background: #0a0800;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem;
}
.responsible-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
}
.resp-icon { font-size: 3rem; flex-shrink: 0; }
.responsible-inner h3 { font-size: 1rem; color: var(--gold); margin-bottom: 0.75rem; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.responsible-inner p { font-size: 0.82rem; color: var(--gray); line-height: 1.8; }
.responsible-inner a { color: var(--gold); text-decoration: underline; }
.resp-badges { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.resp-badge {
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ===== CONTACT ===== */
#contact { background: var(--black); }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info { }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-text h4 { color: var(--white); font-size: 0.85rem; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.4rem; }
.contact-info-text p, .contact-info-text a { font-size: 0.95rem; color: var(--gray-light); line-height: 1.6; }
.contact-info-text a:hover { color: var(--gold); }
.contact-form { }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-legal { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* ===== MAP ===== */
#map-section { background: var(--navy-mid); padding: 0; }
.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #0a0e1a, #111827, #0a0e1a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.map-placeholder p { color: var(--gray); font-size: 0.9rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 2rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray); }
.footer-bottom .age-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,7,9,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-family: 'Playfair Display', serif; color: var(--white); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy-light);
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--white);
  z-index: 999;
  transform: translateY(120%);
  transition: transform 0.4s ease;
  max-width: 320px;
}
.toast.show { transform: translateY(0); }
.toast strong { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-reserve { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 350px; }
  .about-badge-overlay { bottom: -1rem; right: -0.5rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .dining-cards { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span2 { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .responsible-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 4rem 1.25rem; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
