@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --lh-ink: #0b1220;
  --lh-ink-soft: #141c2e;
  --lh-panel: #182235;
  --lh-emerald: #1a9b7a;
  --lh-emerald-deep: #0f6e57;
  --lh-gold: #d4af6a;
  --lh-gold-soft: #e6c98a;
  --lh-mist: #d7e0ec;
  --lh-cloud: #eef3f8;
  --lh-muted: #9aabc0;
  --lh-line: rgba(212, 175, 106, 0.28);
  --lh-radius: 1.25rem;
  --lh-shadow: 0 24px 60px rgba(3, 8, 18, 0.45);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--lh-cloud);
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 155, 122, 0.16), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(212, 175, 106, 0.12), transparent 28%),
    linear-gradient(180deg, #070b14 0%, var(--lh-ink) 42%, #0a101c 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body.lh-locked {
  overflow: hidden;
}

a {
  color: var(--lh-gold-soft);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--lh-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lh-topbar {
  background: linear-gradient(90deg, #07101c, #102033 55%, #0b1828);
  border-bottom: 1px solid rgba(26, 155, 122, 0.25);
  color: var(--lh-mist);
  font-size: 0.875rem;
  padding: 0.65rem 0;
  text-align: center;
}

.lh-topbar i {
  color: var(--lh-gold);
  margin-right: 0.4rem;
}

.lh-navbar {
  background: rgba(11, 18, 32, 0.92);
  border-bottom: 1px solid rgba(215, 224, 236, 0.08);
  padding: 0.85rem 0;
  position: relative;
  z-index: 1030;
}

.lh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lh-cloud);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lh-brand:hover,
.lh-brand:focus-visible {
  color: var(--lh-gold-soft);
}

.lh-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--lh-emerald), var(--lh-emerald-deep));
  color: #04120e;
  box-shadow: 0 0 0 1px rgba(212, 175, 106, 0.35), 0 10px 24px rgba(26, 155, 122, 0.28);
}

.lh-brand-mark i {
  font-size: 1.05rem;
}

.lh-brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-muted);
  margin-top: -0.15rem;
}

.lh-nav-link {
  color: var(--lh-mist) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem !important;
  position: relative;
}

.lh-nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lh-emerald), var(--lh-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.lh-nav-link:hover,
.lh-nav-link:focus-visible,
.lh-nav-link.active {
  color: var(--lh-gold-soft) !important;
}

.lh-nav-link:hover::after,
.lh-nav-link:focus-visible::after,
.lh-nav-link.active::after {
  transform: scaleX(1);
}

.lh-toggler {
  border: 1px solid var(--lh-line);
  background: transparent;
  color: var(--lh-gold);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lh-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(26, 155, 122, 0.25);
}

.lh-toggler .navbar-toggler-icon {
  background-image: none;
  width: auto;
  height: auto;
}

@media (max-width: 991.98px) {
  .lh-navbar .navbar-collapse {
    background: var(--lh-ink-soft);
    border: 1px solid rgba(215, 224, 236, 0.08);
    border-radius: 1rem;
    margin-top: 0.85rem;
    padding: 0.75rem;
  }

  .lh-nav-link::after {
    display: none;
  }
}

.lh-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 11, 20, 0.88) 8%, rgba(7, 11, 20, 0.55) 48%, rgba(7, 11, 20, 0.72) 100%),
    url('../images/hero-banner.jpg') center / cover no-repeat;
}

.lh-hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -30% auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 155, 122, 0.22), transparent 68%);
  pointer-events: none;
  animation: lh-float 9s ease-in-out infinite;
}

.lh-hero::after {
  content: '';
  position: absolute;
  inset: 12% auto auto 6%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 106, 0.16), transparent 70%);
  pointer-events: none;
  animation: lh-float 11s ease-in-out infinite reverse;
}

.lh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  padding: 5.5rem 0 4.5rem;
}

.lh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lh-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.lh-hero h1,
.lh-section-title,
.lh-policy-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff;
}

.lh-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin-bottom: 1.1rem;
}

.lh-hero h1 em {
  font-style: italic;
  color: var(--lh-gold-soft);
}

.lh-lead {
  color: var(--lh-mist);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lh-btn:hover,
.lh-btn:focus-visible {
  transform: translateY(-2px);
}

.lh-btn-primary {
  background: linear-gradient(135deg, var(--lh-emerald), var(--lh-emerald-deep));
  color: #04120e;
  box-shadow: 0 14px 30px rgba(26, 155, 122, 0.28);
}

.lh-btn-primary:hover,
.lh-btn-primary:focus-visible {
  color: #03100c;
  box-shadow: 0 18px 36px rgba(26, 155, 122, 0.38);
}

.lh-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(215, 224, 236, 0.22);
  color: var(--lh-cloud);
}

.lh-btn-ghost:hover,
.lh-btn-ghost:focus-visible {
  color: #fff;
  border-color: var(--lh-gold);
}

.lh-btn-gold {
  background: linear-gradient(135deg, var(--lh-gold), #b8893f);
  color: #1a1205;
}

.lh-btn-gold:hover,
.lh-btn-gold:focus-visible {
  color: #120c03;
}

.lh-btn-outline {
  background: transparent;
  border-color: rgba(215, 224, 236, 0.28);
  color: var(--lh-cloud);
}

.lh-btn-outline:hover,
.lh-btn-outline:focus-visible {
  border-color: var(--lh-emerald);
  color: var(--lh-gold-soft);
}

.lh-section {
  padding: 5.5rem 0;
  position: relative;
}

.lh-section-alt {
  background: linear-gradient(180deg, rgba(20, 28, 46, 0.72), rgba(11, 18, 32, 0.45));
}

.lh-section-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 0.85rem;
}

.lh-section-copy {
  color: var(--lh-muted);
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.lh-media {
  border-radius: var(--lh-radius);
  overflow: hidden;
  box-shadow: var(--lh-shadow);
  border: 1px solid rgba(215, 224, 236, 0.08);
  position: relative;
}

.lh-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s ease;
}

.lh-media:hover img {
  transform: scale(1.04);
}

.lh-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.lh-feature-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--lh-mist);
}

.lh-feature-list i {
  color: var(--lh-emerald);
  margin-top: 0.25rem;
}

.lh-menu-grid .lh-dish {
  background: linear-gradient(160deg, rgba(24, 34, 53, 0.95), rgba(14, 21, 36, 0.92));
  border: 1px solid rgba(215, 224, 236, 0.08);
  border-radius: 1.15rem;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lh-menu-grid .lh-dish:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 155, 122, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.lh-dish-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 155, 122, 0.14);
  color: var(--lh-gold);
  margin-bottom: 1rem;
}

.lh-dish h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.lh-dish p {
  color: var(--lh-muted);
  margin: 0;
}

.lh-chip {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lh-emerald);
}

.lh-game-panel {
  background: var(--lh-panel);
  border-radius: 1.25rem;
  border: 1px solid rgba(212, 175, 106, 0.18);
  padding: 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lh-game-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 155, 122, 0.2), transparent 70%);
}

.lh-game-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0.9rem 0 0.55rem;
}

.lh-game-panel p {
  color: var(--lh-muted);
  margin: 0;
}

.lh-game-panel i {
  color: var(--lh-gold);
  font-size: 1.4rem;
}

.lh-event {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(215, 224, 236, 0.1);
}

.lh-event:last-child {
  border-bottom: 0;
}

.lh-event-date {
  background: rgba(212, 175, 106, 0.1);
  border: 1px solid var(--lh-line);
  border-radius: 1rem;
  text-align: center;
  padding: 0.75rem 0.4rem;
}

.lh-event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--lh-gold);
}

.lh-event-date span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lh-muted);
}

.lh-event h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.lh-event p {
  color: var(--lh-muted);
  margin: 0;
}

.lh-contact-box {
  background:
    linear-gradient(145deg, rgba(26, 155, 122, 0.12), rgba(212, 175, 106, 0.08)),
    var(--lh-ink-soft);
  border: 1px solid rgba(215, 224, 236, 0.1);
  border-radius: 1.4rem;
  padding: 2.4rem;
}

.lh-contact-box ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.lh-contact-box li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--lh-mist);
}

.lh-contact-box i {
  color: var(--lh-gold);
  margin-top: 0.2rem;
}

.lh-footer {
  background: #060a12;
  border-top: 1px solid rgba(215, 224, 236, 0.08);
  padding: 3.5rem 0 2rem;
}

.lh-footer h2,
.lh-footer h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.lh-footer p,
.lh-footer li {
  color: var(--lh-muted);
  font-size: 0.92rem;
}

.lh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lh-footer-links a {
  color: var(--lh-mist);
  display: inline-block;
  padding: 0.25rem 0;
}

.lh-footer-links a:hover,
.lh-footer-links a:focus-visible {
  color: var(--lh-gold);
}

.lh-disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 106, 0.18);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  margin-top: 1.5rem;
}

.lh-copybar {
  border-top: 1px solid rgba(215, 224, 236, 0.08);
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: var(--lh-muted);
  font-size: 0.85rem;
}

.lh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.78);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lh-overlay.is-open {
  display: flex;
}

.lh-modal {
  width: min(100%, 28rem);
  background: linear-gradient(160deg, #152036, #0d1524);
  border: 1px solid rgba(212, 175, 106, 0.28);
  border-radius: 1.35rem;
  padding: 2rem 1.7rem;
  box-shadow: var(--lh-shadow);
  text-align: center;
}

.lh-modal h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.lh-modal p {
  color: var(--lh-muted);
  margin-bottom: 1.4rem;
}

.lh-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.lh-restricted {
  display: none;
}

.lh-restricted.is-visible {
  display: block;
}

.lh-restricted-panel {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.lh-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  display: none;
  background: linear-gradient(145deg, #152036, #0e1626);
  border: 1px solid rgba(26, 155, 122, 0.3);
  border-radius: 1.15rem;
  padding: 1.15rem 1.25rem;
  box-shadow: var(--lh-shadow);
}

.lh-cookie.is-open {
  display: block;
}

.lh-cookie p {
  color: var(--lh-mist);
  margin: 0 0 0.95rem;
  font-size: 0.92rem;
}

.lh-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lh-policy-page {
  padding: 4.5rem 0 5rem;
}

.lh-policy-card {
  background: rgba(20, 28, 46, 0.72);
  border: 1px solid rgba(215, 224, 236, 0.08);
  border-radius: 1.35rem;
  padding: 2rem;
}

.lh-policy-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 1.8rem 0 0.7rem;
  color: var(--lh-gold-soft);
}

.lh-policy-card p,
.lh-policy-card li {
  color: var(--lh-muted);
}

.lh-policy-card ul {
  padding-left: 1.1rem;
}

.lh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lh-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (min-width: 768px) {
  .lh-cookie {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(100%, 26rem);
  }
}

@media (max-width: 575.98px) {
  .lh-hero-content {
    padding-top: 4rem;
  }

  .lh-section {
    padding: 4rem 0;
  }

  .lh-event {
    grid-template-columns: 4.6rem 1fr;
  }
}
