@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700&family=Raleway:wght@200&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Dosis", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.2;
  overflow-x: hidden;
}

:root {
  --gold: #96844c;
  --gold-hover: #7a6a3a;
  --dark: #1a1a1a;
  --light-bg: #f8f8f8;
  --beige: #f5f0e6;
  --first-module-offset: 150px;
}

@media (max-width: 992px) {
  :root {
    --first-module-offset: 110px;
  }
}
.page-modul--first {
  margin-top: var(--first-module-offset) !important;
}

h1, h2, h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  letter-spacing: 0.04em;
}

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

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

/* === HLAVIČKA – GALATEA STYLE === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(12, 20, 33, 0.95), transparent);
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header.scrolled {
  padding: 0.8rem 2rem;
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 993px) {
  .header-top {
    font-size: 0.94rem;
  }
}

.header.scrolled .header-top {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.header-top a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}

.header-top a:hover {
  color: var(--gold);
}

.header-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-logo {
  margin: 1rem 0 0.5rem 0; /* O něco níž - větší margin-top */
  transition: font-size 0.4s;
  text-align: center;
  position: relative;
  height: 60px;
  width: 200px; /* Přidána pevná šířka pro kontejner loga */
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}

.header-logo img {
  width: 100%; /* Změněno na 100% pro vyplnění kontejneru */
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header-logo .logo-scrolled {
  opacity: 0;
}

.header.scrolled .header-logo .logo-main {
  opacity: 0;
}

.header.scrolled .header-logo .logo-scrolled {
  opacity: 1;
}

.header.scrolled .header-logo {
  width: 50px; /* Zmenšení šířky kontejneru po scrollu */
  height: 50px;
}

@media (min-width: 768px) {
  .header-logo {
    height: 150px;
    width: 300px;
    margin: 0;
  }
}
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.header-nav li {
  position: relative;
  list-style: none;
}

.header-nav a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  display: block;
}

.header-nav > .btn-reservovat {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.5rem;
  background: var(--gold);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 0.5rem;
  line-height: 1;
}

.header-nav > .btn-reservovat::after {
  display: none;
}

.header-nav > .btn-reservovat:hover {
  background: var(--gold-hover);
}

.header-nav li > ul {
  display: none;
  margin-top: 0.5rem;
  gap: 0;
  padding-left: 1rem;
}

.header-nav li.active > ul {
  display: flex;
}

.header-nav li > ul li {
  margin: 0;
}

.header-nav li > ul a {
  padding: 0.8rem 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-nav li > ul a:first-child {
  border-top: none;
}

.header-nav li > ul a:hover {
  color: var(--gold);
}

/* ==========================================================
   DESKTOP STYLY (při min-width: 993px)
   Přepisují mobilní styly pro větší obrazovky
   ========================================================== */
@media (min-width: 993px) {
  .hamburger {
    display: none;
  }
  .header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: static;
    font-weight: 500;
    font-size: 1.2rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: none;
    width: 100%;
    margin-top: 1rem;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transition: gap 0.4s, font-size 0.4s;
  }
  .header-nav > ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .header-nav li {
    display: flex;
    align-items: center;
  }
  .header-nav > ul > li {
    position: relative;
  }
  .header-nav > ul > li > ul {
    padding-top: 10px;
    margin-top: 0;
    top: calc(100% - 5px);
  }
  .header-nav a {
    font-size: 1.3rem;
  }
  .header-nav > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
    transform: translateX(-50%);
  }
  .header-nav > ul > li > a:hover::after {
    width: 100%;
  }
  .header-nav > .btn-reservovat {
    font-size: 1.3rem;
    margin-top: 0;
  }
  .header-nav .btn-reservovat::after {
    display: none;
  }
  .header-nav .btn-reservovat:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(150, 132, 76, 0.4);
  }
  .header.scrolled .header-nav .btn-reservovat {
    padding: 0.5rem 1.2rem;
    font-size: 0.99rem;
  }
  .header.scrolled .header-nav {
    font-size: 0.99rem;
  }
  .header.scrolled .header-nav > ul {
    gap: 1.2rem;
  }
  .header-nav li > ul {
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0 0.5rem 0;
    margin-top: 0;
    display: none;
    z-index: 1000;
    padding-left: 0;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    width: auto;
  }
  .header-nav > ul > li::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 15px;
    background: transparent;
    display: none;
    z-index: 999;
  }
  .header-nav > ul > li:hover::before {
    display: block;
  }
  .header-nav li:hover > ul {
    display: flex;
  }
  .header-nav li > ul li {
    display: block;
    margin: 0;
    width: 100%;
  }
  .header-nav li > ul a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 1.05rem;
    color: var(--dark);
    text-align: left;
    border-top: none;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
    white-space: nowrap;
  }
  .header-nav li > ul a:hover {
    background: rgba(150, 132, 76, 0.1);
    color: var(--gold);
  }
  .header-nav li > ul a::after {
    display: none;
  }
  .header.scrolled .header-nav li > ul {
    top: calc(100% - 3px);
    padding-top: 8px;
  }
  .header.scrolled .header-nav > ul > li::before {
    height: 10px;
  }
}
/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === BTN GOLD === */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-gold.large {
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

.small-link a {
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: underline;
}

/* === HERO SLIDER (FULLSCREEN) === */
.slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  z-index: 1;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 210px;
}

.hero-content {
  max-width: 90%;
  color: white;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 100;
  letter-spacing: 0.05em;
}

.hero-content p {
  font-size: 1.1rem;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .swiper-slide {
    padding-bottom: 130px;
  }
  .hero-content h1 {
    font-size: 4rem;
  }
  .hero-content p {
    font-size: 1.5rem;
  }
}
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  color: white;
  z-index: 11;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.4rem;
}

.swiper-pagination {
  bottom: 25px !important;
  z-index: 11;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* === CONTENT (pod fullscreen sliderem) === */
.content {
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.lightbg {
  background: var(--light-bg);
}

.people-page,
.okoli-page {
  margin-top: 0;
  padding-top: 5rem;
}

.welcome {
  padding: 5rem 2rem 3rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.welcome p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.upp {
  text-transform: uppercase;
  color: #91a4aa !important;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .welcome h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
  }
  .welcome p {
    font-size: 2.1rem;
    margin-bottom: 3rem;
  }
}
/* === PŘÍRODA === */
.nature {
  position: relative;
  background: white;
  text-align: center;
  padding: 5rem 0;
}

.nature h2 {
  font-size: 2.8rem;
  padding: 1rem 0 4rem 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.3rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.nature-highlights {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  padding: 0 2rem;
  max-width: 1400px;
}

/* .highlight používá stejné styly jako .activity-card - viz _cards.scss */
@media (min-width: 768px) {
  .nature-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
  .nature h2 {
    font-size: 4rem;
  }
}
/* === UNIVERZÁLNÍ SEKCE S OBRÁZKEM A CTA === */
.feature-section {
  padding: 0 2rem 6rem;
  text-align: center;
}

/* Modifikátory pro různé barvy pozadí */
.feature-section.bg-beige {
  background: var(--beige);
}

.feature-section.bg-white {
  background: white;
}

.feature-section h2 {
  font-size: 2.8rem;
  padding: 1rem 0 4rem 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.feature-hero {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1400px;
  margin: 3rem auto 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-main-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2.5rem;
  border-radius: 25px;
  color: white;
  text-align: center;
  width: 90%;
  max-width: 450px;
}

.feature-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.feature-cta p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.feature-cta .price {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === KONTAKT === */
.contact {
  padding: 6rem 2rem;
  background: var(--dark);
  color: white;
  text-align: center;
}

.contact h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 4rem auto 2rem;
  max-width: 1000px;
  text-align: center;
}

.contact-column h4 {
  font-family: "Dosis", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.contact-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-column a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-column a:hover {
  border-bottom-color: var(--gold);
}

.account-info {
  margin-top: 3rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* === SOCIÁLNÍ SÍTĚ === */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--gold);
}

.social-links svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-links a:hover svg {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .contact-details {
    grid-template-columns: repeat(3, 1fr);
  }
  .social-links {
    gap: 3rem;
    margin-top: 4rem;
  }
  .social-links a {
    font-size: 1.1rem;
  }
  .social-links svg {
    width: 28px;
    height: 28px;
  }
}
/* === TEXTOVÝ BLOK === */
.text {
  padding: 0 1rem 2rem;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  color: #333;
  line-height: 1.6;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.text h1 {
  font-size: 2rem;
}
.text h2 {
  font-size: 1.75rem;
}
.text h3 {
  font-size: 1.5rem;
}
.text h4 {
  font-size: 1.25rem;
}
.text h5, .text h6 {
  font-size: 1.1rem;
}
.text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.text ul, .text ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.text li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
}
.text a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.text a:hover {
  color: var(--dark);
}
.text strong, .text b {
  font-weight: 600;
  color: var(--dark);
}
.text em, .text i {
  font-style: italic;
}
.text blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}
.text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
}
.text hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 3rem 0;
}
.text code {
  background: #f5f5f5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}
.text pre {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.text pre code {
  background: none;
  padding: 0;
}
.text table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.text table th, .text table td {
  padding: 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
}
.text table th {
  background: var(--beige);
  font-weight: 600;
  color: var(--dark);
}

@media (min-width: 768px) {
  .text {
    padding: 1rem 2rem 3rem;
  }
  .text h1 {
    font-size: 3rem;
  }
  .text h2 {
    font-size: 2.5rem;
  }
  .text h3 {
    font-size: 2rem;
  }
  .text h4 {
    font-size: 1.5rem;
  }
  .text h5, .text h6 {
    font-size: 1.25rem;
  }
  .text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  .text li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
  }
  .text ul, .text ol {
    padding-left: 2rem;
  }
  .text blockquote {
    padding-left: 2rem;
    margin: 3rem 0;
    font-size: 1.2rem;
  }
}
/* === TOP KONTAKT (text + formulář + mapa) === */
.topkontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.topkontakt-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--beige);
  border-radius: 18px;
  padding: 1.25rem;
}
.topkontakt-form h3 {
  margin: 0 0 0.5rem;
  color: var(--dark);
  font-size: 1.5rem;
}
.topkontakt-form label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}
.topkontakt-form input,
.topkontakt-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--dark);
  background: #fff;
}
.topkontakt-form textarea {
  resize: vertical;
  min-height: 140px;
}
.topkontakt-form .btn-gold {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.topkontakt-form-note {
  margin-top: 1rem;
  padding: 0.25rem 0;
}
.topkontakt-form-note p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.topkontakt-map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  line-height: 0;
}
.topkontakt-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  height: 55vw;
  max-height: 620px;
  border: 0;
}

@media (min-width: 768px) {
  .topkontakt-grid {
    padding: 0 2rem 3rem;
  }
  .topkontakt-form {
    padding: 1.75rem;
  }
}
@media (min-width: 992px) {
  .topkontakt-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }
  .topkontakt-map iframe {
    height: 40vw;
  }
}
/* === COPYRIGHT FOOTER === */
.copyright-footer {
  background: #000;
  padding: 1.5rem 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.copyright-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.copyright-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-footer a:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  .copyright-footer {
    padding: 2rem;
    font-size: 1rem;
  }
  .copyright-footer p {
    font-size: 1rem;
  }
}
/* === PARALLAX SECTION (univerzální) === */
.parallax-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden; /* Zabrání případnému přetékání obsahu */
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.6));
  z-index: -1;
}

.parallax-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  padding: 2rem; /* Přidáno pro lepší zobrazení na menších obrazovkách */
}

.parallax-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.parallax-content p {
  font-size: 1.7rem;
  margin: 1.5rem 0;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .parallax-content h2 {
    font-size: 4rem;
  }
  .parallax-content p {
    font-size: 2rem;
  }
}
/* === SLIDER COMPACT S PARALLAX EFEKTEM === */
.slider-compact-parallax {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
}
.slider-compact-parallax .slider-compact-swiper {
  width: 100%;
  height: 90vh;
}
.slider-compact-parallax .swiper-slide {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}
.slider-compact-parallax .swiper-pagination {
  bottom: 2rem;
  z-index: 10;
}
.slider-compact-parallax .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.slider-compact-parallax .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}
.slider-compact-parallax .swiper-button-prev,
.slider-compact-parallax .swiper-button-next {
  color: white;
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.slider-compact-parallax .swiper-button-prev:after,
.slider-compact-parallax .swiper-button-next:after {
  font-size: 20px;
}
.slider-compact-parallax .swiper-button-prev:hover,
.slider-compact-parallax .swiper-button-next:hover {
  background: rgba(26, 26, 26, 0.8);
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .slider-compact-parallax .swiper-button-prev,
  .slider-compact-parallax .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .slider-compact-parallax .swiper-button-prev:after,
  .slider-compact-parallax .swiper-button-next:after {
    font-size: 16px;
  }
}

/* === GALERIE - JS MASONRY LAYOUT === */
.collage {
  padding: 4rem 2rem;
}

/* Mobil: bez horního paddingu */
@media (max-width: 767px) {
  .collage {
    padding-top: 0;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.collage-grid {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  padding-top: 2rem;
}

/* Sloupce pro masonry */
.masonry-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

/* Základní styly pro obrázky */
.collage-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  outline: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.collage-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover efekty pouze na desktopu */
@media (min-width: 768px) {
  .collage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
  .collage-item:hover img {
    transform: scale(1.08);
  }
}
/* Mobil: jeden sloupec */
@media (max-width: 767px) {
  .collage-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .masonry-column {
    gap: 1.5rem;
  }
  .collage-item {
    border-radius: 20px;
  }
}
/* Tablet a desktop: více sloupců */
@media (min-width: 768px) {
  .collage-grid {
    gap: 1.5rem;
  }
  .masonry-column {
    gap: 1.5rem;
  }
}
/* === VIDEO SEKCE === */
.video-section {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--dark);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.5));
  z-index: 1;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
  padding: 0 2rem;
}

.video-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.video-content .subtitle {
  font-size: 1.3rem;
  text-transform: uppercase;
  opacity: 0.95;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-content .btn-gold {
  margin-top: 2rem;
  font-size: 1.1rem;
  padding: 0.9rem 2.4rem;
}

/* Desktop optimalizace */
@media (min-width: 768px) {
  .video-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
  .video-content .subtitle {
    font-size: 1.5rem;
  }
  .video-content .btn-gold {
    font-size: 1.2rem;
  }
}
/* Mobilní optimalizace */
@media (max-width: 767px) {
  .video-wrapper {
    padding-bottom: 75%; /* Větší poměr na mobilu pro lepší zobrazení */
  }
  .video-content h2 {
    font-size: 1.9rem;
  }
  .video-content .subtitle {
    font-size: 1.1rem;
  }
}
/* === SPOLEČNÉ STYLY PRO KARTY AKTIVIT (používá se na homepage, okoli.html, sumava.html) === */
.activity-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.activity-card img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.activity-card-body {
  padding: 1.8rem 2rem 1.7rem;
}

.activity-card h2,
.activity-card h3 {
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.activity-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.activity-card .tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.activity-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  background: rgba(150, 132, 76, 0.08);
  color: #777;
}

.activity-card .btn-gold {
  margin-top: 1.2rem;
}

/* Meta informace (např. "Do 15 min · Sport") */
.activity-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #91a4aa;
  margin-bottom: 0.4rem;
}

/* === MODUL ČLÁNKY - BALÍČKY === */
.clanky-balicky {
  padding: 1rem 2rem 4rem;
}

.clanky-balicky__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.clanky-balicky__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.clanky-balicky__media {
  border-radius: 24px;
  overflow: hidden;
}

.clanky-balicky__media img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.clanky-balicky__content h2 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.clanky-balicky__text {
  line-height: 1.8;
}

.clanky-balicky__text h3,
.clanky-balicky__text h4 {
  color: var(--dark);
  margin-top: 1.2rem;
  margin-bottom: 0.65rem;
}

.clanky-balicky__text h3 {
  font-size: 1.45rem;
}

.clanky-balicky__text h4 {
  font-size: 1.2rem;
}

.clanky-balicky__text p,
.clanky-balicky__text ul,
.clanky-balicky__text ol {
  margin-bottom: 0.9rem;
}

.clanky-balicky__text ul,
.clanky-balicky__text ol {
  padding-left: 1.2rem;
}

.clanky-balicky__text li {
  margin-bottom: 0.35rem;
}

.clanky-balicky__cta {
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .clanky-balicky {
    padding: 2rem 2rem 5rem;
  }
  .clanky-balicky__item {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }
  .clanky-balicky__item--no-image {
    grid-template-columns: 1fr;
  }
  .clanky-balicky__media img {
    height: 100%;
    min-height: 320px;
  }
  .clanky-balicky__content h2 {
    font-size: 2.8rem;
  }
}
/* === STRÁNKA OKOLÍ – AKTIVITY VE FORMĚ KARET === */
.okoli-page {
  background: var(--light-bg);
}

.okoli-header {
  padding: 7rem 2rem 3rem;
  text-align: center;
}

.okoli-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.okoli-header h1 {
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.okoli-header p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.activities-filter {
  padding: 0 2rem 2.5rem;
}

.activities-filter-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.filter-btn {
  border: 1px solid rgba(150, 132, 76, 0.35);
  background: white;
  color: var(--dark);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.filter-btn.is-active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

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

.activities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* .activity-card styly jsou v _cards.scss */
@media (min-width: 768px) {
  .okoli-header {
    padding: 8rem 2rem 3.5rem;
  }
  .okoli-header h1 {
    font-size: 4rem;
  }
  .activities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .activities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* === 3 PILÍŘE === */
.benefity-section {
  padding: 0 3rem 3rem 3rem;
  background: white;
  text-align: center;
}

.benefity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.benefit-card-content {
  padding: 2rem 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.benefit-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.benefit-card .btn-gold {
  font-size: 1rem;
  padding: 0.8rem 2rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .benefity-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .benefit-card h3 {
    font-size: 1.9rem;
  }
  .benefit-card p {
    font-size: 1.2rem;
  }
}
/* === STRÁNKA ŠUMAVA – EDITORIAL PRŮVODCE === */
.sumava-page {
  background: var(--light-bg);
}

.sumava-hero {
  padding: 7rem 2rem 3rem;
}

.sumava-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sumava-hero-media {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.sumava-hero-media img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sumava-hero-content h1 {
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.sumava-hero-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  max-width: 620px;
}

.sumava-hero-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #91a4aa;
}

/* SEZÓNNÍ NAVIGACE */
.sumava-seasons-nav {
  padding: 0 2rem 2.5rem;
}

.sumava-seasons-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.season-pill {
  border: 1px solid rgba(150, 132, 76, 0.35);
  background: white;
  color: var(--dark);
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.season-pill:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.season-pill.is-active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* BLOKY PRO JEDNOTLIVÉ SEZÓNY */
.season-section {
  padding: 4rem 2rem 3rem;
}

.season-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.season-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #91a4aa;
}

.season-section h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin: 0.5rem 0 1.2rem;
}

.season-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

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

/* .season-card používá stejné styly jako .activity-card - viz _cards.scss */
@media (min-width: 768px) {
  .sumava-hero {
    padding: 9rem 2rem 5rem;
  }
  .sumava-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 4rem;
  }
  .sumava-hero-media img {
    height: 520px;
  }
  .sumava-hero-content h1 {
    font-size: 4rem;
  }
  .season-section {
    padding: 5rem 2rem 4rem;
  }
  .season-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.rooms {
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.rooms h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.rooms .subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.room-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

/* Obrázek nahoře v kartě (index) */
.room-card > img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Mini swiper v room-card */
.room-swiper {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.room-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0 !important;
}

.room-swiper img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block;
}

/* Pagination pro mini swiper */
.room-pagination {
  bottom: 12px !important;
  z-index: 10;
}

.room-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: white;
  opacity: 0.6;
  margin: 0 3px;
  transition: opacity 0.3s ease;
}

.room-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

.room-info {
  padding: 1.8rem;
  text-align: left;
}

.room-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.room-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

a.btn-gold,
button.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: background 0.3s;
}

a.btn-gold:hover,
button.btn-gold:hover {
  background: var(--gold-hover);
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rooms h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .room-swiper {
    height: 340px;
  }
}
/* === RECENZE / DŮVĚRA === */
.reviews-section {
  padding: 6rem 2rem;
  background: var(--light-bg);
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.reviews-section .subtitle {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  line-height: 1.6;
}

.reviews-swiper-wrapper {
  width: 100%;
  margin: 0 auto 4rem;
  position: relative;
}

.reviews-swiper .swiper-slide {
  height: auto;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.review-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* Swiper navigation buttons */
.reviews-prev,
.reviews-next {
  color: var(--gold);
  width: 50px;
  height: 50px;
}

.reviews-prev::after,
.reviews-next::after {
  font-size: 24px;
  font-weight: bold;
}

.reviews-pagination {
  bottom: 0 !important;
}

.reviews-pagination .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}

.reviews-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.reviews-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.review-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-link img {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.review-link .review-logo-google {
  height: 38px;
}

.review-link span {
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
  text-align: left;
}

@media (min-width: 768px) {
  .reviews-section h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    padding: 0 4rem;
  }
  .reviews-section .subtitle {
    margin-bottom: 3rem;
  }
  .review-card {
    padding: 2.5rem;
  }
  .review-card h4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .review-card p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .reviews-links {
    flex-direction: row;
    max-width: 1200px;
    gap: 2rem;
    padding: 0 4rem;
  }
  .review-link {
    flex: 1;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  .review-link span {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .review-card {
    padding: 1.5rem;
  }
  .review-card h4 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .reviews-prev,
  .reviews-next {
    display: none; /* Na mobilu skrýt šipky, použije se swipe */
  }
}
/* === RECENZE MODULU (jednoduchý grid) === */
.recenze-section {
  padding: 4rem 2rem;
  background: var(--light-bg);
}
.recenze-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 3rem;
}
.recenze-section .recenze-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.recenze-section .recenze-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.recenze-section .recenze-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.recenze-section .recenze-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.recenze-section .recenze-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 1.2rem;
}
.recenze-section .recenze-stars .star {
  color: var(--gold);
}
.recenze-section .recenze-datum {
  font-size: 0.9rem;
  color: #999;
}
.recenze-section .recenze-nadpis {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}
.recenze-section .recenze-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}
.recenze-section .recenze-autor {
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.recenze-section .recenze-autor strong {
  color: var(--gold);
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .recenze-section {
    padding: 6rem 2rem;
  }
  .recenze-section .section-title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .recenze-section .recenze-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .recenze-section .recenze-card {
    padding: 2.5rem;
  }
  .recenze-section .recenze-nadpis {
    font-size: 1.6rem;
  }
  .recenze-section .recenze-text {
    font-size: 1.1rem;
  }
}
@media (min-width: 1200px) {
  .recenze-section .recenze-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* === STRÁNKA LIDÉ – MAGAZÍNOVÝ STYL === */
.people-page {
  background: #faf7f2;
}

/* HERO S PORTRÉTEM */
.people-hero {
  padding: 7rem 2rem 4rem;
}

.people-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.people-hero-portrait {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.people-hero-portrait img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.people-hero-content h1 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.people-hero-content .quote {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #555;
  max-width: 620px;
}

/* SEKCÍ PŘÍBĚHŮ */
.people-section {
  padding: 4rem 2rem 3rem;
}

.people-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.people-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.people-section h2 {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.people-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
}

.people-section-monika {
  background: white;
}

.people-section-chefs {
  background: #f5efe5;
}

.people-section-team {
  background: white;
  padding-bottom: 5rem;
}

.people-section-lead {
  max-width: 700px;
  margin-bottom: 3rem;
}

.person-photo {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.person-photo img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.person-photo-large {
  border-radius: 28px;
  margin-bottom: 0;
}

.person-photo-large img {
  height: 380px;
}

.person-photo-small img {
  height: 190px;
}

.people-chefs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.person-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.person-card h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.person-card p + p {
  margin-top: 0.9rem;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .people-hero {
    padding: 9rem 2rem 5rem;
  }
  .people-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 4rem;
  }
  .people-hero-portrait img {
    height: 520px;
  }
  .people-hero-content h1 {
    font-size: 4rem;
  }
  .people-section {
    padding: 5rem 2rem 4rem;
  }
  .people-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
  }
  .people-chefs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* === FAQ STRÁNKA === */
.faq-page {
  margin-top: 0;
  padding-top: 5rem;
  background: var(--light-bg);
}

.faq-header {
  padding: 7rem 2rem 3rem;
  text-align: center;
}

.faq-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header h1 {
  font-size: 2.7rem;
  color: var(--black);
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.faq-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.faq-header a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.faq-header a:hover {
  border-bottom-color: var(--gold);
}

.faq-section {
  padding: 2rem 2rem 6rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s ease;
  font-family: "Dosis", sans-serif;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.faq-answer a:hover {
  border-bottom-color: var(--gold);
}

/* Desktop optimalizace */
@media (min-width: 768px) {
  .faq-header h1 {
    font-size: 5rem;
  }
  .faq-header p {
    font-size: 1.2rem;
  }
  .faq-question {
    font-size: 1.2rem;
    padding: 2rem 2.5rem;
  }
  .faq-answer {
    padding: 0 2.5rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 2.5rem 2rem;
  }
}
/* === WELLNESS STRÁNKA === */
.wellness-page {
  background: var(--light-bg);
  margin-top: 0;
  padding-top: 5rem;
}

.wellness-header {
  padding: 7rem 2rem 3rem;
  text-align: center;
}

.wellness-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.wellness-header h1 {
  font-size: 2.7rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.wellness-header p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Wellness služby - používá activity-card z _cards.scss */
.wellness-services {
  padding: 2rem 2rem 4rem;
}

.wellness-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wellness-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Masáže sekce */
.wellness-massages {
  padding: 4rem 2rem;
  background: white;
}

.wellness-massages-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wellness-massages h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 3rem;
  text-align: center;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.massages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.massage-card {
  background: #faf7f2;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.massage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.massage-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
}

.massage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.massage-card li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.massage-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.massage-card li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wellness-header {
    padding: 8rem 2rem 3.5rem;
  }
  .wellness-header h1 {
    font-size: 3.2rem;
  }
  .wellness-massages h2 {
    font-size: 3.4rem;
  }
  .massages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .massages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Ceník masáží */
.wellness-pricing {
  padding: 4rem 2rem 6rem;
  background: #faf7f2;
  text-align: center;
}

.wellness-pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.wellness-pricing h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 3rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-time {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Dosis", sans-serif;
}

.pricing-price {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

@media (min-width: 768px) {
  .wellness-pricing h2 {
    font-size: 3.4rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-price {
    font-size: 3rem;
  }
}
.cookie-consent {
  position: relative;
  z-index: 9999;
}

.cookie-consent__manage {
  position: fixed;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--gold);
  background: var(--dark);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.cookie-consent__banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cookie-consent__content h3,
.cookie-consent__panel h3 {
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.cookie-consent__content p,
.cookie-consent__modal-text,
.cookie-consent__category p {
  color: var(--dark);
  line-height: 1.4;
}

.cookie-consent__content a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-consent__actions,
.cookie-consent__modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--dark);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font: inherit;
}

.cookie-btn--primary {
  background: var(--gold);
  color: #fff;
}

.cookie-btn--ghost {
  background: var(--beige);
}

.cookie-btn--outline {
  border-color: var(--dark);
}

.cookie-consent__modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-consent__modal[hidden],
.cookie-consent__banner[hidden] {
  display: none;
}

.cookie-consent__overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0.75;
}

.cookie-consent__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  z-index: 1;
}

.cookie-consent__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent__categories {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cookie-consent__category {
  border: 1px solid var(--beige);
  border-radius: 12px;
  padding: 12px;
}

.cookie-consent__category-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.cookie-consent__category h4 {
  margin-bottom: 4px;
  font-family: "Dosis", sans-serif;
}

.cookie-consent__cookie-list {
  margin-top: 8px;
  font-size: 14px;
  color: var(--gold-hover);
}

.cookie-consent__always-active {
  margin-top: 6px;
  color: var(--gold);
  font-weight: 700;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch__slider {
  position: absolute;
  inset: 0;
  background: var(--light-bg);
  border: 1px solid var(--beige);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cookie-switch__slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: var(--gold);
}

.cookie-switch input:checked + .cookie-switch__slider::before {
  transform: translateX(20px);
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .cookie-consent__banner {
    grid-template-columns: 1fr;
  }
  .cookie-consent__actions,
  .cookie-consent__modal-actions {
    justify-content: flex-start;
  }
}
.site-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.site-popup.is-open {
  display: flex;
}

.site-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(2px);
}

.site-popup__dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.site-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.site-popup__image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.site-popup__content {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.site-popup__content h2 {
  margin: 0;
  color: var(--dark);
}

.site-popup__content p {
  margin: 0;
  color: #2d2d2d;
  line-height: 1.55;
}

.site-popup__link {
  justify-self: start;
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.site-popup__link:hover {
  background: var(--gold-hover);
}

@media (max-width: 768px) {
  .site-popup {
    padding: 12px;
  }
  .site-popup__image {
    height: 320px;
  }
  .site-popup__content {
    padding: 20px;
  }
}/*# sourceMappingURL=main.css.map */