/* ============================================
   Chillax Party Platform — Design System
   ============================================ */

:root {
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-text: #1d1d1f;
  --color-text-secondary: #6e6e73;
  --color-text-muted: #86868b;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-accent: #7c3aed;
  --color-accent-light: #a78bfa;
  --color-accent-dark: #5b21b6;
  --color-neon: #06b6d4;
  --color-neon-pink: #ec4899;
  --color-success: #25d366;
  --color-gold: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --header-height: 64px;
  --max-width: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo--brand .logo-icon {
  height: 52px;
  flex-shrink: 0;
}

.logo--brand .logo-icon img {
  height: 52px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.logo-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.logo--footer .logo-icon {
  height: 48px;
}

.logo--footer .logo-icon img {
  height: 48px;
  max-width: 68px;
}

.logo--footer .logo-title {
  font-size: 1rem;
  -webkit-text-fill-color: white;
  color: white;
  background: none;
}

.logo--footer .logo-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.logo-icon {
  width: auto;
  height: 40px;
  border-radius: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo--image .logo-icon {
  height: 48px;
}

.logo--image .logo-icon img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand .logo--image .logo-icon {
  height: 44px;
  margin-bottom: 12px;
}

.footer-brand .logo--image .logo-icon img {
  height: 44px;
  max-width: 160px;
  opacity: 0.95;
}

.footer-brand .logo.logo--brand {
  align-items: center;
}

.logo-icon-fallback {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-neon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
}

.logo-text span {
  background: linear-gradient(135deg, var(--color-accent), var(--color-neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-main a {
  padding: 8px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.04);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 50px 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6, 182, 212, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 20% 30%, rgba(236, 72, 153, 0.06), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: inherit;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

.btn-whatsapp {
  background: var(--color-success);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

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

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ---- Category Tabs ---- */
.category-section {
  padding: 0 0 48px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-tab {
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.category-tab:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--color-accent);
}

.category-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* ---- Venue Grid ---- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.venue-card.featured-large {
  grid-column: span 2;
  grid-row: span 2;
}

.venue-card.featured-large .venue-card-image {
  aspect-ratio: 16/11;
}

.venue-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e0f0, #d4ecf7);
}

.venue-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.venue-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-own {
  background: linear-gradient(135deg, var(--color-accent), var(--color-neon-pink));
  color: white;
}

.badge-best {
  background: var(--color-gold);
  color: white;
}

.badge-district {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  backdrop-filter: blur(8px);
}

.venue-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-card.featured-large .venue-card-body {
  padding: 20px 24px 24px;
}

.venue-card-location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.venue-card-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.venue-card.featured-large .venue-card-name {
  font-size: 1.35rem;
}

.venue-card-highlight {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.venue-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: auto;
}

.venue-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.venue-card-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* ---- Features Section (GG Party style) ---- */
.features-section {
  padding: 56px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.features-section--inline {
  padding: 56px 0 0;
  background: transparent;
  border: none;
  margin-top: 48px;
}

.features-heading {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
}

.feature-card {
  text-align: center;
  padding: 0;
}

.feature-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon img {
  transform: scale(1.06);
}

.feature-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.76rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ---- CTA Panel (compact style) ---- */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  margin: 48px auto 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cta-panel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  transition: background var(--transition);
}

.cta-panel-item:first-child {
  border-right: 1.5px solid var(--color-border);
}

.cta-panel-item:hover {
  background: rgba(124, 58, 237, 0.03);
}

.cta-panel-item:last-child:hover {
  background: rgba(37, 211, 102, 0.04);
}

.cta-panel-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  object-fit: contain;
}

.cta-panel-body {
  flex: 1;
  min-width: 0;
}

.cta-panel-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
}

.cta-panel-body p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.cta-panel-btn {
  display: inline-block;
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.cta-panel-btn--primary {
  background: #1e3a5f;
}

.cta-panel-btn--whatsapp {
  background: #6b8e23;
}

.cta-panel-item:hover .cta-panel-btn--primary {
  background: #162d4a;
}

.cta-panel-item:hover .cta-panel-btn--whatsapp {
  background: #5a781d;
}

/* ---- Category tabs (venue page links) ---- */
.category-tabs-bar {
  padding: 12px 0 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.category-tabs-bar .category-tabs {
  margin-bottom: 0;
  padding-bottom: 16px;
}

.category-tab-link {
  display: inline-flex;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  transition: all var(--transition);
}

.category-tab-link:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--color-accent);
}

.category-tab-link.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

/* ---- Booking Form Section ---- */
.booking-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #f0ecfa 100%);
}

.booking-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.booking-card h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-card .subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---- Venue Detail Page (Party Romantic style) ---- */
.venue-page {
  padding-bottom: 80px;
}

.venue-page .breadcrumb {
  padding-top: 8px;
  padding-bottom: 4px;
}

.venue-product {
  padding: 8px 0 40px;
}

.venue-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 38fr);
  gap: 32px;
  align-items: start;
}

.product-gallery,
.venue-info-panel {
  min-width: 0;
}

/* Product Gallery */
.product-gallery {
  position: relative;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

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

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--transition), border-color var(--transition);
  padding: 0;
  background: none;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--color-accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

/* Info Tabs */
.venue-info-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.venue-info-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.venue-info-tab {
  flex: 1;
  padding: 14px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition), border-color var(--transition);
}

.venue-info-tab:hover {
  color: var(--color-accent);
}

.venue-info-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: var(--color-surface);
}

.venue-info-content {
  padding: 24px;
  min-height: 280px;
}

.venue-info-pane {
  display: none;
}

.venue-info-pane.active {
  display: block;
}

.venue-info-pane .pricing-block {
  margin-bottom: 16px;
  padding: 0;
  border: none;
  background: transparent;
}

.venue-info-pane .pricing-block:last-child {
  margin-bottom: 0;
}

.address-list {
  list-style: none;
}

.address-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.address-list li:last-child { border-bottom: none; }

.address-list .label {
  font-weight: 700;
  min-width: 56px;
  color: var(--color-accent-dark);
  flex-shrink: 0;
}

/* Venue booking row */
.venue-booking-row {
  padding: 0 0 48px;
}

.venue-booking-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.venue-booking-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.venue-booking-card .subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.venue-booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.venue-booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.venue-booking-actions .btn {
  flex: 1;
}

/* Related venues */
.related-venues {
  padding: 48px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.related-venues h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

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

.related-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.related-card-body {
  padding: 12px 14px;
}

.related-card-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.related-card-body p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Venue story — Amber Club style highlights */
.venue-story {
  padding: 0 0 20px;
}

.venue-story-hero {
  background: linear-gradient(135deg, #3d2b2b 0%, #4a3535 100%);
  color: white;
  text-align: center;
  padding: 40px 32px 48px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.venue-story-name {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.venue-story-headline {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.venue-story-intro {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto;
}

.venue-story-body {
  background: #f5f3f0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 8px 0;
  margin-top: -8px;
}

.venue-feature-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: start;
}

.venue-feature-row:last-child {
  border-bottom: none;
}

.venue-feature-title h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  color: var(--color-text);
}

.venue-feature-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

.venue-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.venue-feature-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.venue-feature-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-text);
}

/* Legacy venue-about (unused) */
.venue-about {
  padding: 48px 0 0;
}

.venue-about h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.venue-about .venue-description {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.venue-about h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 28px 0 10px;
}

.venue-info-pane[data-pane="facilities"] {
  background: #faf7f4;
  margin: -24px;
  padding: 24px;
}

.facilities-panel-header {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

/* Legacy - facility grid in venue tabs (flat icon style) */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 4px;
}

.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 2px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.facility-icon {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: none;
  border: none;
  border-radius: 0;
  font-size: inherit;
}

.facility-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.facility-name {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text-secondary);
}

.pricing-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-accent-dark);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pricing-table th,
.pricing-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
  font-weight: 600;
  color: var(--color-text-secondary);
  font-size: 0.78rem;
}

.pricing-notes {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.pricing-notes li {
  padding: 2px 0 2px 16px;
  position: relative;
}

.pricing-notes li::before {
  content: "·";
  position: absolute;
  left: 4px;
}

.breadcrumb {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 8px; }

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.info-list li:last-child { border-bottom: none; }

.info-list .label {
  font-weight: 600;
  min-width: 70px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.venue-description {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ---- Content Pages ---- */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 0 0 80px;
}

.content-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.content-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.content-card p {
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.content-card p:last-child { margin-bottom: 0; }

/* ---- Contact Page ---- */
.page-hero--compact {
  padding: 48px 0 24px;
}

.contact-channels {
  padding: 8px 0 48px;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-channel-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-channel-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.contact-channel-icon img {
  width: 72px;
  height: 72px;
}

.contact-channel-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-channel-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
  word-break: break-word;
}

.contact-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: #03b86f;
  transition: background var(--transition), transform var(--transition);
}

.contact-channel-btn:hover {
  background: #029a5e;
  color: white;
}

.contact-channel-btn--email {
  background: #ff485f;
}

.contact-channel-btn--email:hover {
  background: #e63d52;
}

.contact-channel-btn--whatsapp {
  background: #49e670;
}

.contact-channel-btn--whatsapp:hover {
  background: #3dd162;
}

.contact-form-section {
  padding: 0 0 80px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-intro h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form-intro > p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.contact-form-intro > p:last-of-type {
  margin-bottom: 20px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
}

.contact-map-frame {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 24px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.contact-info-list a {
  color: var(--color-accent);
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-hours {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.contact-hours h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.contact-hours p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.contact-form-card {
  max-width: none;
  margin: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-visual {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-item:hover .service-visual img {
  transform: scale(1.04);
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 20px 24px 0;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 0 24px 24px;
  line-height: 1.65;
}

.service-icon {
  display: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg);
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-style: normal;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-venue {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Membership */
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.membership-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.membership-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.membership-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.membership-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.membership-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.membership-features {
  text-align: left;
  margin-bottom: 24px;
}

.membership-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding-left: 24px;
  position: relative;
}

.membership-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ---- Footer ---- */
.site-footer {
  background: #1d1d1f;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.footer-contact-link img {
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ---- Floating WhatsApp ---- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
  padding: 0;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}

/* ---- SEO Content Block ---- */
.seo-content {
  padding: 60px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.seo-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.seo-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 8px;
}

.seo-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-card.featured-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .venue-product-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav-main.open { display: flex; }

  .nav-main a {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-toggle { display: block; }

  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .venue-card.featured-large {
    grid-column: span 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 28px 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel-item {
    padding: 22px 18px;
    gap: 10px;
  }

  .cta-panel-item:first-child {
    border-right: none;
    border-bottom: 1.5px solid var(--color-border);
  }

  .cta-panel-icon {
    width: 72px;
    height: 72px;
  }

  .cta-panel-body h3 {
    font-size: 1.05rem;
  }

  .cta-panel-body p {
    font-size: 0.86rem;
    margin-bottom: 10px;
  }

  .category-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 28px;
    gap: 5px;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tab {
    flex-shrink: 0;
    padding: 7px 13px;
    font-size: 0.78rem;
  }

  .category-tabs-bar .category-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 5px;
  }

  .category-tabs-bar .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tab-link {
    flex-shrink: 0;
    padding: 7px 13px;
    font-size: 0.78rem;
  }

  .venue-booking-form-grid {
    grid-template-columns: 1fr;
  }

  .venue-booking-actions {
    flex-direction: column;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-feature-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .venue-feature-title h3 {
    text-align: left;
    font-size: 1rem;
  }

  .venue-story-hero {
    padding: 32px 20px 40px;
  }

  .venue-booking-card {
    padding: 28px 20px;
  }

  .contact-channels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-channel-card {
    padding: 28px 20px 24px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-map-frame {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .site-header .logo--brand {
    gap: 8px;
  }

  .site-header .logo--brand .logo-icon {
    height: 44px;
  }

  .site-header .logo--brand .logo-icon img {
    height: 44px;
    max-width: 44px;
  }

  .site-header .logo-title {
    font-size: 0.92rem;
  }

  .site-header .logo-subtitle {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .venue-card.featured-large {
    grid-column: span 1;
  }

  .category-tabs {
    gap: 4px;
  }

  .category-tab {
    padding: 6px 11px;
    font-size: 0.74rem;
  }

  .category-tab-link {
    padding: 6px 11px;
    font-size: 0.74rem;
  }
}
