@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 {
  --teal-deep: #0a3d4a;
  --teal: #136f7a;
  --teal-soft: #1a8a96;
  --gold: #c9a24a;
  --gold-light: #e0c47a;
  --ink: #152228;
  --muted: #5a6b73;
  --paper: #f3f6f7;
  --paper-warm: #eef3f4;
  --white: #ffffff;
  --line: rgba(10, 61, 74, 0.12);
  --shadow: 0 18px 50px rgba(10, 61, 74, 0.12);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

body.age-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-deep);
}

.topbar {
  background: linear-gradient(90deg, var(--teal-deep), #0f525c 55%, var(--teal));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 0;
  text-align: center;
}

.topbar i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo:hover {
  color: var(--teal);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: linear-gradient(145deg, rgba(201, 162, 74, 0.12), rgba(19, 111, 122, 0.08));
}

.brand-mark i {
  font-size: 1.05rem;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -2px;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  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(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--teal);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--teal);
}

.navbar-toggler-icon-custom {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-deep);
  position: relative;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--teal-deep);
}

.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;
  background:
    linear-gradient(120deg, rgba(10, 61, 74, 0.82) 0%, rgba(10, 61, 74, 0.45) 48%, rgba(19, 111, 122, 0.35) 100%),
    url('../images/hero.jpg') center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 162, 74, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 5rem 0;
  animation: heroRise 1s ease both;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  color: var(--white);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--teal-deep);
  border: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  background: #d4b05a;
  color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 74, 0.35);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 500;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  margin-left: 0.75rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--gold);
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-teal {
  background: linear-gradient(160deg, var(--teal-deep) 0%, #0f525c 55%, var(--teal) 100%);
  color: var(--white);
}

.section-teal h2,
.section-teal h3 {
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-teal .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.frame-media {
  position: relative;
  overflow: hidden;
}

.frame-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.7s ease;
}

.frame-media:hover img {
  transform: scale(1.04);
}

.frame-media::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 74, 0.55);
  pointer-events: none;
  z-index: 1;
}

.about-copy {
  padding: 1rem 0 1rem 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  padding: 1.75rem 1.5rem;
  background: var(--paper-warm);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-item i {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.feature-grid-two {
  grid-template-columns: 1fr 1fr;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.menu-item h4 {
  font-size: 1.3rem;
  margin: 0 0 0.35rem;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
}

.casino-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.game-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.game-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.4rem 1.2rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.game-tile:hover {
  background: rgba(201, 162, 74, 0.12);
  border-color: rgba(201, 162, 74, 0.45);
  transform: translateY(-4px);
}

.game-tile i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.game-tile h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.game-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.game-tile-light {
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.game-tile-light:hover {
  background: rgba(201, 162, 74, 0.1);
  border-color: rgba(201, 162, 74, 0.45);
}

.game-tile-light i {
  color: var(--teal);
}

.game-tile-light h4 {
  color: var(--teal-deep);
}

.game-tile-light p {
  color: var(--muted);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10, 61, 74, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.event-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.event-body {
  padding: 1.4rem 1.35rem 1.6rem;
}

.event-meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.event-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.rhythm-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.rhythm-item {
  padding: 1.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.rhythm-item .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rhythm-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.rhythm-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-panel {
  background: var(--white);
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: var(--muted);
}

.contact-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.contact-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-point i {
  color: var(--teal);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.contact-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal-deep);
  margin-bottom: 0.2rem;
}

.contact-point span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #071f26;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
}

.footer-disclaimer {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.age-overlay,
.cookie-banner,
.age-restricted {
  position: fixed;
  z-index: 2000;
}

.age-overlay {
  inset: 0;
  background: rgba(7, 31, 38, 0.88);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-overlay.active {
  display: flex;
}

.age-modal {
  background: var(--white);
  max-width: 440px;
  width: 100%;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  animation: modalIn 0.4s ease both;
}

.age-modal .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
}

.age-modal h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.age-modal p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-decline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-decline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.age-restricted {
  inset: 0;
  background: var(--teal-deep);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  z-index: 2100;
}

.age-restricted.active {
  display: flex;
}

.age-restricted-inner {
  max-width: 480px;
}

.age-restricted h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.age-restricted p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.cookie-banner {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 520px;
  margin-left: auto;
  background: var(--white);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  display: none;
  z-index: 1900;
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease both;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-cookie {
  background: var(--teal);
  color: var(--white);
  border: none;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
}

.btn-cookie:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-cookie-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
}

.policy-hero {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white);
  padding: 4rem 0 3rem;
}

.policy-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.policy-content {
  padding: 3.5rem 0 5rem;
}

.policy-content h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  padding-left: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-top: 1px solid var(--line);
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0.5rem !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .feature-grid,
  .events-grid,
  .rhythm-row,
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-grid,
  .casino-split,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 1.5rem 0 0;
  }

  .btn-outline-light-custom {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero-content .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

@media (max-width: 575.98px) {
  .feature-grid,
  .events-grid,
  .rhythm-row,
  .game-tiles,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 78vh;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-panel {
    padding: 1.5rem;
  }
}
