/* ==========================================================================
   RANČ PRI ŽILINE - ULTRA CLEAN & LUXURY STYLESHEET (GENEROUS SPACING)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-cream: #fbf9f4;
  --bg-cream-darker: #f3efe6;
  --bg-surface: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.96);
  
  --primary-brown: #5c3d2e;
  --primary-brown-hover: #482f23;
  --saddle-brown: #8b5e34;
  --saddle-brown-light: #ab7847;
  --gold-accent: #c68a4c;
  --gold-accent-hover: #b3793d;
  
  --text-dark: #2b2118;
  --text-muted: #6e6154;
  --text-light: #9e8f80;
  
  --border-light: #e8e2d4;
  --border-focus: #c68a4c;
  
  --success: #2d8a54;
  --danger: #d94343;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 12px rgba(43, 33, 24, 0.05);
  --shadow-md: 0 8px 24px rgba(43, 33, 24, 0.09);
  --shadow-lg: 0 16px 40px rgba(43, 33, 24, 0.14);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Floating Paw Background Animations */
.paw-bg-wrapper {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-paw {
  position: absolute;
  color: rgba(139, 94, 52, 0.05);
  animation: floatPaw 12s infinite ease-in-out;
}

@keyframes floatPaw {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.5; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* Micro Animations */
.btn-click-effect {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-click-effect:active {
  transform: scale(0.95) !important;
}

.hover-tilt {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-tilt:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.animate-pulse-slow {
  animation: pulseSlow 3s infinite alternate ease-in-out;
}

@keyframes pulseSlow {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.animate-bounce-subtle {
  animation: bounceSubtle 2.5s infinite alternate ease-in-out;
}

@keyframes bounceSubtle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-cream-darker);
}

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

.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.full-width { width: 100%; }

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

h1 { font-size: 3.25rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 660px;
  margin: 0 auto;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background-color: rgba(139, 94, 52, 0.1);
  color: var(--saddle-brown);
  border: 1px solid rgba(139, 94, 52, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pill.center {
  margin: 0 auto;
}

.badge-pill svg {
  width: 16px;
  height: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-primary {
  background-color: var(--primary-brown);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-brown-hover);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--gold-accent);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--gold-accent-hover);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary-brown);
  color: #ffffff;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background-color: var(--primary-brown);
  color: #f7f3ec;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-accent);
}

.top-bar-item.contact-link a {
  color: var(--gold-accent);
  font-weight: 700;
  text-decoration: none;
}

/* --- HEADER / NAVIGATION (GENEROUS SPACING, NO UNDERLINES, PILL TABS) --- */
.main-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);
  box-shadow: 0 2px 16px rgba(92, 61, 46, 0.06);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 1.5rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-brown);
  color: var(--gold-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-brown);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--saddle-brown);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop Nav (Generous Spacing between 7 core links) */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none !important;
  border-bottom: none !important;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-link::after {
  display: none !important;
  content: none !important;
}

.nav-link:hover {
  background-color: var(--bg-cream-darker);
  color: var(--saddle-brown);
  text-decoration: none !important;
}

.nav-link.active {
  background-color: var(--primary-brown);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.cart-trigger-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  color: var(--primary-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-trigger-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--gold-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.92rem;
}

.mobile-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  color: var(--primary-brown);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

/* --- FULLSCREEN MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--bg-cream);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  overflow-y: auto;
  padding: 1.25rem;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  color: var(--primary-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-brown);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  text-decoration: none;
}

.mobile-link svg {
  width: 20px;
  height: 20px;
  color: var(--gold-accent);
}

.mobile-menu-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.info-card-mini {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-card-mini svg {
  width: 20px;
  height: 20px;
  color: var(--saddle-brown);
}

.info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.info-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-brown);
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 4rem 0 5rem;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.75rem;
  margin: 1rem 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.25rem 1.75rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-light);
}

/* Visual Collage Layout */
.hero-visual-collage {
  position: relative;
  height: 480px;
}

.hero-lightbox-trigger {
  cursor: pointer;
}

.collage-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-surface);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(43, 33, 24, 0.88) 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.85rem;
}

.card-caption svg {
  width: 16px;
  height: 16px;
  color: var(--gold-accent);
}

.zoom-icon {
  opacity: 0.8;
}

.card-main {
  top: 0;
  left: 0;
  width: 65%;
  height: 80%;
  z-index: 2;
}

.card-top-right {
  top: 0;
  right: 0;
  width: 42%;
  height: 46%;
  z-index: 3;
}

.card-bottom-right {
  bottom: 10px;
  right: 15px;
  width: 48%;
  height: 48%;
  z-index: 4;
}

.floating-paw-badge {
  position: absolute;
  bottom: -15px;
  left: 20px;
  z-index: 5;
  background-color: var(--primary-brown);
  color: var(--gold-accent);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 2px solid var(--gold-accent);
}

.floating-paw-badge svg {
  width: 20px;
  height: 20px;
}

.floating-paw-badge .badge-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.animate-float {
  animation: float 4s infinite ease-in-out;
}

/* --- OVERVIEW FEATURE GRID --- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.overview-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.overview-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.overview-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.overview-card:hover .overview-img-wrapper img {
  transform: scale(1.08);
}

.overview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-brown);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.overview-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
}

.overview-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.overview-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* --- FOOD MENU SECTION --- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-tab-btn svg {
  width: 16px;
  height: 16px;
}

.menu-tab-btn:hover, .menu-tab-btn.active {
  background-color: var(--saddle-brown);
  color: #ffffff;
  border-color: var(--saddle-brown);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.menu-item-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-brown);
}

.item-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--saddle-brown);
}

.item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-light);
}

.item-weight {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.restaurant-footer-banner {
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--saddle-brown) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.banner-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-accent);
}

.banner-content h3 {
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.banner-content p {
  color: #f3efe6;
  font-size: 0.95rem;
}

/* --- ZOO SECTION WITH INTERACTIVE REACTION CARDS --- */
.zoo-pricing-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pricing-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-card.highlight {
  border: 2px solid var(--gold-accent);
  background: linear-gradient(180deg, var(--bg-surface) 0%, #fffdf9 100%);
}

.best-value-badge {
  position: absolute;
  top: -12px;
  background-color: var(--gold-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.price-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-brown);
}

.price-age {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--saddle-brown);
  margin: 1rem 0;
}

.price-amount.free {
  color: var(--success);
}

.free-badge {
  background-color: rgba(45, 138, 84, 0.1);
  color: var(--success);
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.animal-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.animal-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.animal-tab.active {
  background-color: var(--primary-brown);
  color: #ffffff;
  border-color: var(--primary-brown);
}

.animals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.animal-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
}

.animal-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.animal-reaction-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--gold-accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.animal-card:hover .animal-reaction-badge, .animal-card.clicked .animal-reaction-badge {
  opacity: 1;
  transform: translateY(0);
}

.animal-body {
  padding: 1.25rem;
}

.animal-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-brown);
  margin-bottom: 0.35rem;
}

.animal-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- HOPLANDIA & RELAX --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.activity-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.activity-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.activity-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-brown);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.activity-tag svg {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
}

.activity-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.activity-body h3 {
  margin-bottom: 0.75rem;
}

.activity-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.activity-prices {
  background-color: var(--bg-cream-darker);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.p-rate {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.activity-features-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary-brown);
  font-weight: 600;
}

.activity-features-mini svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  margin-right: 4px;
}

/* --- GALLERY GRID (30+ PHOTOS) --- */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.gallery-tab.active {
  background-color: var(--saddle-brown);
  color: #ffffff;
  border-color: var(--saddle-brown);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43, 33, 24, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- CONTACT & MAP (PC EQUAL HEIGHT LAYOUT) --- */
.equal-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-info-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-card-header h3 {
  margin-bottom: 0.25rem;
}

.contact-card-header .subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.c-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background-color: var(--bg-cream-darker);
  color: var(--saddle-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon svg {
  width: 20px;
  height: 20px;
}

.c-text {
  display: flex;
  flex-direction: column;
}

.c-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.c-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-brown);
}

.c-value.phone-val {
  font-size: 1.2rem;
  color: var(--saddle-brown);
  text-decoration: none;
}

.c-sub {
  font-size: 0.8rem;
  color: var(--text-light);
}

.map-embed-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  min-height: 480px;
  height: 100%;
}

.map-embed-card iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
}

/* --- CART & MODALS --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(43, 33, 24, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.cart-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background-color: var(--bg-surface);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-brown);
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.cart-drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-brown);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-cream-darker);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--primary-brown);
}

.cart-total-row strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--saddle-brown);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background-color: rgba(43, 33, 24, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-brown);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-cream);
  outline: none;
}

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

/* Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background-color: rgba(15, 10, 5, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
}

/* FOOTER */
.main-footer {
  background-color: var(--primary-brown);
  color: #f7f3ec;
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-desc {
  color: #d1c7bc;
  font-size: 0.9rem;
  margin: 1.25rem 0 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-heading {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

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

.footer-links a {
  color: #d1c7bc;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-hours li {
  display: flex;
  flex-direction: column;
}

.footer-hours li.notice {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #d1c7bc;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.footer-address, .footer-phone {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #d1c7bc;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  background-color: #40291e;
  font-size: 0.85rem;
  color: #a89a8c;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1280px) {
  .desktop-nav {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem;
  }
}

@media (max-width: 1080px) {
  .desktop-only { display: none !important; }
  .top-bar { display: none; }
  
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual-collage {
    height: 380px;
  }
  
  .equal-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .map-embed-card {
    min-height: 380px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-toggle-btn { display: flex; }
  
  .header-container {
    height: 64px;
  }

  .brand-subtitle { display: none; }
  .brand-title { font-size: 1.15rem; }

  .section-padding {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
  }

  .stat-divider { display: none; }

  .hero-visual-collage {
    height: 300px;
  }

  .collage-card {
    border-width: 2px;
  }

  .overview-grid, .activities-grid, .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .overview-img-wrapper {
    height: 170px;
  }

  .restaurant-footer-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .zoo-pricing-box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }

  .price-amount {
    font-size: 2.25rem;
    margin: 0.5rem 0;
  }

  .animals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .animal-img {
    height: 140px;
  }

  .animal-body {
    padding: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .gallery-item {
    height: 140px;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .map-embed-card {
    min-height: 320px;
  }

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

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