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

:root {
  --bg-deep: #0c1210;
  --bg-mid: #14201c;
  --bg-panel: #1a2a24;
  --gold: #c4a574;
  --gold-light: #e8d5b5;
  --gold-dim: rgba(196, 165, 116, 0.35);
  --cream: #f2ebe0;
  --muted: #a8b5af;
  --line: rgba(196, 165, 116, 0.22);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background: var(--bg-deep);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ——— Atmosphere ——— */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(40, 70, 55, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(90, 60, 30, 0.25), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(20, 45, 35, 0.4), transparent 55%),
    linear-gradient(165deg, #0a100e 0%, #0f1a16 40%, #121c18 100%);
}

.site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
}

/* ——— Nav ——— */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6vw;
  animation: fadeDown 0.9s var(--ease) both;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.nav__brand span {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--gold-light);
}

.nav__cta {
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light) !important;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav__cta:hover {
  background: rgba(196, 165, 116, 0.12);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold-light);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 12vh;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12, 18, 16, 0.95) 0%, rgba(12, 18, 16, 0.55) 45%, rgba(12, 18, 16, 0.35) 100%),
    linear-gradient(to right, rgba(12, 18, 16, 0.5) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation: fadeUp 1s var(--ease) 0.15s both;
}

.hero__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.85rem;
  animation: fadeUp 1s var(--ease) 0.3s both;
}

.hero__lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 28rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s var(--ease) 0.45s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 1s var(--ease) 0.6s both;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(196, 165, 116, 0.08);
}

/* ——— Sections ——— */
.section {
  padding: 6.5rem 6vw;
  position: relative;
}

.section--tight {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.15rem;
  max-width: 18ch;
}

.section__title--wide {
  max-width: 28ch;
}

.section__text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 1rem;
}

.section__text + .section__text {
  margin-top: 0.5rem;
}

.divider {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
  opacity: 0.7;
}

/* ——— Experience strip ——— */
.experience {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.experience__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.experience__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}

.experience__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  z-index: 1;
  pointer-events: none;
}

/* ——— Room list ——— */
.rooms {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.room {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s ease;
}

.room:hover {
  background: rgba(196, 165, 116, 0.04);
}

.room__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.25;
}

.room__desc {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
}

/* ——— Dining ——— */
.dining-list {
  display: grid;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.dining-item {
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold-dim);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.dining-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.dining-item__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.dining-item__desc {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 40rem;
}

/* ——— Casino areas ——— */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.casino-area__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}

.casino-area__desc {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Closing ——— */
.closing {
  text-align: center;
  padding: 7rem 6vw;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.closing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.closing__text {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
}

/* ——— Home simple ——— */
.home-intro {
  padding: 6rem 6vw 5rem;
  max-width: 720px;
}

.home-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 0 6vw 7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.home-feature__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.home-feature__text {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 6vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.footer__note {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--gold-light);
}

/* ——— Age gate ——— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 10, 8, 0.88);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease both;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(100%, 420px);
  padding: 2.75rem 2.25rem;
  background:
    radial-gradient(ellipse at top, rgba(40, 60, 48, 0.5), transparent 60%),
    var(--bg-panel);
  border: 1px solid var(--line);
  text-align: center;
  animation: scaleIn 0.5s var(--ease) both;
}

.age-gate__label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.age-gate__text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate__actions .btn {
  width: 100%;
}

.age-denied {
  display: none;
  margin-top: 1.25rem;
  color: #d4a0a0;
  font-size: 0.9rem;
}

.age-denied.is-visible {
  display: block;
}

body.age-locked {
  overflow: hidden;
}

body.age-locked .page-content {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Animations ——— */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .experience {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience__visual {
    min-height: 280px;
  }

  .experience__visual img {
    min-height: 280px;
  }

  .casino-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .room {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(12, 18, 16, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem 6vw 1.5rem;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-bottom: 8vh;
  }

  .section {
    padding: 4.5rem 6vw;
  }
}

/* =====================================================================
   THEME REFRESH — visual-only redesign for Homepage & Hotels pages.
   Scoped entirely under .theme-refresh (added to <body> on those two
   pages only). The Verify page keeps its original styling untouched.
   No markup structure, links, scripts, or behavior are affected —
   colors, cards, borders, spacing, and imagery presentation only.
   ===================================================================== */

.theme-refresh {
  --gold: #d9b06c;
  --gold-light: #f5e3c0;
  --gold-dim: rgba(217, 176, 108, 0.32);
  --bg-panel: #16261f;
  --line: rgba(217, 176, 108, 0.2);
  --muted: #aebdb4;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-card: 0 26px 54px -28px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 0 1px rgba(217, 176, 108, 0.16), 0 20px 42px -18px rgba(217, 176, 108, 0.18);
  --card-surface: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

/* ——— Nav: frosted, always-visible ——— */
.theme-refresh .nav {
  position: fixed;
  padding: 1.15rem 6vw;
  background: linear-gradient(to bottom, rgba(8, 14, 12, 0.75), rgba(8, 14, 12, 0));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.theme-refresh .nav__brand span {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.theme-refresh .nav__cta {
  border-radius: 999px;
}

.theme-refresh .nav__toggle {
  border-radius: var(--radius-sm);
}

@media (max-width: 720px) {
  .theme-refresh .nav__links {
    background: rgba(8, 14, 12, 0.94);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

/* ——— Buttons: pill shape + soft glow ——— */
.theme-refresh .btn {
  border-radius: 999px;
  padding: 1rem 2.1rem;
}

.theme-refresh .btn--gold {
  box-shadow: 0 16px 32px -14px rgba(217, 176, 108, 0.55);
}

.theme-refresh .btn--gold:hover {
  box-shadow: 0 20px 40px -14px rgba(217, 176, 108, 0.7);
}

.theme-refresh .btn--ghost {
  backdrop-filter: blur(6px);
}

/* ——— Hero: gradient text accent ——— */
.theme-refresh .hero__brand em {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ——— Section labels as pill badges ——— */
.theme-refresh .section__label {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  background: rgba(217, 176, 108, 0.07);
}

.theme-refresh .divider {
  width: 4.5rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 1;
}

/* ——— Cards: rooms ——— */
.theme-refresh .rooms {
  border-top: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.theme-refresh .room {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 2.1rem;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.theme-refresh .room:hover {
  background: var(--card-surface);
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-glow);
}

/* ——— Cards: dining ——— */
.theme-refresh .dining-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.theme-refresh .dining-item {
  border-left: none;
  padding: 2.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.theme-refresh .dining-item:hover {
  transform: translateY(-6px);
  border-left-color: transparent;
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-glow);
}

/* ——— Cards: amenities / casino grid + home features ——— */
.theme-refresh .home-features,
.theme-refresh .casino-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.theme-refresh .casino-area,
.theme-refresh .home-feature {
  padding: 2.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.theme-refresh .casino-area:hover,
.theme-refresh .home-feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-glow);
}

/* ——— Imagery presentation ——— */
.theme-refresh .experience__visual {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.theme-refresh .experience__visual::before {
  border-radius: var(--radius-lg);
  border-color: var(--gold-dim);
}

.theme-refresh .experience__visual img {
  filter: saturate(0.95) brightness(0.95);
}

.theme-refresh .hero__media img {
  filter: saturate(0.92);
}

/* ——— Closing + footer panels ——— */
.theme-refresh .closing {
  margin: 0 3vw 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--card-surface);
  border: 1px solid var(--line);
}

.theme-refresh .closing::before {
  display: none;
}

.theme-refresh .footer {
  border-top: none;
  margin: 0 3vw 3vw;
  border-radius: var(--radius-lg);
  background: var(--card-surface);
  border: 1px solid var(--line);
  padding: 2.25rem 3.5vw;
}
