/* ============================================
   LevOne — QR Hub + Электронное меню
   Premium dark theme with gold accents
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --accent: #d4a843;
  --accent-light: #e0b94f;
  --accent-dark: #b8912e;
  --text-primary: #f5f0e8;
  --text-secondary: #c4c0b8;
  --text-muted: #8a8a8a;
  --overlay-dark: rgba(10, 10, 10, 0.7);
  --overlay-darker: rgba(10, 10, 10, 0.85);

  /* Typography */
  --font-heading: 'Linux Biolinum', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

/* --- Font Face --- */
@font-face {
  font-family: 'Linux Biolinum';
  src: url('../fonts/LinBiolinum_Rah.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Linux Biolinum';
  src: url('../fonts/LinBiolinum_RBah.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Linux Biolinum';
  src: url('../fonts/LinBiolinum_RIah.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--accent-light);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.25);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-primary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--accent);
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(212, 168, 67, 0.08);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-body {
  padding: var(--space-lg);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* --- Watermark Text --- */
.watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(212, 168, 67, 0.03);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.05em;
  will-change: transform;
}

/* --- Header (inner pages) --- */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, var(--bg-primary), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-header .logo {
  height: 36px;
  width: auto;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--duration-fast) var(--ease-out);
}

.back-btn:hover {
  color: var(--accent);
}

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

/* --- Page Content --- */
.page-content {
  padding-top: 80px;
  min-height: 100vh;
}

/* --- Search Input --- */
.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: var(--accent);
}

.search-wrapper {
  position: relative;
}

.search-wrapper svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

/* --- Category Tabs --- */
.tabs {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-sm) 0;
}

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

.tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-out);
}

.tab:hover {
  color: var(--text-primary);
  border-color: rgba(212, 168, 67, 0.2);
}

.tab.active {
  color: var(--bg-primary);
  background: var(--accent);
  border-color: var(--accent);
}

/* --- Sticky Tabs Bar --- */
.tabs-bar {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--bg-primary);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* --- Progress Bar (KBZHU) --- */
.progress-bar {
  height: 6px;
  background: var(--bg-card);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width var(--duration-slow) var(--ease-out);
}

.progress-fill.calories { background: var(--accent); }
.progress-fill.protein  { background: #5cb85c; }
.progress-fill.fat      { background: #f0ad4e; }
.progress-fill.carbs    { background: #5bc0de; }

/* --- Allergen Icons --- */
.allergen-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.allergen-badge.active {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
  background: rgba(255, 107, 107, 0.08);
}

.allergen-badge svg {
  width: 14px;
  height: 14px;
}

/* --- Animations (initial states for GSAP) --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.fade-in {
  opacity: 0;
  will-change: opacity;
}

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  will-change: transform, opacity;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  will-change: transform, opacity;
}

/* ============================================
   QR HUB — Horizontal Scroll Styles
   ============================================ */

/* Hub wrapper: pinned for horizontal scroll */
.hub-wrapper {
  overflow: hidden;
  background: transparent;
}

.hub-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.hub-section {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl);
  background: transparent;
}

.hub-section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Welcome section */
.section-welcome {
  background: transparent;
}

.section-welcome .logo-main {
  max-width: 320px;
  margin-bottom: var(--space-xl);
  mix-blend-mode: lighten;
}

.swipe-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: swipePulse 2s ease-in-out infinite;
  z-index: 10;
}

.swipe-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes swipePulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SWIPE HINT — interactive gesture demo
   ============================================ */
.swipe-hint {
  display: flex;
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.swipe-hint.is-visible {
  opacity: 1;
}

.swipe-hint-phone {
  position: relative;
  padding: 6px;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.swipe-hint-track {
  position: relative;
  width: 48px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(212, 168, 67, 0.02) 0%,
    rgba(212, 168, 67, 0.08) 50%,
    rgba(212, 168, 67, 0.02) 100%);
}

.swipe-hint-trail {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 2px;
  height: 0;
  margin-left: -1px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
}

.swipe-hint-finger {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.55));
  will-change: transform, opacity;
}

.swipe-hint-finger svg {
  width: 100%;
  height: 100%;
}

.swipe-hint-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.swipe-hint-label svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* The animated demo replaces the old pulse indicator everywhere */
.swipe-indicator { display: none !important; }

/* Mobile: lift the hint clear of the page-indicator dots */
@media (max-width: 768px) {
  .swipe-hint {
    bottom: calc(14rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .swipe-hint-finger,
  .swipe-hint-trail {
    transition: none !important;
    animation: none !important;
  }
}

/* Navigation dots */
.hub-nav {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.hub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.hub-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Progress line (GPU — scaleX instead of width) */
.hub-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* Section backgrounds with photo overlay */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-darker);
}

/* Menu section cards */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  width: 100%;
  max-width: 800px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  color: var(--text-primary);
}

.menu-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 168, 67, 0.12);
  color: var(--text-primary);
}

.menu-card svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.menu-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Delivery card dropdown */
.menu-card-delivery {
  cursor: pointer;
  position: relative;
}

.delivery-dropdown {
  position: fixed;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.delivery-dropdown.is-open,
.social-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.social-dropdown {
  position: fixed;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.social-card-dropdown {
  cursor: pointer;
}

.delivery-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
}

.delivery-backdrop.is-open {
  display: block;
}

.delivery-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.8rem;
  transition: background 0.2s ease;
}

.delivery-link:hover {
  background: rgba(212, 168, 67, 0.1);
}

.delivery-badge {
  font-size: 0.65rem;
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: 0.03em;
}

/* Venues section */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  width: 100%;
}

.venue-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.08);
  transition: all var(--duration-normal) var(--ease-out);
}

.venue-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.venue-card .venue-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-secondary);
}

.venue-card .venue-info {
  padding: var(--space-md) var(--space-lg);
}

.venue-card .venue-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

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

.venue-card .venue-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--accent);
}

/* Desserts section */
.dessert-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  width: 100%;
}

.dessert-grid {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.dessert-thumb {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
}

.dessert-thumb:hover {
  border-color: var(--accent);
  transform: scale(1.05);
}

/* Social section */
.social-links {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--duration-normal) var(--ease-out);
  min-width: 200px;
}

.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.1);
  color: var(--text-primary);
}

.social-card svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.social-card .social-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.social-card .social-name {
  font-weight: 500;
  font-size: 1rem;
}

.social-card .social-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  width: 100%;
  max-width: 600px;
}

.contact-item {
  text-align: center;
}

.contact-item .contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.contact-item .contact-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-item a {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 500;
}

/* ============================================
   Responsive
   ============================================ */

/* Mobile */
@media (max-width: 768px) {
  .hub-section {
    padding: var(--space-lg) var(--space-md);
  }

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    gap: var(--space-sm);
  }

  .menu-card {
    padding: var(--space-md) var(--space-sm);
  }

  .menu-card svg {
    width: 28px;
    height: 28px;
  }

  .hub-section[data-section="venues"] {
    padding-top: 1rem;
    align-items: flex-start;
    padding-bottom: 3.5rem;
  }

  .venues-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 0.4rem;
  }

  .venue-card .venue-photo {
    aspect-ratio: 3 / 1;
  }

  .venue-card .venue-info {
    padding: 0.4rem 0.75rem 0.5rem;
  }

  .venue-card .venue-name {
    font-size: 0.9rem;
    margin-bottom: 1px;
  }

  .venue-card .venue-address {
    font-size: 0.65rem;
  }

  .venue-card .venue-phone {
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }

  .venue-card #bookingBtn {
    padding: 0.25rem 0.7rem;
    font-size: 0.65rem;
    margin-top: 0.25rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .social-card {
    flex-direction: row;
    padding: var(--space-md) var(--space-lg);
    min-width: 260px;
  }

  .social-card svg {
    width: 32px;
    height: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-md);
    max-width: 100%;
  }

  .contact-item .contact-value {
    font-size: 1rem;
  }

  .contact-item a {
    font-size: 0.95rem;
    word-break: keep-all;
  }

  .dessert-thumb {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hub-nav {
    bottom: 2.2rem;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .venues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .hub-section-inner {
    max-width: 1100px;
  }
}
