@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #071520;
  --navy-deep: #040d14;
  --teal: #0f5c57;
  --teal-bright: #1a8a82;
  --gold: #c9a227;
  --gold-soft: #e2c56a;
  --ivory: #f3efe6;
  --mist: #b8c4c8;
  --ink: #0d1a22;
  --glass: rgba(7, 21, 32, 0.72);
  --line: rgba(201, 162, 39, 0.28);
  --radius: 0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ivory);
  background: var(--navy-deep);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.is-locked {
  overflow: hidden;
  touch-action: none;
}

#mainSite {
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
.display-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.topbar {
  background: linear-gradient(90deg, #0a2a28, #0d1f2b 50%, #132836);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: var(--mist);
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.topbar .container {
  max-width: 100%;
}

.topbar i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.site-nav {
  background: rgba(7, 21, 32, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem 0;
}

.site-nav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.site-nav .navbar-toggler {
  flex: 0 0 auto;
  margin-left: 0.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory);
  min-width: 0;
  flex: 1 1 auto;
}

.brand-lockup:hover {
  color: var(--ivory);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.12), transparent);
}

.brand-mark i {
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.45rem 0.6rem;
  color: var(--gold);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: var(--mist) !important;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.9rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--ivory) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(4, 13, 20, 0.88) 18%, rgba(7, 21, 32, 0.55) 55%, rgba(15, 92, 87, 0.35) 100%),
    url('../images/hero-banner.jpg') center/cover no-repeat;
  overflow: hidden;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(201, 162, 39, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 5rem 0 4rem;
}

.hero-kicker {
  display: inline-block;
  color: var(--gold-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: var(--ivory);
  margin: 0 0 1.1rem;
}

.hero p {
  font-size: 1.08rem;
  color: var(--mist);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8861a);
  color: var(--navy-deep);
  border: none;
  border-radius: 0;
  padding: 0.85rem 1.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--navy-deep);
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28);
}

.btn-outline-ivory {
  border: 1px solid rgba(243, 239, 230, 0.45);
  color: var(--ivory);
  border-radius: 0;
  padding: 0.85rem 1.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-outline-ivory:hover,
.btn-outline-ivory:focus {
  background: rgba(243, 239, 230, 0.08);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.section {
  padding: 6rem 0;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(15, 92, 87, 0.12), transparent 40%),
    linear-gradient(90deg, #081821, #0a1c24);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.08), transparent 35%),
    var(--navy);
}

.section-label {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  color: var(--ivory);
}

.section-lead {
  color: var(--mist);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.7s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.25);
  pointer-events: none;
}

.split-copy {
  padding: 1rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  padding: 1.8rem 1.4rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(26, 138, 130, 0.12), transparent);
}

.feature-item i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.feature-item p {
  color: var(--mist);
  margin: 0;
  font-size: 0.95rem;
}

.menu-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.menu-list {
  display: grid;
  gap: 1.25rem;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-row h4 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.menu-row p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}

.menu-row .price {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.3rem;
  white-space: nowrap;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.chip {
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-soft);
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.exp-card {
  min-height: 220px;
  padding: 1.8rem;
  background:
    linear-gradient(160deg, rgba(15, 92, 87, 0.35), rgba(7, 21, 32, 0.85)),
    url('../images/casino-tables.jpg') center/cover no-repeat;
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.exp-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(7, 21, 32, 0.75), rgba(15, 92, 87, 0.45)),
    linear-gradient(45deg, #0a2430, #12353a);
}

.exp-card:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(7, 21, 32, 0.7), rgba(201, 162, 39, 0.18)),
    linear-gradient(135deg, #102631, #0d3d39);
}

.exp-card:nth-child(4) {
  background:
    linear-gradient(160deg, rgba(4, 13, 20, 0.78), rgba(15, 92, 87, 0.4)),
    url('../images/events-space.jpg') center/cover no-repeat;
}

.exp-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.exp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.exp-card p {
  margin: 0;
  color: var(--mist);
  font-size: 0.94rem;
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item .when {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.timeline-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.timeline-item p {
  margin: 0;
  color: var(--mist);
}

.contact-block {
  border: 1px solid var(--line);
  padding: 2.5rem;
  background:
    linear-gradient(135deg, rgba(15, 92, 87, 0.18), rgba(7, 21, 32, 0.4));
}

.contact-block p {
  color: var(--mist);
  max-width: 40rem;
}

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--mist);
  max-width: 28rem;
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--mist);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ivory);
}

.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--mist);
  font-size: 0.86rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  color: rgba(184, 196, 200, 0.75);
  font-size: 0.84rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 12, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.overlay.is-visible {
  display: flex;
}

.modal-panel {
  width: min(460px, 100%);
  background:
    linear-gradient(160deg, #0d2430, #071520 70%);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-panel i {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}

.modal-panel h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.modal-panel p {
  color: var(--mist);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-restricted {
  display: none;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  background:
    radial-gradient(circle at center, rgba(15, 92, 87, 0.2), transparent 55%),
    var(--navy-deep);
}

.age-restricted.is-visible {
  display: flex;
}

.age-restricted .inner {
  max-width: 520px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1900;
  display: none;
  background: linear-gradient(135deg, #0d2430, #0a1c24);
  border: 1px solid var(--line);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
  width: calc(100% - 2rem);
  max-width: 720px;
  margin: 0;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  color: var(--mist);
  font-size: 0.9rem;
}

.policy-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    linear-gradient(120deg, rgba(7, 21, 32, 0.95), rgba(15, 92, 87, 0.45)),
    url('../images/hero-banner.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.policy-content {
  padding: 3.5rem 0 5rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 0.8rem;
  color: var(--gold-soft);
}

.policy-content p,
.policy-content li {
  color: var(--mist);
}

.policy-content ul {
  padding-left: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-content > * {
  animation: fadeRise 0.9s ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.22s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.32s;
}

@media (max-width: 991.98px) {
  .site-nav .container {
    max-width: 100%;
  }

  .navbar-collapse {
    background: rgba(4, 13, 20, 0.98);
    margin-top: 0.85rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 100%;
  }

  .nav-link {
    padding: 0.75rem 0.6rem !important;
  }

  .nav-link::after {
    display: none;
  }

  .feature-grid,
  .menu-board,
  .experience-panel {
    grid-template-columns: 1fr;
  }

  .menu-row {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    max-width: 100%;
    padding: 3.5rem 0 3rem;
  }

  .contact-block {
    padding: 1.75rem 1.25rem;
  }

  .cookie-banner {
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 4.2rem 0;
  }

  .contact-block,
  .modal-panel {
    padding: 1.5rem 1.15rem;
  }

  .btn-gold,
  .btn-outline-ivory {
    width: 100%;
    text-align: center;
  }

  .hero-content .d-flex {
    flex-direction: column;
    width: 100%;
  }

  .hero h1 {
    word-break: break-word;
  }

  .feature-item,
  .exp-card {
    max-width: 100%;
  }

  .site-footer {
    overflow-x: hidden;
  }
}
