/* ==========================================================================
   RANČ PRI ŽILINE - EKOPARK PIEŠŤANY INSPIRED LUXURY NATURE THEME
   Location: Oškerda / Brodno pri Žiline
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* --- Design Tokens & CSS Variables --- */
:root {
  /* Ekopark Piešťany Green & Nature Color Palette */
  --color-primary-dark: #0b4d26;       /* Deep Forest Green - Header & Footer */
  --color-primary: #125e31;            /* Rich Emerald Green */
  --color-primary-light: #1b7a42;      /* Medium Leaf Green */
  
  /* Signature Quick Info Cards & Accent Colors */
  --color-eco-green: #48bb37;          /* Bright Fresh Leaf Green (Card 1 & 3) */
  --color-eco-green-dark: #329624;
  --color-sun-orange: #f59e0b;         /* Warm Sun Orange (Card 2 & CTA) */
  --color-sun-orange-hover: #ea580c;
  --color-sun-orange-light: #fef3c7;
  
  --color-accent-gold: #fbbf24;
  --color-accent-blue: #0284c7;

  /* Surfaces & Backgrounds */
  --bg-page: #f8faf5;
  --bg-section-alt: #f0f5ec;
  --bg-card: #ffffff;
  --bg-card-hover: #fafdf8;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --bg-dark-glass: rgba(11, 77, 38, 0.95);

  /* Typography */
  --text-main: #162a1c;
  --text-muted: #556b5c;
  --text-light: #839a8a;
  --text-white: #ffffff;

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

  /* Borders & Shadows */
  --border-subtle: #e2ebe0;
  --border-medium: #c8dac4;
  --border-focus: #48bb37;

  --shadow-xs: 0 2px 6px rgba(11, 77, 38, 0.05);
  --shadow-sm: 0 4px 14px rgba(11, 77, 38, 0.08);
  --shadow-md: 0 10px 28px rgba(11, 77, 38, 0.12);
  --shadow-lg: 0 20px 45px rgba(11, 77, 38, 0.16);
  --shadow-glow-orange: 0 8px 25px rgba(245, 158, 11, 0.35);
  --shadow-glow-green: 0 8px 25px rgba(72, 187, 55, 0.35);

  /* Radii & Transitions */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

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

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

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

.bg-alt {
  background-color: var(--bg-section-alt);
}

.bg-white {
  background-color: var(--bg-card);
}

/* Section Header Typography */
.section-header {
  margin-bottom: 3rem;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background-color: rgba(72, 187, 55, 0.12);
  color: var(--color-primary-dark);
  border: 1px solid rgba(72, 187, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-tag.center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

.section-subtitle.center {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-orange {
  background-color: var(--color-sun-orange);
  color: #ffffff;
  box-shadow: var(--shadow-glow-orange);
}

.btn-orange:hover {
  background-color: var(--color-sun-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.45);
}

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

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

.btn-outline-white {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
}

.btn-outline-green:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-pill-light {
  background: #f1f8ed;
  color: var(--color-primary-dark);
  border: 1px solid var(--border-medium);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
}

.btn-pill-light:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  border-color: var(--color-primary-dark);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   SITE HEADER - EKOPARK STYLE WITH REAL LOGO
   ========================================================================== */
.site-header {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Brand Logo (Real Ranch Logo - Enlarged & Crisp) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 82px;
  max-height: 88px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Search Bar */
.header-search-wrap {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.header-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem 0.65rem 2.75rem;
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-search-input:focus {
  background: rgba(255, 255, 255, 0.24);
  border-color: var(--color-sun-orange);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.header-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

/* Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.util-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.util-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-sun-orange);
  color: #ffffff;
  transform: translateY(-1px);
}

.util-phone-btn {
  background-color: var(--color-sun-orange);
  border-color: var(--color-sun-orange);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.util-phone-btn:hover {
  background-color: var(--color-sun-orange-hover);
  border-color: var(--color-sun-orange-hover);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.45);
}

.util-icon-circle {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.util-phone-btn .util-icon-circle {
  background: rgba(0, 0, 0, 0.18);
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  user-select: none;
}

.lang-flag-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.lang-flag-circle svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Links */
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0;
  overflow-x: auto;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.nav-item {
  color: #f1f8ed;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.35rem 0.2rem;
  position: relative;
}

.nav-item:hover, .nav-item.active {
  color: var(--color-accent-gold);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: width var(--transition-fast);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION - EKOPARK 1:1 REPLICA
   ========================================================================== */
.hero-ekopark-section {
  position: relative;
  background-color: #062b14;
  background-image: linear-gradient(to right, rgba(6, 43, 20, 0.92) 0%, rgba(6, 43, 20, 0.65) 45%, rgba(6, 43, 20, 0.2) 100%), url('fotky/FB_IMG_1752598031498.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 5.5rem 0 7rem 0;
  color: #ffffff;
  overflow: visible;
}

.hero-main-layout {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-main-title {
  font-size: clamp(2.4rem, 5.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-main-subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: #e2f2e0;
  line-height: 1.5;
  margin-bottom: 2.25rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-cta-btn {
  font-size: 1.1rem;
  padding: 0.95rem 2.5rem;
  font-weight: 800;
}

/* 3 Floating Quick Cards */
.hero-floating-cards-wrap {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 2.5rem;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quick-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.65rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

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

.quick-card-green {
  background-color: var(--color-eco-green);
  background-image: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
}

.quick-card-orange {
  background-color: var(--color-sun-orange);
  background-image: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
}

.quick-card::after {
  content: '';
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 110px;
  height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.18)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.quick-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-card-green .quick-card-icon {
  background-color: var(--color-primary-dark);
  color: #ffffff;
}

.quick-card-orange .quick-card-icon {
  background-color: #9a3412;
  color: #ffffff;
}

.quick-card-icon svg {
  width: 26px;
  height: 26px;
}

.quick-card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.quick-card-label {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.quick-card-value {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-wavy-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.hero-wavy-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 55px;
  fill: var(--bg-page);
}

/* ==========================================================================
   EVENTS SECTION ("Najbližšie udalosti")
   ========================================================================== */
.events-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.events-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.events-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

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

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.event-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}

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

.event-card:hover .event-card-media img {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 77, 38, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.event-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.event-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* ==========================================================================
   OVERVIEW GRID ("O Ranči & Čo u nás nájdete")
   ========================================================================== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-eco-green);
}

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

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

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

.overview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 77, 38, 0.9);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(4px);
}

.overview-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.overview-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.6rem;
}

.overview-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   VIEW BANNER & BREADCRUMB (For Sub-pages / Dedicated Views)
   ========================================================================== */
.view-breadcrumb-bar {
  background: var(--bg-section-alt);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.back-to-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.back-to-home-link:hover {
  color: var(--color-sun-orange-hover);
}

/* ==========================================================================
   ZOO & ANIMALS VIEW
   ========================================================================== */
.zoo-pricing-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.pricing-card.highlight {
  border: 2px solid var(--color-sun-orange);
  background: linear-gradient(180deg, #ffffff 0%, var(--color-sun-orange-light) 100%);
  position: relative;
}

.best-value-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-sun-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

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

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

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0.5rem 0;
}

.free-badge {
  display: inline-block;
  background: var(--color-eco-green);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

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

.animal-tab {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.animal-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.animal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-eco-green);
}

.animal-card-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #e2ebe0;
}

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

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

.animal-card-badge {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  background: rgba(11, 77, 38, 0.88);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.animal-card-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.animal-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.animal-card-reaction {
  font-size: 0.85rem;
  color: var(--color-sun-orange-hover);
  font-weight: 700;
  margin-top: auto;
}

/* ==========================================================================
   RESTAURANT & MENU VIEW
   ========================================================================== */
.menu-tabs-wrapper {
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.menu-tabs {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

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

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

.menu-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.menu-item-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-sun-orange-hover);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-weight {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

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

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

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

.activity-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 77, 38, 0.9);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.activity-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.6rem;
}

.activity-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.activity-features-mini {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-main);
}

.activity-features-mini span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.activity-features-mini svg {
  color: var(--color-eco-green);
}

/* ==========================================================================
   MILITARY VEHICLES VIEW
   ========================================================================== */
.military-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.military-img-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
}

.military-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   GALLERY & REVIEWS
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 77, 38, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #ffffff;
}

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

.gallery-caption {
  font-size: 0.9rem;
  font-weight: 700;
}

.video-feature-card {
  margin-top: 3rem;
  background: var(--color-primary-dark);
  color: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.video-container {
  position: relative;
  background: #000;
  min-height: 320px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.review-stars {
  color: var(--color-sun-orange);
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  background: var(--color-primary-light);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.review-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT & MAP
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-card-box {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.contact-form-group {
  margin-bottom: 1.15rem;
}

.contact-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.contact-form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.contact-form-control:focus {
  border-color: var(--color-eco-green);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(72, 187, 55, 0.18);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 380px;
  width: 100%;
  position: relative;
  background: #e2e8f0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #e2f2e0;
  padding: 4rem 0 2rem 0;
  border-top: 3px solid var(--color-eco-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--color-sun-orange);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  color: #cbe6c9;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-sun-orange);
  padding-left: 4px;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--color-sun-orange);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   MODAL POPUP
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.is-active {
  display: flex;
}

.modal-dialog {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.9) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.08);
}

.star-pick {
  transition: transform 0.15s ease, color 0.15s ease;
  display: inline-block;
}

.star-pick:hover {
  transform: scale(1.25);
}

/* ==========================================================================
   RESTAURANT TABLE RESERVATION BANNER (Responsive Fix)
   ========================================================================== */
.resto-reservation-banner {
  margin-top: 2.5rem;
  background: var(--color-primary-dark);
  color: #ffffff;
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.resto-reservation-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(72, 187, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.resto-reservation-content {
  flex: 1 1 320px;
  min-width: 0;
}

.resto-reservation-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #ffffff;
  line-height: 1.3;
}

.resto-reservation-content p {
  color: #cbe6c9;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.resto-reservation-btn {
  flex-shrink: 0;
  white-space: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-align: center;
  max-width: 100%;
}

/* ==========================================================================
   REVIEWS CAROUSEL SLIDER (1 row, 3 per view on desktop, Prev/Next arrows)
   ========================================================================== */
.reviews-carousel-wrap {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.reviews-carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
}

.reviews-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 1.5rem;
}

.reviews-carousel-track .review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  box-sizing: border-box;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .reviews-carousel-track .review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-carousel-track .review-card {
    flex: 0 0 100%;
  }
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--color-sun-orange);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--color-sun-orange);
}

.carousel-nav-btn.prev {
  left: -20px;
}

.carousel-nav-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .carousel-nav-btn.prev { left: -6px; width: 40px; height: 40px; }
  .carousel-nav-btn.next { right: -6px; width: 40px; height: 40px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-primary-dark);
  width: 26px;
  border-radius: 6px;
}

/* ==========================================================================
   CENNÍK & DARČEKOVÉ POUKAZY
   ========================================================================== */
.cennik-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cennik-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1.5px solid var(--border-subtle);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cennik-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-eco-green);
  box-shadow: var(--shadow-md);
}

.cennik-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-section-alt);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cennik-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.cennik-age {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cennik-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1;
}

.cennik-badge {
  display: inline-block;
  background: var(--bg-section-alt);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.cennik-badge.free {
  background: var(--color-eco-green);
  color: #ffffff;
  font-weight: 800;
}

.cennik-info-strip {
  background: linear-gradient(135deg, #f0fdf4 0%, #e2fbe8 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.cennik-info-strip-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #166534;
  font-weight: 700;
  font-size: 1rem;
}

/* Luxury Gift Voucher Generator */
.voucher-section {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}

.voucher-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .voucher-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.voucher-form-box {
  background: var(--bg-section-alt);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
}

.voucher-pill-select {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.voucher-pill-btn {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--border-medium);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.voucher-pill-btn.active, .voucher-pill-btn:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  border-color: var(--color-primary-dark);
}

.voucher-theme-picker {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.voucher-theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.voucher-theme-btn:hover, .voucher-theme-btn.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px var(--color-primary-dark);
}

.voucher-theme-btn.theme-emerald { background: linear-gradient(135deg, #0b4d26, #1b7a42); }
.voucher-theme-btn.theme-gold    { background: linear-gradient(135deg, #b45309, #fbbf24); }
.voucher-theme-btn.theme-sunset  { background: linear-gradient(135deg, #c2410c, #f97316); }

/* Printable Luxury Gift Voucher Card */
.voucher-card-preview-wrap {
  position: sticky;
  top: 2rem;
}

.voucher-card {
  position: relative;
  background: linear-gradient(135deg, #0b4d26 0%, #15733c 60%, #08381c 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 20px 40px rgba(11, 77, 38, 0.35);
  border: 3px solid rgba(251, 191, 36, 0.6);
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.voucher-card.theme-gold {
  background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #92400e 100%);
  border-color: rgba(254, 240, 138, 0.85);
  box-shadow: 0 20px 40px rgba(180, 83, 9, 0.35);
}

.voucher-card.theme-sunset {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #9a3412 100%);
  border-color: rgba(254, 215, 170, 0.85);
  box-shadow: 0 20px 40px rgba(194, 65, 12, 0.35);
}

.voucher-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  pointer-events: none;
}

.voucher-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.voucher-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.voucher-badge {
  background: rgba(251, 191, 36, 0.25);
  border: 1px solid #fbbf24;
  color: #fef08a;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.voucher-card-body {
  position: relative;
  z-index: 2;
  margin: 1.5rem 0;
}

.voucher-value-display {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.voucher-recipient-display {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.voucher-sender-display {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.voucher-message-display {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.4;
}

.voucher-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.85rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.voucher-code-box {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fef08a;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   SECTION GALLERIES (Hoplandia, Military, Trhy, Oslavy)
   ========================================================================== */
.section-subgallery-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px dashed var(--border-medium);
}

.section-subgallery-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ==========================================================================
   LIGHTBOX MODAL WITH FULL-HEIGHT CONTAIN & ARROWS
   ========================================================================== */
.lightbox-modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 920px;
  width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lightbox-media-wrap {
  position: relative;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  max-height: 65vh;
  overflow: hidden;
}

.lightbox-media-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--color-sun-orange);
  border-color: var(--color-sun-orange);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev { left: 1.25rem; }
.lightbox-nav-next { right: 1.25rem; }

.lightbox-info-bar {
  padding: 1.25rem 1.75rem;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lightbox-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0;
}

.lightbox-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-section-alt);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Print Styles for Voucher */
@media print {
  body * {
    visibility: hidden !important;
  }
  #printableVoucher, #printableVoucher * {
    visibility: visible !important;
  }
  #printableVoucher {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-shadow: none !important;
    border: 3px solid #b45309 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES & MULTI-DEVICE SUPPORT
   ========================================================================== */

/* 1. Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
  
  .quick-card {
    padding: 1rem 1.15rem;
  }
  
  .quick-card-icon {
    width: 44px;
    height: 44px;
  }

  .quick-card-label {
    font-size: 0.95rem;
  }

  .quick-card-value {
    font-size: 0.82rem;
  }

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

  .military-showcase-grid,
  .video-feature-card {
    grid-template-columns: 1fr;
  }

  .video-container {
    min-height: 260px;
  }

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

/* 2. Tablets & Large Mobile (<= 860px) */
@media (max-width: 860px) {
  .header-search-wrap,
  .desktop-only {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    width: 42px;
    height: 42px;
    color: #ffffff;
    cursor: pointer;
  }

  .mobile-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .header-nav-row {
    display: none;
  }

  .header-nav-row.is-open {
    display: block;
    background: rgba(11, 77, 38, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  }

  .header-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    width: 100%;
  }

  .nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
  }

  .nav-item:hover,
  .nav-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-accent-gold);
  }

  .nav-item::after {
    display: none;
  }

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

  .hero-floating-cards-wrap {
    margin-top: -2.5rem;
    margin-bottom: 2rem;
  }

  .hero-ekopark-section {
    padding: 4rem 0 5.5rem 0;
  }

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

  .animal-filter-tabs,
  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.65rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .animal-filter-tabs::-webkit-scrollbar,
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .animal-tab,
  .menu-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* 3. Small Mobile Phones (<= 580px) */
@media (max-width: 580px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

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

  .section-padding-sm {
    padding: 2rem 0;
  }

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

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Header on small screens */
  .header-top-row {
    padding: 0.5rem 0;
    gap: 0.5rem;
  }

  .brand-logo-img {
    height: 56px;
    max-height: 60px;
  }

  .util-phone-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
  }

  .util-phone-btn span {
    font-size: 0.82rem;
  }

  .util-icon-circle {
    width: 26px;
    height: 26px;
  }

  .lang-badge {
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
  }

  /* Hero Section */
  .hero-ekopark-section {
    padding: 3.25rem 0 4.75rem 0;
  }

  .hero-main-title {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .hero-main-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  /* Floating Quick Cards */
  .quick-card {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
    border-radius: var(--radius-md);
  }

  .quick-card-icon {
    width: 44px;
    height: 44px;
  }

  .quick-card-label {
    font-size: 1rem;
  }

  .quick-card-value {
    font-size: 0.85rem;
    white-space: normal;
  }

  /* Grids to 1 column */
  .overview-grid,
  .events-grid,
  .activities-grid,
  .animals-grid,
  .menu-items-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .overview-img-wrapper,
  .event-card-media,
  .activity-img,
  .animal-card-img-wrap,
  .gallery-item {
    height: 190px;
  }

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

  .pricing-card {
    padding: 1.15rem;
  }

  .price-amount {
    font-size: 1.85rem;
  }

  .military-showcase-grid {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }

  .military-img-container {
    height: 220px;
  }

  .video-card-body {
    padding: 1.5rem 1.25rem;
  }

  .contact-card-box {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .map-wrapper {
    min-height: 260px;
    height: 260px;
  }

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

  /* Modals on small phones */
  .modal-dialog {
    max-width: 95vw;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
  }

  .modal-dialog > div {
    padding: 1.5rem 1.15rem !important;
  }

  .voucher-section > div {
    padding: 2rem 1.15rem !important;
  }

  .voucher-section .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-control,
  #writeReviewForm input,
  #writeReviewForm textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
  }
}

/* 4. Ultra-compact phones (<= 375px) */
@media (max-width: 375px) {
  .brand-logo-img {
    height: 48px;
  }

  .util-phone-btn span {
    display: none;
  }

  .util-phone-btn {
    padding: 0.45rem;
    border-radius: 50%;
  }

  .util-icon-circle {
    margin: 0;
  }

  .hero-main-title {
    font-size: 1.75rem;
  }
}