@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --fb-emerald: #0d3b2f;
  --fb-emerald-mid: #165a47;
  --fb-emerald-light: #2a7a62;
  --fb-gold: #c6a35a;
  --fb-gold-soft: #e0c989;
  --fb-ink: #101612;
  --fb-slate: #1c2420;
  --fb-mist: #d7e0db;
  --fb-white: #f7faf8;
  --fb-muted: #9eb0a7;
  --fb-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --fb-radius: 1.25rem;
  --fb-transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--fb-mist);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 163, 90, 0.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(42, 122, 98, 0.18), transparent 32%),
    linear-gradient(160deg, #0a1410 0%, #132019 42%, #0d1713 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.age-locked {
  overflow: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
  color: var(--fb-white);
}

a {
  color: var(--fb-gold-soft);
  text-decoration: none;
  transition: color var(--fb-transition);
}

a:hover {
  color: var(--fb-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #08140f, #123227 50%, #08140f);
  border-bottom: 1px solid rgba(198, 163, 90, 0.28);
  color: var(--fb-gold-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.55rem 1rem;
}

.topbar i {
  color: var(--fb-gold);
  margin-right: 0.4rem;
}

.site-navbar {
  background: rgba(10, 20, 16, 0.92);
  border-bottom: 1px solid rgba(215, 224, 219, 0.08);
  padding: 0.85rem 0;
  backdrop-filter: blur(10px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fb-white);
}

.brand-mark:hover {
  color: var(--fb-white);
}

.brand-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--fb-emerald-mid), var(--fb-ink));
  border: 1px solid rgba(198, 163, 90, 0.55);
  color: var(--fb-gold);
  font-size: 1.15rem;
  box-shadow: inset 0 0 18px rgba(198, 163, 90, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--fb-white);
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fb-gold-soft);
}

.navbar-toggler {
  border: 1px solid rgba(198, 163, 90, 0.45);
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(198, 163, 90, 0.25);
}

.navbar-toggler-icon-custom {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--fb-gold);
  position: relative;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--fb-gold);
}

.navbar-toggler-icon-custom::before {
  top: -6px;
}

.navbar-toggler-icon-custom::after {
  top: 6px;
}

.nav-link-custom {
  color: var(--fb-mist) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  transition: background var(--fb-transition), color var(--fb-transition);
}

.nav-link-custom:hover,
.nav-link-custom:focus {
  color: var(--fb-gold-soft) !important;
  background: rgba(198, 163, 90, 0.1);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(120deg, rgba(8, 18, 14, 0.88) 0%, rgba(13, 59, 47, 0.55) 48%, rgba(8, 18, 14, 0.78) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(10, 20, 16, 1), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: riseIn 1s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fb-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--fb-gold);
}

.hero p {
  font-size: 1.08rem;
  max-width: 34rem;
  color: var(--fb-mist);
  margin-bottom: 1.75rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--fb-gold), #a9853c);
  color: #14110a;
  border: none;
  font-weight: 700;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  transition: transform var(--fb-transition), box-shadow var(--fb-transition);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #14110a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(198, 163, 90, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--fb-white);
  border: 1px solid rgba(215, 224, 219, 0.35);
  font-weight: 600;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  transition: background var(--fb-transition), border-color var(--fb-transition);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--fb-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--fb-gold);
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(22, 90, 71, 0.12), rgba(10, 20, 16, 0.2));
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.85rem;
}

.section-lead {
  color: #b7c5be;
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  color: var(--fb-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.media-frame {
  border-radius: var(--fb-radius);
  overflow: hidden;
  border: 1px solid rgba(198, 163, 90, 0.22);
  box-shadow: var(--fb-shadow);
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 1.1s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(215, 224, 219, 0.08);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: rgba(22, 90, 71, 0.45);
  border: 1px solid rgba(198, 163, 90, 0.28);
  color: var(--fb-gold);
  flex-shrink: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.menu-item {
  grid-column: span 6;
  padding: 1.5rem;
  border-radius: 1.1rem;
  background: rgba(16, 28, 23, 0.72);
  border: 1px solid rgba(215, 224, 219, 0.08);
  transition: border-color var(--fb-transition), transform var(--fb-transition);
}

.menu-item:hover {
  border-color: rgba(198, 163, 90, 0.45);
  transform: translateY(-4px);
}

.menu-item h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.menu-item p {
  margin: 0;
  color: #b7c5be;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.menu-price {
  color: var(--fb-gold);
  font-weight: 700;
  white-space: nowrap;
}

.casino-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.casino-card {
  padding: 1.75rem 1.4rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(160deg, rgba(22, 90, 71, 0.35), rgba(10, 20, 16, 0.9));
  border: 1px solid rgba(198, 163, 90, 0.22);
  min-height: 100%;
  transition: transform var(--fb-transition), box-shadow var(--fb-transition);
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.casino-card i {
  font-size: 1.6rem;
  color: var(--fb-gold);
  margin-bottom: 1rem;
}

.casino-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.casino-card p {
  color: #b7c5be;
  margin: 0;
}

.events-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(16, 28, 23, 0.75);
  border: 1px solid rgba(215, 224, 219, 0.08);
}

.event-date {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 0.9rem;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(145deg, var(--fb-emerald-mid), var(--fb-ink));
  border: 1px solid rgba(198, 163, 90, 0.35);
}

.event-date strong {
  display: block;
  color: var(--fb-gold);
  font-size: 1.35rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fb-mist);
}

.contact-band {
  border-radius: 1.5rem;
  padding: 2.5rem;
  background:
    linear-gradient(135deg, rgba(22, 90, 71, 0.55), rgba(10, 20, 16, 0.92)),
    url('../images/events-ambiance.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(198, 163, 90, 0.28);
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-point {
  padding: 1.15rem;
  border-radius: 1rem;
  background: rgba(8, 18, 14, 0.55);
  border: 1px solid rgba(215, 224, 219, 0.1);
}

.contact-point i {
  color: var(--fb-gold);
  margin-bottom: 0.65rem;
}

.site-footer {
  background: #070d0a;
  border-top: 1px solid rgba(198, 163, 90, 0.2);
  padding: 3.5rem 0 2rem;
}

.footer-brand p {
  color: #9eb0a7;
  max-width: 28rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: #c5d2cb;
}

.footer-links a:hover {
  color: var(--fb-gold);
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(215, 224, 219, 0.08);
  color: #8fa199;
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 1.25rem;
  color: #7f9188;
  font-size: 0.85rem;
}

.overlay-panel {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 10, 8, 0.82);
  backdrop-filter: blur(8px);
}

.overlay-panel.active {
  display: flex;
}

.dialog-box {
  width: min(440px, 100%);
  background: linear-gradient(165deg, #16352c, #0d1814);
  border: 1px solid rgba(198, 163, 90, 0.4);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--fb-shadow);
  animation: riseIn 0.45s ease both;
}

.dialog-box h2 {
  font-size: 1.85rem;
  margin-bottom: 0.65rem;
}

.dialog-box p {
  color: #b7c5be;
  margin-bottom: 1.35rem;
}

.dialog-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dialog-actions .btn {
  flex: 1;
  min-width: 140px;
}

.restriction-box {
  width: min(520px, 100%);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1070;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: rgba(12, 24, 19, 0.96);
  border: 1px solid rgba(198, 163, 90, 0.35);
  box-shadow: var(--fb-shadow);
}

.cookie-banner.active {
  display: block;
  animation: riseIn 0.4s ease both;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  color: #c5d2cb;
  font-size: 0.92rem;
}

.policy-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    linear-gradient(135deg, rgba(13, 59, 47, 0.85), rgba(8, 18, 14, 0.92));
  border-bottom: 1px solid rgba(198, 163, 90, 0.2);
}

.policy-content {
  padding: 3rem 0 4.5rem;
}

.policy-content h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  color: #b7c5be;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(8, 18, 14, 0.96);
    border: 1px solid rgba(198, 163, 90, 0.2);
  }

  .nav-link-custom {
    border-radius: 0.7rem;
  }

  .casino-panel,
  .contact-points,
  .events-wrap {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-column: span 12;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 4rem 0;
  }

  .contact-band {
    padding: 1.5rem;
  }

  .dialog-actions {
    flex-direction: column;
  }

  .dialog-actions .btn {
    width: 100%;
  }
}
