/* ============================================================
   Ondřej Svoboda — Fotograf · Portfolio
   style.css
   ============================================================ */

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

/* ── Custom Properties ── */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-card:     #161616;
  --accent:      #ffffff;
  --gold:        #c8a96e;
  --gold-light:  #d4b97e;
  --text:        #f0f0f0;
  --muted:       #666666;
  --muted-2:     #444444;
  --border:      #222222;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --nav-h:       72px;
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p  { font-size: clamp(0.95rem, 1.5vw, 1.1rem); }

/* ── Utility ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
.section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-head);
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  text-align: center;    
  margin-inline: auto;     
}
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: block;
}
.nav-logo.logo-fallback .nav-logo-img { display: none; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--accent);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--text);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}
.hero-strip {
  display: flex;
  height: 100%;
  gap: 6px;
  will-change: transform;
}
.hero-strip.animate {
  animation: hero-scroll linear infinite;
}
.hero-strip img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
@keyframes hero-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(10,10,10,1)  100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1rem;
  z-index: 1;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(240,240,240,0.7);
  margin-top: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s 2s infinite;
  z-index: 1;
}
.hero-scroll svg { width: 20px; opacity: 0.5; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about-grid.no-photo {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.about-text p + p { margin-top: 1.2rem; }
.about-text .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-image-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted-2);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--border);
}
.about-image-placeholder svg { width: 48px; opacity: 0.3; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--bg); }
/* ── Efekt skrytí galerie do ztracena ── */

/* 1. Obal, který před rozbalením ořízne výšku galerie */
.gallery-wrapper {
  position: relative;
  max-height: 550px; /* Výška, po kterou budou fotky vidět (upravte dle potřeby) */
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Hladký přechod rozbalení */
}

/* 2. Přechodový stín (gradient) do tmavé barvy vašeho pozadí */
.gallery-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px; /* Výška stínu – určuje, jak moc do výšky začnou fotky mizet */
  /* Přechod z úplné průhlednosti do barvy vašeho pozadí #0a0a0a */
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0.8) 50%,
    rgba(10, 10, 10, 1) 100%
  );
  pointer-events: none; /* Umožní klikat na prvky pod stínem */
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* 3. Úprava vašeho stávajícího tlačítka, aby sedělo nad stínem */
.gallery-more-cta {
  position: relative;
  z-index: 10;
  margin-top: -60px; /* Posune tlačítko nahoru do stínu přes oříznutý okraj */
}

/* 4. Stav, kdy JavaScript přidá třídu 'is-expanded' (galerie se otevře a stín zmizí) */
.gallery-wrapper.is-expanded {
  max-height: 4000px; /* Dostatečně velké číslo, aby se ukázaly všechny fotky */
}

.gallery-wrapper.is-expanded .gallery-fade-overlay {
  opacity: 0; /* Stín plynule zmizí */
  pointer-events: none;
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 2px;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* Grid — PŘEPSANÁ SEKCIE PRO STEJNĚ VELKÉ FOTKY */
.gallery-grid {
  display: grid;
  /* Vytvoří 3 sloupce na desktopu. Na menších displejích se přizpůsobí díky responzivní sekci níže */
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; /* Jednotná mezera mezi řádky i sloupci */
}

.gallery-item {
  /* Odstraněno break-inside, jelikož už nepoužíváme columns */
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  
  /* KLÍČOVÉ: Uzamkne poměr stran pro celou krabičku (všechny budou stejně velké) */
  aspect-ratio: 3 / 4; /* 3/4 vytvoří portrétový obdélník. */
  width: 100%;
}

.gallery-item.hidden {
  display: none; /* Pro skrytí filtrů v Gridu funguje display: none nejlépe */
}

.gallery-item img {
  width: 100%;
  height: 100%; /* Vyplní celou výšku položky .gallery-item */
  
  /* KLÍČOVÉ: Roztáhne fotku na celý prostor a ořízne přebytky bez deformace */
  object-fit: cover; 
  object-position: center; /* Vycentruje ořez na střed */
  
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: background var(--transition);
}
.gallery-item-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.55);
}
.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: none;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Placeholder tile */
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--muted-2);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.gallery-placeholder svg { width: 32px; opacity: 0.25; }
.gallery-placeholder:hover { border-color: var(--muted-2); }

/* ============================================================
   TESTIMONIALS (preview on index)
   ============================================================ */
.testimonials-section { background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.testimonial-text {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.testimonial-text::before { content: '\201E'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 2px; }
.testimonial-text::after  { content: '\201C'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-left: 2px; }
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonials-more {
  text-align: center;
  margin-top: 2.5rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 0.9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.contact-inner p { color: var(--muted); margin-top: 1rem; margin-bottom: 2rem; }
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-note {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--gold); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 60px;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.pricing-card.featured {
  border-color: var(--gold);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--accent);
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pricing-price small {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.6;
}
.pricing-note {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.pricing-cta { text-align: center; margin-top: 2rem; }
.pricing-footer-note {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-style: italic;
}


/* ============================================================
   OHLASY PAGE
   ============================================================ */
.ohlasy-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 40px;
  text-align: center;
}
.counter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
}
.counter-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.counter-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 3rem;
}
.review-card {
  break-inside: avoid;
  margin-bottom: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.review-card.placeholder {
  border-style: dashed;
  border-left-style: dashed;
  border-left-color: var(--gold);
  border-color: var(--muted-2);
  opacity: 0.45;
}
.review-card.placeholder:hover { opacity: 0.7; }
.review-text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ohlasy-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.ohlasy-cta h3 { margin-bottom: 0.5rem; }
.ohlasy-cta p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 40px;
}
.privacy-content {
  max-width: 760px;
}
.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.privacy-section p + p { margin-top: 0.8rem; }
.privacy-section a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   COOKIES BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: rgba(16, 16, 16, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.visible { transform: none; }
.cookie-text {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 700px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-accept {
  padding: 0.6rem 1.6rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-accept:hover { background: var(--gold-light); }

/* ============================================================
   INNER PAGE WRAPPER (cenik, ohlasy, privacy)
   ============================================================ */
.inner-page { min-height: 100vh; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { columns: 2; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin-inline: auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 360px; margin-inline: auto; }

  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { columns: 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child { max-width: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .contact-buttons { flex-direction: column; align-items: center; }
}
.gallery-more-cta {
  text-align: center;
  margin-top: 3rem;
  width: 100%;
}

/* Jemná animace pro plynulé zobrazení nových fotek */
.gallery-item {
  animation: fadeInGrid 0.5s ease forwards;
}

@keyframes fadeInGrid {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}