@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 {
  --hb-emerald: #0b3d2e;
  --hb-emerald-deep: #06261c;
  --hb-emerald-mid: #145c45;
  --hb-gold: #c9a84c;
  --hb-gold-soft: #e0c878;
  --hb-champagne: #f3ebd8;
  --hb-ink: #121816;
  --hb-muted: #6d7a73;
  --hb-surface: #f7f5f0;
  --hb-white: #ffffff;
  --hb-shadow: 0 18px 50px rgba(6, 38, 28, 0.18);
  --hb-radius: 1.25rem;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hb-ink);
  background:
    radial-gradient(ellipse at top left, rgba(201, 168, 76, 0.08), transparent 42%),
    linear-gradient(180deg, #fbfaf7 0%, #f0eee7 48%, #ebe8df 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-restricted {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--hb-gold);
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--hb-emerald-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--hb-emerald-deep);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 38rem;
  color: var(--hb-muted);
  font-size: 1.05rem;
}

.btn-hb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-hb:hover {
  transform: translateY(-2px);
}

.btn-hb-primary {
  background: linear-gradient(135deg, var(--hb-gold), #b8943a);
  color: var(--hb-emerald-deep);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}

.btn-hb-primary:hover {
  color: var(--hb-emerald-deep);
  box-shadow: 0 14px 34px rgba(201, 168, 76, 0.45);
}

.btn-hb-ghost {
  background: transparent;
  color: var(--hb-champagne);
  border: 1px solid rgba(243, 235, 216, 0.45);
}

.btn-hb-ghost:hover {
  color: var(--hb-white);
  border-color: var(--hb-gold-soft);
}

.btn-hb-outline {
  background: transparent;
  color: var(--hb-emerald);
  border: 1px solid rgba(11, 61, 46, 0.28);
}

.btn-hb-outline:hover {
  background: var(--hb-emerald);
  color: var(--hb-champagne);
}

.topbar {
  background: linear-gradient(90deg, var(--hb-emerald-deep), var(--hb-emerald));
  color: var(--hb-champagne);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 0;
  text-align: center;
}

.topbar a {
  color: var(--hb-gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.topbar i {
  color: var(--hb-gold);
  margin-right: 0.35rem;
}

.site-navbar {
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  padding: 0.85rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hb-emerald-deep);
}

.brand-lockup:hover {
  color: var(--hb-emerald-deep);
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--hb-emerald), var(--hb-emerald-deep));
  color: var(--hb-gold);
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hb-muted);
}

.navbar-nav .nav-link {
  color: var(--hb-ink);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.45rem 0.85rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--hb-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--hb-emerald);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(11, 61, 46, 0.18);
  border-radius: 0.7rem;
  padding: 0.45rem 0.65rem;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.25);
}

.navbar-toggler-icon-custom {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--hb-emerald);
  position: relative;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hb-emerald);
}

.navbar-toggler-icon-custom::before {
  top: -6px;
}

.navbar-toggler-icon-custom::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--hb-champagne);
  background:
    linear-gradient(120deg, rgba(6, 38, 28, 0.88) 0%, rgba(11, 61, 46, 0.62) 48%, rgba(6, 38, 28, 0.45) 100%),
    url('../images/hero-banner.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 60%, rgba(6, 38, 28, 0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 6rem 0 5rem;
  animation: riseIn 0.9s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--hb-gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  color: var(--hb-white);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--hb-gold-soft);
  font-style: italic;
}

.hero p {
  font-size: 1.12rem;
  color: rgba(243, 235, 216, 0.9);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-ornament {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: min(280px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--hb-gold-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-align: center;
  backdrop-filter: blur(4px);
  background: rgba(6, 38, 28, 0.28);
  animation: floatSoft 5.5s ease-in-out infinite;
}

.hero-ornament i {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  display: block;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.feature-strip {
  margin-top: -2.8rem;
  position: relative;
  z-index: 2;
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--hb-white);
  border-radius: var(--hb-radius);
  box-shadow: var(--hb-shadow);
  padding: 1.4rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.65rem;
}

.feature-item i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(11, 61, 46, 0.08);
  color: var(--hb-emerald);
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  color: var(--hb-emerald-deep);
}

.feature-item p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.92rem;
}

.split-section .media-frame {
  border-radius: calc(var(--hb-radius) + 0.2rem);
  overflow: hidden;
  box-shadow: var(--hb-shadow);
  position: relative;
}

.split-section .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 0.7s ease;
}

.split-section .media-frame:hover img {
  transform: scale(1.04);
}

.split-section .media-frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(6, 38, 28, 0.45));
  pointer-events: none;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--hb-ink);
}

.checklist i {
  color: var(--hb-gold);
  margin-top: 0.2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.menu-card,
.game-card,
.event-card {
  background: var(--hb-white);
  border-radius: var(--hb-radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(6, 38, 28, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover,
.game-card:hover,
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hb-shadow);
}

.menu-card img,
.game-card img,
.event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-card-body,
.game-card-body,
.event-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.menu-card h3,
.game-card h3,
.event-card h3 {
  font-size: 1.55rem;
  color: var(--hb-emerald-deep);
  margin-bottom: 0.55rem;
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.menu-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hb-emerald-mid);
  background: rgba(11, 61, 46, 0.07);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}

.menu-stack {
  display: grid;
  gap: 1.25rem;
}

.menu-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--hb-white);
  border-radius: var(--hb-radius);
  padding: 0.85rem;
  box-shadow: 0 10px 28px rgba(6, 38, 28, 0.07);
}

.menu-mini img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.menu-mini h4 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--hb-emerald-deep);
}

.menu-mini p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.92rem;
}

.casino-panel {
  background:
    linear-gradient(145deg, rgba(6, 38, 28, 0.94), rgba(20, 92, 69, 0.88)),
    url('../images/casino-experience.jpg') center / cover no-repeat;
  border-radius: calc(var(--hb-radius) + 0.35rem);
  color: var(--hb-champagne);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--hb-shadow);
  position: relative;
  overflow: hidden;
}

.casino-panel::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  right: -60px;
  top: -80px;
}

.casino-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.casino-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 235, 216, 0.12);
  border-radius: 1rem;
  padding: 1.1rem;
}

.casino-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hb-gold-soft);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(11, 61, 46, 0.08);
  color: var(--hb-emerald);
  margin-bottom: 0.9rem;
}

.events-board {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  background: var(--hb-white);
  border-radius: var(--hb-radius);
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(6, 38, 28, 0.07);
  align-items: center;
}

.event-date {
  background: linear-gradient(145deg, var(--hb-emerald), var(--hb-emerald-deep));
  color: var(--hb-champagne);
  border-radius: 0.9rem;
  text-align: center;
  padding: 0.85rem 0.4rem;
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--hb-gold-soft);
}

.event-date span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-row h4 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  color: var(--hb-emerald-deep);
}

.event-row p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.92rem;
}

.contact-band {
  background: linear-gradient(120deg, var(--hb-emerald-deep), var(--hb-emerald-mid));
  color: var(--hb-champagne);
  border-radius: calc(var(--hb-radius) + 0.4rem);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--hb-shadow);
}

.contact-band h2 {
  color: var(--hb-white);
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-point {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 235, 216, 0.12);
  border-radius: 1rem;
  padding: 1.2rem;
}

.contact-point i {
  color: var(--hb-gold);
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.contact-point h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.contact-point p {
  margin: 0;
  color: rgba(243, 235, 216, 0.85);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--hb-ink);
  color: rgba(243, 235, 216, 0.82);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--hb-white);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-lockup {
  color: var(--hb-white);
}

.footer-brand .brand-text span {
  color: rgba(243, 235, 216, 0.55);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(243, 235, 216, 0.78);
}

.footer-links a:hover {
  color: var(--hb-gold-soft);
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 235, 216, 0.12);
  font-size: 0.86rem;
  color: rgba(243, 235, 216, 0.62);
}

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: rgba(243, 235, 216, 0.55);
}

.overlay-layer {
  position: fixed;
  inset: 0;
  background: rgba(6, 38, 28, 0.72);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.overlay-layer.is-visible {
  display: flex;
}

.modal-card {
  width: min(460px, 100%);
  background: var(--hb-white);
  border-radius: 1.4rem;
  padding: 1.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  animation: riseIn 0.35s ease both;
}

.modal-card h2 {
  font-size: 1.9rem;
  color: var(--hb-emerald-deep);
  margin-bottom: 0.75rem;
}

.modal-card p {
  color: var(--hb-muted);
  margin-bottom: 1.4rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: rgba(11, 61, 46, 0.08);
  color: var(--hb-emerald);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.age-restricted {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.12), transparent 35%),
    linear-gradient(160deg, var(--hb-emerald-deep), #020806);
  color: var(--hb-champagne);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.age-restricted.is-visible {
  display: flex;
}

.age-restricted-inner {
  max-width: 480px;
}

.age-restricted h2 {
  font-size: 2.4rem;
  color: var(--hb-white);
  margin-bottom: 0.85rem;
}

.age-restricted p {
  color: rgba(243, 235, 216, 0.8);
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(18, 24, 22, 0.96);
  color: var(--hb-champagne);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 1.15rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner.is-visible {
  display: block;
  animation: riseIn 0.35s ease both;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(243, 235, 216, 0.82);
}

.cookie-banner a {
  color: var(--hb-gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.policy-page {
  padding: 4.5rem 0 5rem;
}

.policy-page .policy-shell {
  background: var(--hb-white);
  border-radius: calc(var(--hb-radius) + 0.2rem);
  box-shadow: var(--hb-shadow);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.policy-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--hb-emerald-deep);
  margin-bottom: 0.75rem;
}

.policy-page h2 {
  font-size: 1.55rem;
  color: var(--hb-emerald);
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.policy-page p,
.policy-page li {
  color: var(--hb-muted);
}

.policy-meta {
  color: var(--hb-emerald-mid);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .feature-strip-inner,
  .menu-grid,
  .games-grid,
  .events-board,
  .contact-points,
  .casino-stats {
    grid-template-columns: 1fr;
  }

  .hero-ornament {
    display: none;
  }

  .navbar-collapse {
    background: var(--hb-white);
    border-radius: 1rem;
    margin-top: 0.85rem;
    padding: 0.75rem;
    box-shadow: var(--hb-shadow);
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0.85rem !important;
  }

  .feature-strip {
    margin-top: -1.5rem;
  }

  .split-section .media-frame img {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 4rem 0;
  }

  .menu-mini {
    grid-template-columns: 1fr;
  }

  .menu-mini img {
    width: 100%;
    height: 180px;
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero {
    min-height: 78vh;
  }
}
