/* ============================================
   GOLDEN VALLEY RESORT — Main Stylesheet
   Luxury Casino Hotel, Greece
   ============================================ */

/* Google Fonts — Unique Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

/* ============================================
   CSS Custom Properties — Color Palette
   ============================================ */
:root {
  /* Primary Deep Navy */
  --color-navy: #0D1B2A;
  --color-navy-light: #1A2D42;
  --color-navy-mid: #142233;

  /* Gold Accents */
  --color-gold: #C9A84C;
  --color-gold-light: #E8C97A;
  --color-gold-bright: #F0D080;
  --color-gold-dark: #9A7A2E;

  /* Ivory & Cream */
  --color-ivory: #F8F4EC;
  --color-cream: #EFE8D8;
  --color-warm-white: #FDFAF5;

  /* Emerald (tables/accents) */
  --color-emerald: #1A6B4A;
  --color-emerald-light: #2A8B60;

  /* Neutrals */
  --color-charcoal: #2C3240;
  --color-slate: #4A5568;
  --color-mist: #8A96A8;
  --color-border: rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1280px;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-mid: 0.4s ease;
  --trans-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.2);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 8px 40px rgba(13, 27, 42, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-navy);
  color: var(--color-ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--trans-fast); }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.serif { font-family: var(--font-serif); }
.display { font-family: var(--font-display); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--color-gold);
  font-style: italic;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-mist);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background-color: var(--color-navy);
}

.section--mid {
  background-color: var(--color-navy-mid);
}

.section--light {
  background-color: var(--color-navy-light);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }

/* Gold Divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.5rem auto;
}

.gold-divider--left { margin-left: 0; }

/* ============================================
   AGE VERIFICATION POPUP
   ============================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(26,44,66,0.97) 100%);
  backdrop-filter: blur(10px);
}

.age-gate__inner {
  background: linear-gradient(160deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 60px 50px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-deep), 0 0 60px rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
}

.age-gate__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.age-gate__emblem {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-ivory);
  margin-bottom: 0.5rem;
}

.age-gate__subtitle {
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.age-gate__text {
  font-size: 0.9rem;
  color: var(--color-mist);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.age-gate__text strong {
  color: var(--color-ivory);
}

.age-gate__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-age-yes {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  color: var(--color-navy);
  border: none;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans-mid);
  border-radius: 1px;
}

.btn-age-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-age-no {
  background: transparent;
  color: var(--color-mist);
  border: 1px solid rgba(138, 150, 168, 0.3);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans-mid);
  border-radius: 1px;
}

.btn-age-no:hover {
  border-color: var(--color-mist);
  color: var(--color-ivory);
}

.age-gate__disclaimer {
  margin-top: 2rem;
  font-size: 0.72rem;
  color: rgba(138, 150, 168, 0.6);
  line-height: 1.6;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--trans-mid);
  padding: 24px 0;
}

.site-header.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.header__logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 3px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.8);
  position: relative;
  padding-bottom: 4px;
  transition: var(--trans-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--trans-mid);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__cta {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans-mid);
  border-radius: 1px;
  text-decoration: none;
  display: inline-block;
}

.header__cta:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* Mobile menu toggle */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-ivory);
  transition: var(--trans-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.95) 0%,
    rgba(13, 27, 42, 0.5) 40%,
    rgba(13, 27, 42, 0.2) 70%,
    rgba(13, 27, 42, 0.1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-ivory);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(248, 244, 236, 0.8);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-mist);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 1px;
  cursor: pointer;
  transition: var(--trans-mid);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  color: var(--color-navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-ivory);
  border: 1px solid rgba(248, 244, 236, 0.5);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--gold-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--color-border);
}

.feature-card {
  background: var(--color-navy-light);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--trans-mid);
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: var(--trans-mid);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  background: var(--color-navy-mid);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  font-size: 1.4rem;
  transition: var(--trans-mid);
}

.feature-card:hover .feature-card__icon {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-ivory);
  margin-bottom: 0.8rem;
}

.feature-card__text {
  font-size: 0.88rem;
  color: var(--color-mist);
  line-height: 1.8;
}

/* ============================================
   SPLIT SECTIONS (Image + Text)
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-section--reverse .split-section__image { order: 2; }
.split-section--reverse .split-section__content { order: 1; }

.split-section__image {
  position: relative;
  overflow: hidden;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-section__image:hover img { transform: scale(1.03); }

.split-section__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.3) 0%, transparent 60%);
}

.split-section__content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-navy-light);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--trans-mid);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-ivory);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(13, 27, 42, 0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.7);
}

/* ============================================
   ENTERTAINMENT CARDS
   ============================================ */
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.entertainment-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.entertainment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.entertainment-card:hover img { transform: scale(1.05); }

.entertainment-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.4) 50%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 30px;
  transition: var(--trans-mid);
}

.entertainment-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.entertainment-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-ivory);
  margin-bottom: 0.8rem;
}

.entertainment-card__desc {
  font-size: 0.85rem;
  color: rgba(248, 244, 236, 0.75);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.entertainment-card:hover .entertainment-card__desc {
  max-height: 100px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  padding: 40px 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--color-mist);
  margin-top: 2px;
}

/* ============================================
   PAGE HERO (Interior pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(13,27,42,0.9) 0%,
    rgba(13,27,42,0.6) 50%,
    rgba(13,27,42,0.3) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.breadcrumb__item {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
}

.breadcrumb__item a:hover { color: var(--color-gold); }

.breadcrumb__sep {
  color: var(--color-gold);
  font-size: 0.6rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(13, 27, 42, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--color-mist);
  line-height: 1.7;
}

.cookie-banner__text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-border);
  padding-top: 80px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer__brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-bottom: 1.5rem;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(138, 150, 168, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 0.85rem;
  color: rgba(138, 150, 168, 0.8);
  transition: var(--trans-fast);
}

.footer__col-links a:hover { color: var(--color-gold); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer__contact-icon {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.83rem;
  color: rgba(138, 150, 168, 0.8);
  line-height: 1.6;
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(138, 150, 168, 0.5);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 0.72rem;
  color: rgba(138, 150, 168, 0.5);
  transition: var(--trans-fast);
}

.footer__legal-links a:hover { color: var(--color-gold); }

.footer__age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 1px;
}

.footer__age-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

/* ============================================
   INFO PAGE STYLES (Legal pages)
   ============================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold);
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ivory);
  margin: 1.5rem 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--color-mist);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--color-mist);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-intro-box {
  background: rgba(201, 168, 76, 0.07);
  border-left: 3px solid var(--color-gold);
  padding: 24px 28px;
  margin-bottom: 2.5rem;
}

.legal-intro-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--color-ivory);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  border-radius: 1px;
  transition: var(--trans-fast);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.05);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-select option {
  background: var(--color-navy);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.36s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LUXURY ACCENT ELEMENTS
   ============================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1rem;
}

.ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.ornament__line--right {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.ornament__diamond {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-navy-light);
  border-left: 1px solid var(--color-border);
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { right: 0; }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ivory);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--trans-fast);
}

.mobile-nav__link:hover { color: var(--color-gold); }

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-ivory);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

/* ============================================
   RESPONSIBLE GAMBLING BANNER
   ============================================ */
.rg-banner {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

.rg-banner__icon {
  font-size: 2rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.rg-banner__text {
  font-size: 0.85rem;
  color: var(--color-mist);
  line-height: 1.7;
}

.rg-banner__text strong {
  color: var(--color-ivory);
  display: block;
  margin-bottom: 4px;
}

.rg-banner__text a {
  color: var(--color-gold);
}

/* ============================================
   IMAGE FALLBACKS — when external images fail
   ============================================ */
img {
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy-mid) 50%, var(--color-navy) 100%);
}

/* Hero section fallback gradient */
.hero {
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(26,45,66,0.6) 0%, transparent 50%),
              linear-gradient(135deg, #0D1B2A 0%, #142233 30%, #1B3050 60%, #0D1B2A 100%);
}

.page-hero {
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
              linear-gradient(135deg, #0D1B2A 0%, #1A2D42 50%, #0F2236 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section--reverse .split-section__image { order: 0; }
  .split-section--reverse .split-section__content { order: 0; }
  .split-section__image { min-height: 400px; }
  .split-section__content { padding: 60px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .header__nav,
  .header__cta { display: none; }

  .header__burger { display: flex; }

  .hero__content { padding-bottom: 70px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .footer__main { grid-template-columns: 1fr; gap: 36px; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal-links { gap: 14px; }

  .entertainment-grid { grid-template-columns: 1fr; }

  .age-gate__inner { padding: 40px 30px; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .split-section__content { padding: 40px 20px; }
  .btn { padding: 13px 28px; }
}

/* ============================================
   HGC REGULATOR BAR
   ============================================ */
.regulator-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  padding: 20px 0;
}

.regulator-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.regulator-bar__logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.regulator-bar__logo {
  height: 52px;
  width: auto;
  /* белый фон под логотипом, т.к. оригинал на белом */
  background: #fff;
  padding: 6px 10px;
  border-radius: 3px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.regulator-bar__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.regulator-bar__label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}

.regulator-bar__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-ivory);
  line-height: 1.3;
}

.regulator-bar__sub {
  font-size: 0.72rem;
  color: var(--color-mist);
  letter-spacing: 0.06em;
}

.regulator-bar__right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.regulator-bar__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
}

.regulator-bar__badge-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

.regulator-bar__badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
}

.regulator-bar__disclaimer {
  font-size: 0.7rem;
  color: rgba(138, 150, 168, 0.5);
  max-width: 320px;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 768px) {
  .regulator-bar__inner { flex-direction: column; align-items: flex-start; }
  .regulator-bar__disclaimer { text-align: left; max-width: 100%; }
  .regulator-bar__right { width: 100%; justify-content: flex-start; }
}
