/* ============================================================
   GRAND AURELIA RESORT & CASINO
   style.css — Загальні стилі для всіх сторінок
   www.grandaurelia.com.ar
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a2e;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1a16;
  --cream: #f5edd6;
  --cream2: #ede0c0;
  --text-muted: #9a8f7a;
  --white: #ffffff;
  --font-display: "Playfair Display", serif;
  --font-body: "Cormorant Garamond", serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1300px;
  margin: 0 auto;
}
.container--narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: padding 0.4s;
}
nav.scrolled {
  padding: 0.7rem 4rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream2);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 7, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 237, 214, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: var(--gold-light);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section {
  padding: 7rem 4rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow--center {
  justify-content: center;
}
.section-eyebrow--center::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
}

/* Gold divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 12rem 4rem 6rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1508 50%, #0d0d0d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.page-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.page-eyebrow::before,
.page-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--cream);
}
.page-title em {
  font-style: italic;
  color: var(--gold);
}
.page-date {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option {
  background: var(--dark2);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(5deg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section {
  padding: 7rem 4rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin: 3rem 0 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream2);
  margin: 2rem 0 0.8rem;
}
.legal-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.legal-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.legal-content ul li {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.legal-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.legal-content a:hover {
  border-color: var(--gold);
}

.legal-highlight {
  background: rgba(201, 168, 76, 0.05);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.legal-highlight p {
  color: var(--cream2);
  margin: 0;
}

/* Policy table (returns page) */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.policy-table th {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
  text-align: left;
  border: 1px solid rgba(201, 168, 76, 0.15);
}
.policy-table td {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.policy-table tr:hover td {
  background: rgba(201, 168, 76, 0.03);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 5rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

/* Brand col */
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}
.footer-brand .brand-sub {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Social */
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Footer columns */
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-col ul li a i {
  font-size: 0.7rem;
}

/* Contact items in footer */
.contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--gold);
}

/* Disclaimer */
.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  font-size: 0.75rem;
  color: rgba(154, 143, 122, 0.5);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(10, 9, 7, 0.97);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.4s;
}
#cookieBanner.hidden {
  transform: translateY(100%);
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 700px;
}
.cookie-text a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.cookie-text a:hover {
  border-color: var(--gold);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.6rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-cookie-accept:hover {
  background: var(--gold-light);
}

.btn-cookie-more {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-cookie-more:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   INDEX — HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #1c1610 40%, #0d0d0d 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 60%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 20%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 60%
    );
}
.hero-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(201, 168, 76, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 0.3rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-tagline {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cream2);
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.7s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s 1s ease both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   INDEX — ABOUT
   ============================================================ */
#about {
  background: var(--dark2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1c1a16, #2a2418);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.about-visual {
  position: relative;
}
.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-family: var(--font-display);
}
.about-badge strong {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.about-feature p {
  font-size: 0.95rem;
  color: var(--cream2);
}

/* ============================================================
   INDEX — FACILITIES
   ============================================================ */
#facilities {
  background: var(--dark3);
}

.facilities-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201, 168, 76, 0.1);
}
.facility-card {
  background: var(--dark2);
  padding: 3rem 2.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.facility-card:hover {
  background: #1c1a14;
}
.facility-card:hover::before {
  transform: scaleX(1);
}

.facility-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.3rem;
  transition: all 0.4s;
}
.facility-card:hover .facility-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.facility-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.facility-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.casino-note {
  margin-top: 3rem;
  padding: 1.5rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.casino-note i {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.casino-note p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}
.casino-note strong {
  color: var(--cream2);
}

/* ============================================================
   INDEX — BOOKING
   ============================================================ */
#booking {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1508 50%, #0d0d0d 100%);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.booking-form {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3rem;
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.booking-rooms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.room-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--dark2);
  transition: border-color 0.3s;
  align-items: center;
}
.room-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}
.room-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.room-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.room-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.room-price {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.room-price span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
}
.room-price strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

/* ============================================================
   INDEX — TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--dark2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  transition: all 0.4s;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--cream2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1rem;
}
.author-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 7rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.info-block {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.info-text span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.3), transparent);
  margin: 2.5rem 0;
}

.social-contact {
  display: flex;
  gap: 0.8rem;
}

.contact-form-box {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 3rem;
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.contact-form-box > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold);
}
.form-success i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.form-success h3 {
  font-family: var(--font-display);
  color: var(--cream);
}
.form-success p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Map */
.map-section {
  padding: 0 4rem 7rem;
}
.map-frame {
  width: 100%;
  height: 420px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--dark2);
  overflow: hidden;
  filter: grayscale(60%) invert(90%) hue-rotate(180deg) brightness(0.7);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  nav.scrolled {
    padding: 0.7rem 2rem;
  }
  section,
  .contact-section,
  .legal-section {
    padding: 5rem 2rem;
  }
  footer {
    padding: 4rem 2rem 2rem;
  }
  #cookieBanner {
    padding: 1.2rem 2rem;
  }
  .map-section {
    padding: 0 2rem 5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-inner {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .policy-table {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  #cookieBanner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-buttons {
    width: 100%;
  }
  .btn-cookie-accept,
  .btn-cookie-more {
    flex: 1;
    text-align: center;
  }
}
