@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --br-emerald: #0a3d32;
  --br-emerald-deep: #062820;
  --br-emerald-mid: #0f5a48;
  --br-gold: #c9a24a;
  --br-gold-soft: #e2c57a;
  --br-ivory: #f6f1e7;
  --br-cream: #efe7d6;
  --br-charcoal: #141816;
  --br-muted: #6d746f;
  --br-surface: #163d34;
  --br-line: rgba(201, 162, 74, 0.28);
  --br-shadow: 0 18px 50px rgba(6, 40, 32, 0.22);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--br-charcoal);
  background:
    radial-gradient(ellipse at top left, rgba(201, 162, 74, 0.08), transparent 42%),
    linear-gradient(180deg, #f8f5ee 0%, #f3eee3 45%, #efe8d8 100%);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
  width: 100%;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
  touch-action: none;
  overscroll-behavior: none;
}

body.cookie-open {
  padding-bottom: 10.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, var(--br-emerald-deep), var(--br-emerald), var(--br-emerald-deep));
  color: var(--br-ivory);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--br-line);
}

.topbar i {
  color: var(--br-gold-soft);
  margin-right: 0.4rem;
}

.site-header {
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 61, 50, 0.08);
}

.navbar {
  padding: 0.85rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--br-emerald), var(--br-emerald-deep));
  color: var(--br-gold-soft);
  border: 1px solid var(--br-gold);
  box-shadow: inset 0 0 0 3px rgba(201, 162, 74, 0.18);
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--br-emerald-deep);
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--br-muted);
  font-weight: 600;
}

.navbar-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--br-emerald-deep) !important;
  padding: 0.55rem 0.9rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--br-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--br-line);
  padding: 0.45rem 0.6rem;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(201, 162, 74, 0.25) !important;
}

.navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
  background-image: none;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--br-emerald-deep);
  border-radius: 2px;
}

.navbar-toggler-icon::before {
  top: 0.25rem;
}

.navbar-toggler-icon span {
  top: 0.6rem;
  display: block;
}

.navbar-toggler-icon::after {
  bottom: 0.25rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(6, 40, 32, 0.88) 0%, rgba(10, 61, 50, 0.62) 48%, rgba(6, 40, 32, 0.45) 100%),
    url('../images/hero-banquetarianess.jpg') center/cover no-repeat;
  color: var(--br-ivory);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.22), transparent 68%);
  pointer-events: none;
  animation: floatGlow 9s ease-in-out infinite;
  transform: translate(20%, 25%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 5.5rem 0 4.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--br-gold-soft);
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.hero p {
  font-size: 1.08rem;
  max-width: 540px;
  color: rgba(246, 241, 231, 0.88);
  margin-bottom: 1.8rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--br-gold), #b8923a);
  color: var(--br-emerald-deep);
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 28px rgba(201, 162, 74, 0.28);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--br-emerald-deep);
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 162, 74, 0.35);
}

.btn-outline-ivory {
  border: 1px solid rgba(246, 241, 231, 0.55);
  color: var(--br-ivory);
  background: transparent;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline-ivory:hover,
.btn-outline-ivory:focus {
  background: rgba(246, 241, 231, 0.12);
  color: var(--br-ivory);
  transform: translateY(-2px);
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(10, 61, 50, 0.04), rgba(10, 61, 50, 0.02)),
    #f4efe4;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.14), transparent 35%),
    linear-gradient(160deg, var(--br-emerald-deep), var(--br-emerald) 55%, #0c4639);
  color: var(--br-ivory);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--br-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-dark .section-label {
  color: var(--br-gold-soft);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--br-emerald-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--br-ivory);
}

.section-lead {
  color: var(--br-muted);
  max-width: 620px;
  margin-bottom: 0;
}

.section-dark .section-lead {
  color: rgba(246, 241, 231, 0.78);
}

.split-media {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--br-shadow);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.7s ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature-item {
  padding: 1.5rem;
  border: 1px solid rgba(10, 61, 50, 0.08);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--br-shadow);
  border-color: rgba(201, 162, 74, 0.45);
}

.feature-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 50, 0.08);
  color: var(--br-emerald);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: var(--br-emerald-deep);
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(10, 61, 50, 0.08);
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.menu-card:hover {
  border-color: rgba(201, 162, 74, 0.5);
  transform: translateY(-3px);
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--br-emerald-deep);
  margin-bottom: 0.35rem;
}

.menu-card .price {
  color: var(--br-gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.menu-card p {
  margin: 0.65rem 0 0;
  color: var(--br-muted);
  font-size: 0.95rem;
}

.casino-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.casino-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 1.1rem;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.casino-tile:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 74, 0.55);
}

.casino-tile i {
  font-size: 1.55rem;
  color: var(--br-gold-soft);
  margin-bottom: 0.85rem;
}

.casino-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.casino-tile p {
  margin: 0;
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.92rem;
}

.event-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(10, 61, 50, 0.08);
  border-radius: 1rem;
}

.event-date {
  background: linear-gradient(160deg, var(--br-emerald), var(--br-emerald-deep));
  color: var(--br-ivory);
  border-radius: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}

.event-date strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.event-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
  color: var(--br-emerald-deep);
}

.event-item p {
  margin: 0;
  color: var(--br-muted);
  font-size: 0.93rem;
}

.contact-shell {
  border-radius: 1.5rem;
  padding: 2.4rem;
  background:
    linear-gradient(135deg, rgba(10, 61, 50, 0.95), rgba(6, 40, 32, 0.92)),
    var(--br-emerald-deep);
  color: var(--br-ivory);
  box-shadow: var(--br-shadow);
}

.contact-shell .section-title {
  color: var(--br-ivory);
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-point {
  padding: 1.2rem;
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.contact-point i {
  color: var(--br-gold-soft);
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.contact-point h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.contact-point p {
  margin: 0;
  color: rgba(246, 241, 231, 0.75);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--br-charcoal);
  color: rgba(246, 241, 231, 0.78);
  padding: 3.5rem 0 1.8rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--br-ivory);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a:hover {
  color: var(--br-gold-soft);
}

.footer-title {
  font-family: var(--font-display);
  color: var(--br-ivory);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(246, 241, 231, 0.12);
  font-size: 0.86rem;
  color: rgba(246, 241, 231, 0.62);
}

.footer-bottom {
  margin-top: 1.2rem;
  font-size: 0.84rem;
  color: rgba(246, 241, 231, 0.5);
}

.policy-page {
  padding: 4.5rem 0 5rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 61, 50, 0.08);
  border-radius: 1.3rem;
  padding: 2.4rem;
  box-shadow: var(--br-shadow);
}

.policy-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--br-emerald-deep);
  margin-bottom: 0.6rem;
}

.policy-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--br-emerald);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.policy-card p,
.policy-card li {
  color: var(--br-muted);
}

.policy-meta {
  color: var(--br-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 40, 32, 0.78);
  backdrop-filter: blur(6px);
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.overlay.active {
  display: flex;
}

.modal-panel {
  width: min(460px, 100%);
  max-width: 100%;
  background: linear-gradient(165deg, #f8f4eb, #efe6d4);
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 1.25rem;
  padding: 1.8rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: riseIn 0.35s ease;
  margin: auto;
}

.modal-panel i.lead-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 50, 0.1);
  color: var(--br-emerald);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.modal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--br-emerald-deep);
  margin-bottom: 0.55rem;
}

.modal-panel p {
  color: var(--br-muted);
  margin-bottom: 1.3rem;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-emerald {
  background: var(--br-emerald);
  color: var(--br-ivory);
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
}

.btn-emerald:hover,
.btn-emerald:focus {
  color: var(--br-ivory);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(10, 61, 50, 0.25);
  color: var(--br-emerald-deep);
  font-weight: 700;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(10, 61, 50, 0.06);
  color: var(--br-emerald-deep);
}

.age-restricted {
  display: none;
  text-align: center;
}

.age-restricted.active {
  display: block;
}

.age-verify.active-panel {
  display: block;
}

.age-verify.hidden-panel,
.age-restricted.hidden-panel {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1070;
  display: none;
  max-width: min(720px, calc(100% - 2rem));
  width: auto;
  margin: 0 auto;
  background: rgba(20, 24, 22, 0.96);
  color: var(--br-ivory);
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.cookie-banner.active {
  display: block;
  animation: riseIn 0.35s ease;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: rgba(246, 241, 231, 0.8);
}

.cookie-banner a {
  color: var(--br-gold-soft);
  text-decoration: underline;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(20%, 25%);
  }
  50% {
    transform: translate(12%, 18%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #f7f2e8;
    border: 1px solid rgba(10, 61, 50, 0.08);
    border-radius: 1rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .feature-grid,
  .menu-board,
  .casino-tiles,
  .contact-points,
  .event-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
    min-height: 70dvh;
  }

  .hero::before {
    animation: none;
    transform: translate(15%, 20%);
  }

  .section {
    padding: 3.75rem 0;
  }

  .topbar {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.75rem;
  }

  .split-media img {
    min-height: 240px;
  }

  .site-footer {
    padding-bottom: calc(1.8rem + env(safe-area-inset-bottom, 0px));
  }

  body.cookie-open {
    padding-bottom: 13rem;
  }

  .modal-panel {
    padding: 1.4rem;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .feature-grid,
  .menu-board,
  .casino-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-points {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .event-panel {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
