/* ============================================================
   Czech Night Spot — Global Stylesheet
   Dark Poker Lounge & Restaurant | Budapest
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-deep:      #0c0a07;
  --bg-base:      #111008;
  --bg-surface:   #1c160e;
  --bg-card:      #241d13;
  --bg-card-hover:#2c2418;
  --green:        #2e5e3a;
  --green-light:  #3d7a4c;
  --green-muted:  #1f4028;
  --gold:         #c9a84c;
  --gold-light:   #e0c070;
  --gold-muted:   #8a7035;
  --text:         #e8dcc8;
  --text-muted:   #9e8e75;
  --text-soft:    #b8a890;
  --border:       #3a3020;
  --border-gold:  #5a4820;
  --white:        #f5f0e8;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 20px rgba(201,168,76,0.15);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background-color: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { color: var(--text-soft); line-height: 1.75; }

/* ---- Utility ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 580px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(12,10,7,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.nav-reserve {
  font-size: 0.78rem !important;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--bg-deep) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-reserve:hover {
  background: var(--gold-light) !important;
  color: var(--bg-deep) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-nav a:hover { color: var(--gold); }

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: 140px 0 70px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(46,94,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 { margin-bottom: 12px; }
.page-header .breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.page-header .breadcrumb a { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,10,7,0.75) 0%,
    rgba(12,10,7,0.45) 50%,
    rgba(30,60,40,0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
}
.feature-item {
  background: var(--bg-surface);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.25s;
}
.feature-item:hover { background: var(--bg-card); }
.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: var(--green-muted);
  border: 1.5px solid var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- About Strip ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold-muted);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .section-label { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--text-muted); }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Poker Section ---- */
.poker-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.poker-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}
.poker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.poker-content h2 { margin-bottom: 20px; }
.poker-content p { margin-bottom: 16px; color: var(--text-muted); }
.poker-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.poker-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.poker-list li::before {
  content: '♠';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.poker-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ---- Menu Preview ---- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  padding: 12px 28px;
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s;
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-muted);
}
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body {
  padding: 20px;
}
.menu-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.menu-card-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--bg-surface);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-muted);
  opacity: 0.4;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-muted);
  border: 1.5px solid var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.9rem;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.author-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- CTA Banner ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(46,94,58,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 14px; }
.cta-section p  { margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact Info Blocks ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-muted);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.96rem;
  color: var(--text-soft);
}
.contact-info-item a:hover { color: var(--gold); }

/* ---- Contact Form ---- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
}
.form-group select option { background: var(--bg-surface); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,10,7,0.55);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--gold);
  font-size: 1.8rem;
}

/* ---- Poker Page ---- */
.poker-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.poker-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.25s;
}
.poker-info-card:hover { border-color: var(--gold-muted); }
.poker-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.poker-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.schedule-table th,
.schedule-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.schedule-table th {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-surface);
}
.schedule-table td { color: var(--text-soft); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--bg-card-hover); }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}
.footer-contact-item span:last-child {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-item a {
  font-size: 0.86rem;
  color: var(--text-muted);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal a:hover { color: var(--gold); }

/* ---- Policy Pages ---- */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 0 80px;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 40px 0 14px;
}
.policy-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--white);
}
.policy-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.policy-content ul,
.policy-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}
.policy-content a { color: var(--gold); }
.policy-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 20px;
  background: var(--bg-card);
  border-left: 3px solid var(--gold-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 40px;
}

/* ---- Thank You Page ---- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.thankyou-box {
  max-width: 560px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--green-muted);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 32px;
}
.thankyou-box h1 { margin-bottom: 16px; }
.thankyou-box p { margin-bottom: 32px; font-size: 1.05rem; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-text a { color: var(--gold); font-size: 0.86rem; }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* ---- Age Verification Popup ---- */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8,6,4,0.96);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-popup {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(0,0,0,0.8), 0 0 30px rgba(201,168,76,0.1);
}
.age-popup-suit {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}
.age-popup h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.age-popup p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.age-popup-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.age-popup-actions .btn {
  min-width: 140px;
}
.age-popup-legal {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.age-popup-legal a { color: var(--gold); font-size: 0.75rem; }

/* ---- Hours Table ---- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
}
.hours-table td {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-soft);
}
.hours-table tr.today td { color: var(--gold); }

/* ---- Map placeholder ---- */
.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  overflow: hidden;
  margin-bottom: 28px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
  filter: grayscale(60%) contrast(1.1) brightness(0.6);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid,
  .poker-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide,
  .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .age-popup { padding: 36px 28px; }
  .age-popup-actions { flex-direction: column; }
  .age-popup-actions .btn { min-width: 100%; }
  .hero-content { padding-top: 110px; }
  .hero-scroll { display: none; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; text-align: center; }
}

@media (max-height: 760px) {
  .hero-scroll { display: none; }
  .hero-content { padding-bottom: 48px; }
}

/* ---- Policy Wrapper (used on all policy pages) ---- */
.policy-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.policy-wrapper > p:first-of-type {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.policy-wrapper h2 {
  font-size: 1.35rem;
  color: var(--gold);
  margin: 44px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-wrapper h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin: 28px 0 10px;
}
.policy-wrapper p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-wrapper a { color: var(--gold); }
.policy-wrapper a:hover { color: var(--gold-light); }
.policy-wrapper code {
  font-size: 0.85rem;
}
.policy-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 48px;
}
.policy-contact-box h3 {
  color: var(--gold);
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.policy-contact-box p {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.policy-contact-box a { color: var(--gold); }

/* ---- Thank You Page ---- */
.thankyou-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}
.thankyou-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(0,0,0,0.5), var(--shadow-gold);
}
.thankyou-card .thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--green-muted);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 28px;
  color: var(--gold);
}
.thankyou-card .section-label { margin-bottom: 12px; }
.thankyou-card h1 { margin-bottom: 20px; }
.thankyou-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.thankyou-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}
.thankyou-info-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.thankyou-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.thankyou-info-val {
  font-size: 0.88rem;
  color: var(--text-soft);
}
a.thankyou-info-val:hover { color: var(--gold); }
.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.thankyou-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.thankyou-note a { color: var(--gold); font-size: 0.78rem; }

@media (max-width: 600px) {
  .thankyou-card { padding: 36px 24px; }
  .thankyou-info-grid { grid-template-columns: 1fr; }
  .thankyou-actions { flex-direction: column; align-items: stretch; }
  .thankyou-actions .btn { text-align: center; }
}
