/* 
  CityEventGuides.com - Premium Emerald & Champagne Design System
  Distinct, modern Scandinavian & European Bistro & Card Lounge
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Color Palette - Emerald, Champagne & Gold */
  --bg-main: #f6f3eb;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ede8dc;
  --bg-glass: rgba(255, 255, 255, 0.9);
  
  --bg-dark: #0a211b; /* Deep Emerald Midnight */
  --bg-dark-surface: #12332a;
  
  --text-primary: #181c1b;
  --text-secondary: #4a5450;
  --text-muted: #73807a;
  
  --brand-primary: #0e5243; /* Deep Emerald */
  --brand-primary-hover: #0a3d32;
  --brand-light: #e4f2ee;
  
  --brand-gold: #c29b38; /* Warm Champagne Gold */
  --brand-gold-hover: #a38029;
  --brand-gold-light: #faf3e0;
  
  --border-light: #e3ded2;
  --border-medium: #d1c9b8;
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(10, 33, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 33, 27, 0.08);
  --shadow-lg: 0 20px 40px -8px rgba(10, 33, 27, 0.14);
  
  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition);
}

/* Accessibility & Focus Indicators */
:focus-visible {
  outline: 2.5px solid var(--brand-gold) !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a:hover { color: var(--brand-primary-hover); }

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

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

/* ELEGANT BRAND LOGO EMBLEM */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  transition: transform var(--transition);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo .logo-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0e5243 0%, #051a15 100%);
  border: 1px solid #c29b38;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(194, 155, 56, 0.25);
  position: relative;
}

.brand-logo .logo-emblem svg {
  color: #fceecb;
  width: 24px;
  height: 24px;
}

.brand-logo span.logo-title {
  color: var(--text-primary);
  font-weight: 700;
}

.brand-logo span.logo-highlight {
  color: var(--brand-gold);
  font-weight: 700;
}

.brand-logo span.logo-dot {
  color: var(--brand-primary);
  font-size: 1.6rem;
  line-height: 0;
  margin-left: 1px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.2rem;
  position: relative;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--brand-primary);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(14, 82, 67, 0.25);
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--brand-gold);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(194, 155, 56, 0.3);
}

.btn-gold:hover {
  background-color: var(--brand-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background-color: var(--bg-surface-elevated);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-glass-light {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass-light:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.badge-emerald {
  background-color: var(--brand-light);
  color: var(--brand-primary);
}

.badge-gold {
  background-color: var(--brand-gold-light);
  color: #8a6c1d;
  border: 1px solid rgba(194, 155, 56, 0.3);
}

/* HERO SECTION */
.hero-dramatic {
  background: linear-gradient(135deg, #051612 0%, #0c2d25 60%, #154237 100%);
  color: #ffffff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(194, 155, 56, 0.3);
}

.hero-dramatic::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194, 155, 56, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-dramatic-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(194, 155, 56, 0.15);
  border: 1px solid rgba(194, 155, 56, 0.4);
  color: #e5cd89;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-title-dramatic {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fceecb 0%, #c29b38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: 1.15rem;
  color: #c4d4cf;
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-pillars-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #e4eee9;
  font-weight: 500;
}

.pillar-item svg {
  color: var(--brand-gold);
  flex-shrink: 0;
}

.pillar-divider {
  width: 1px;
  height: 20px;
  background: rgba(194, 155, 56, 0.4);
}

.hero-media-stack {
  position: relative;
}

.hero-media-main-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(194, 155, 56, 0.4);
}

.hero-media-main-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-poker-preview-overlay {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(10, 33, 27, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(194, 155, 56, 0.5);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
}

.poker-mini-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--brand-gold);
}

.poker-preview-text h5 {
  color: var(--brand-gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.poker-preview-text p {
  color: #c0ceca;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Concept Cards Grid */
.section { padding: 5.5rem 0; }

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-title-wrap h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-title-wrap p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.concept-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.concept-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.concept-icon-box svg {
  width: 28px;
  height: 28px;
}

.concept-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.concept-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Feature Grid Split */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.feature-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.event-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--bg-surface);
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dish-card-img {
  width: calc(100% + 4rem);
  height: 200px;
  margin: -2rem -2rem 1.25rem -2rem;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--bg-surface);
}

.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: block;
}

/* Dark Poker Lounge Section */
.poker-lounge-dark {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 6rem 0;
}

.poker-layout-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.poker-content-side h2 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
}

.poker-content-side p {
  color: #c0ceca;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}

.poker-checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.poker-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #e4eee9;
  font-size: 0.95rem;
}

.poker-checklist svg {
  color: var(--brand-gold);
  flex-shrink: 0;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--brand-primary);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question svg {
  color: var(--brand-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* REVAMPED LUXURY RESERVATION CARD */
.reservation-luxury-card {
  background: linear-gradient(135deg, #09231d 0%, #04120e 100%);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3.5rem;
  color: #ffffff;
  border: 1px solid rgba(194, 155, 56, 0.4);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.reservation-luxury-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(194, 155, 56, 0.18) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reservation-flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.reservation-info h2 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.reservation-info p {
  color: #c0ceca;
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 1.75rem;
}

.reservation-perks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.perk-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(194, 155, 56, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #e4eee9;
}

.perk-badge svg {
  color: var(--brand-gold);
}

/* Menu Preview Cards */
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dish-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}

.dish-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.dish-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.dish-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex: 1;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
}

/* Forms */
.form-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  background: var(--bg-main);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 82, 67, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* REDESIGNED LUXURY FOOTER */
.site-footer {
  background: linear-gradient(180deg, #071914 0%, #030d0a 100%) !important;
  color: #9ab0a9 !important;
  padding: 5rem 0 2rem 0 !important;
  margin-top: auto !important;
  position: relative !important;
  border-top: 2px solid var(--brand-gold) !important;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 155, 56, 0.8), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  color: #ffffff !important;
  margin-bottom: 1.25rem;
}

.footer-brand .brand-logo span.logo-title {
  color: #ffffff !important;
}

.footer-brand p {
  color: #a7b9b3 !important;
  font-size: 0.93rem;
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 1.25rem;
}

.footer-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(194, 155, 56, 0.12);
  border: 1px solid rgba(194, 155, 56, 0.35);
  color: var(--brand-gold) !important;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-heading {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--brand-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #b0c4be !important;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--brand-gold) !important;
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.85rem !important;
  color: #e4eee9 !important;
  font-size: 0.92rem !important;
  line-height: 1.4 !important;
}

.footer-contact-item svg {
  color: var(--brand-gold) !important;
  stroke: var(--brand-gold) !important;
  flex-shrink: 0 !important;
  margin-top: 0.2rem !important;
}

.footer-contact-item strong {
  color: #ffffff !important;
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.2rem !important;
}

.footer-contact-item span {
  color: #e4eee9 !important;
  display: block !important;
  font-size: 0.92rem !important;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #728780 !important;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #728780 !important;
}

/* LEGAL & POLICY PAGES STYLING */
.legal-header {
  background: linear-gradient(135deg, #071914 0%, #0c2d25 60%, #154237 100%) !important;
  color: #ffffff !important;
  padding: 4.5rem 0 3.5rem 0 !important;
  border-bottom: 1px solid rgba(194, 155, 56, 0.3) !important;
  margin-bottom: 3.5rem !important;
  text-align: center;
}

.legal-header h1 {
  font-family: var(--font-display) !important;
  font-size: 3rem !important;
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
}

.legal-header p {
  color: #a3b8b1 !important;
  font-size: 1rem !important;
  max-width: 680px;
  margin: 0 auto;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: 5rem;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-sidebar-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.legal-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-nav a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.legal-nav a:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
}

.legal-nav a.active {
  background: var(--brand-primary);
  color: #ffffff;
  font-weight: 600;
}

.legal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--brand-primary);
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 1.75rem 0 0.75rem 0;
  font-weight: 700;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.35rem;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 1.5rem 1.75rem;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
}

.legal-content blockquote {
  background: var(--brand-gold-light);
  border-left: 4px solid var(--brand-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
  color: #5c4712;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-callout-box {
  background: var(--brand-light);
  border: 1px solid rgba(14, 82, 67, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 2rem 0;
}

.legal-callout-box h4 {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Modals & Toasts */
.age-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 33, 27, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-modal-box {
  background: var(--bg-surface);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  border: 1px solid rgba(194, 155, 56, 0.4);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(10, 33, 27, 0.95);
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* COMPREHENSIVE MOBILE & TABLET RESPONSIVE SYSTEM */
html, body {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, span, a, strong, li {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Tablet Breakpoint (1024px and below) */
@media (max-width: 1024px) {
  .hero-dramatic-grid, 
  .feature-block, 
  .poker-layout-split, 
  .reservation-flex-wrap,
  .legal-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .hero-media-main-card img {
    height: 380px;
  }

  .reservation-flex-wrap {
    flex-direction: column;
    text-align: center;
  }

  .reservation-info p {
    margin-left: auto;
    margin-right: auto;
  }

  .reservation-perks {
    justify-content: center;
  }

  .concept-grid, 
  .menu-card-grid, 
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .legal-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
}

/* Mobile Standard Breakpoint (768px and below) */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Header & Navigation */
  .header-inner {
    height: 72px;
    gap: 0.5rem;
  }

  .brand-logo {
    font-size: 1.2rem;
    gap: 0.55rem;
    white-space: nowrap;
  }

  .brand-logo .logo-emblem {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .brand-logo .logo-emblem svg {
    width: 20px;
    height: 20px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  @media (min-width: 580px) {
    .nav-actions .btn-sm {
      display: inline-flex;
      padding: 0.45rem 0.85rem;
      font-size: 0.82rem;
    }
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    color: var(--brand-primary);
    transition: all var(--transition);
    flex-shrink: 0;
    cursor: pointer;
  }

  .mobile-menu-btn:hover,
  .mobile-menu-btn.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
  }

  /* Full Screen Blur Mobile Menu Drawer */
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    background: rgba(7, 25, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.75rem 1.25rem 3rem 1.25rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(194, 155, 56, 0.3);
    z-index: 9999;
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInDown 0.3s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #e4eee9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(194, 155, 56, 0.18);
    color: var(--brand-gold);
    border-color: rgba(194, 155, 56, 0.5);
    transform: translateX(4px);
  }

  .main-nav a.active::after {
    display: none;
  }

  /* Hero Section */
  .hero-dramatic {
    padding: 3.5rem 0 3rem 0;
  }

  .hero-title-dramatic {
    font-size: 2.35rem;
    line-height: 1.18;
  }

  .hero-lead-text {
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
  }

  .hero-pillars-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .pillar-divider {
    display: none;
  }

  .hero-media-main-card img {
    height: 280px;
  }

  .hero-poker-preview-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin-top: 1rem;
  }

  /* Grids & Cards */
  .concept-grid, 
  .menu-card-grid, 
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .section-title-wrap {
    margin-bottom: 2.25rem;
  }

  .section-title-wrap h2 {
    font-size: 1.9rem;
  }

  .section-title-wrap p {
    font-size: 1rem;
  }

  .concept-card {
    padding: 1.75rem 1.25rem;
  }

  .dish-card {
    padding: 1.5rem;
  }

  .form-card {
    padding: 1.5rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* Callout & Reservation Cards */
  .reservation-luxury-card {
    padding: 2.25rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .reservation-info h2 {
    font-size: 1.85rem;
  }

  .reservation-info p {
    font-size: 0.98rem;
  }

  .perk-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }

  /* Legal Pages */
  .legal-header {
    padding: 3rem 0 2rem 0 !important;
    margin-bottom: 2rem !important;
  }

  .legal-header h1 {
    font-size: 2.1rem !important;
  }

  .legal-content {
    padding: 1.75rem 1.15rem;
    border-radius: var(--radius-sm);
  }

  .legal-content h2 {
    font-size: 1.35rem;
    margin: 1.75rem 0 0.75rem 0;
  }

  .legal-content ul, .legal-content ol {
    margin-left: 1.15rem;
  }

  .legal-callout-box {
    padding: 1.15rem;
  }

  /* Footer */
  .site-footer {
    padding: 3.5rem 0 1.5rem 0 !important;
  }

  .footer-heading {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Modals & Banners */
  .age-modal-box {
    padding: 1.75rem 1.15rem;
    max-width: 95%;
  }

  .age-modal-box h2 {
    font-size: 1.6rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .toast-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
}

/* Small Smartphone Breakpoint (480px and below) */
@media (max-width: 480px) {
  .hero-title-dramatic {
    font-size: 1.95rem;
  }

  .hero-lead-text {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1.25rem;
  }

  .btn-sm {
    width: auto;
  }

  .brand-logo span.logo-title,
  .brand-logo span.logo-highlight {
    font-size: 1.15rem;
  }

  .faq-question {
    font-size: 1.02rem;
    padding: 1.1rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



