    /* SEKČNÝ LAYOUT */

    section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 8px 16px 24px;
    }

    section h2 {
      font-size: 20px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    section p {
      font-size: 15px;
      color: var(--muted);
    }

    .card {
      background: #fff;
      border-radius: var(--radius);
      padding: 14px 14px 16px;
      box-shadow: var(--shadow);
      margin-top: 10px;
    }

    /* O CHALÚPKE */

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .about-list {
      margin-top: 6px;
      font-size: 14px;
      color: var(--muted);
    }

    .about-list li { margin-left: 18px; margin-bottom: 4px; }
    
    .about-photo {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-photo img {
      height: 330px;
      width:  100%;
      object-fit: cover;
    }
    
.about-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.about-tags .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:#f3efe6;
  border:1px solid rgba(0,0,0,.08);
  font-size:13px;
  line-height:1;
  color:#2f2f2f;
  white-space:nowrap;
}

.about-tags .dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#b58b2a; /* slnečnicový odtieň */
  opacity:.9;
}

.about-tags .tag:hover{
  background:#ece5d8;
}

    
/* WELLNESS */

.wellness-photos {
  display: grid;
  grid-template-columns: repeat(2, auto); /* default: 2x2 */
  gap: 8px;
  margin-top: 10px;
  justify-content: center;   /* vycentruje celý grid */
  justify-items: center;     /* vycentruje obsah v bunkách (fotky, text) */
  text-align: center;        /* vycentruje text vnútri každej bunky */
}

.wellness-photos img {
  border-radius: 12px;
  height: 110px;
  width: 210px;              /* alebo podľa tvojho layoutu */
  max-width: 100%;
  object-fit: cover;
}

/* keď je dosť miesta, zobraz 4 fotky v jednom rade */
@media (min-width: 900px) {
  .wellness-photos {
    grid-template-columns: repeat(4, auto);
  }
}
.wellness-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
/* karta vo wellness sekcii */
#wellness .card {
  text-align: center;      /* vycentruje text vnútri karty */
}

/* alebo ak chceš cieliť len na ten odstavec: */
#wellness .card p {
  text-align: center;
}

/* centrovanie tagov pod wellness textom */
.wellness-tags{
  justify-content: center;
  margin-top: 14px;
}





/* GALÉRIA */

#galeria .card {
  text-align: center;              /* vycentruje všetok text vnútri karty */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 6px;
  margin-top: 10px;
  justify-items: center;           /* vycentruje obsah v jednotlivých bunkách */
}

.gallery-grid img {
  border-radius: 12px;
  height: 90px;
  object-fit: cover;
  width: 100%;                     /* nech pekne vyplní svoj stĺpec */
  max-width: 220px;                /* môžeš doladiť podľa layoutu */
}

/* CENNÍK */

#cennik .card {
  text-align: center;        /* vycentruje text vnútri karty */
}

.prices-table {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.prices-table strong {
  color: var(--text);
}

.prices-table p {
  margin-bottom: 4px;
}

.highlight {
  background: rgba(242,209,107,0.18);
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  margin-top: 8px;
}


/* ŠPECIÁLNA PONUKA – ROMANTICKÁ VÝZDOBA */

/* ŠPECIÁLNA PONUKA – ROMANTICKÁ VÝZDOBA */

#specialna-ponuka {
  margin-top: 32px;
}

#specialna-ponuka .card {
  text-align: center;          /* celý obsah karty vystredný */
}

#specialna-ponuka h2 {
  display: inline-flex;        /* aby sa dalo centrovať spolu s ikonou */
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

#specialna-ponuka h2 i {
  font-size: 1.1rem;
  color: #e07a5f;
}

/* zoznam – blok uprostred, text v ňom doľava kvôli prehľadnosti */
.special-list {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem auto 0.8rem;
  display: inline-block;       /* blok uprostred */
  text-align: left;            /* text vo vnútri doľava */
}

.special-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* zvýraznenie ceny – vystredené v rámci karty */
.special-price {
  background: rgba(242,209,107,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  margin: 0.8rem auto 0.9rem;
  display: inline-block;       /* aby nešla na celú šírku */
  text-align: center;
}

/* odkazy v texte */
#specialna-ponuka a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

#specialna-ponuka a:hover {
  text-decoration: none;
}



    /* REZERVÁCIA */

    .reservation-info {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .reservation-box {
      background: #fff;
      border-radius: var(--radius);
      padding: 10px;
      box-shadow: var(--shadow);
    }

    .reservation-box iframe {
      width: 100%;
      border: none;
      min-height: 600px;
    }

    /* RECENZIE */

    .reviews {
      display: grid;
      gap: 10px;
      margin-top: 8px;
    }

    .review {
      background: #fff;
      border-radius: 14px;
      padding: 10px 12px;
      box-shadow: var(--shadow);
      font-size: 14px;
      color: var(--muted);
    }

    .review strong { display: block; margin-bottom: 4px; color: var(--text); }

    .review small { color: var(--muted); }

    .rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #f5a623;
    }

    .rating-badge span {
      color: #555;
      font-size: 13px;
    }

    /* KONTAKT */

    .contact-list {
      list-style: none;
      margin-top: 6px;
      font-size: 14px;
      color: var(--muted);
    }

    .contact-list li { margin-bottom: 4px; }

    .contact-map {
      margin-top: 10px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    /* plávajúce tlačidlá */

    .floating-contact {
      position: fixed;
      bottom: 14px;
      right: 14px;
      z-index: 60;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .floating-contact a {
      background: var(--accent);
      color: #fff;
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      box-shadow: var(--shadow);
    }

    /* DESKTOP ÚPRAVY */

    @media (min-width: 900px) {
      .nav-links { display: flex; }
      .burger { display: none; }
      #nav-toggle, .mobile-menu { display: none; }

      .hero {
        padding: 22px 16px 40px;
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
      }

      .hero-photo img {
        height: 280px;
      }

      .about-grid {
        grid-template-columns: 1.1fr 1fr;
      }

      .gallery-grid img {
        height: 130px;
      }

      .wellness-photos img {
        height: 130px;
      }

      section h2 { font-size: 22px; }
    }

/* --- GALÉRIA LIGHTBOX --- */

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, auto); /* default: 2 stĺpce (2x4) */
  gap: 8px;
  margin-top: 10px;
  justify-content: center;   /* celý grid na stred */
  justify-items: center;     /* fotky na stred v stĺpcoch */
}

.gallery-photos img {
  border-radius: 12px;
  height: 110px;             /* pásik ako doteraz */
  width: 210px;              /* šírka náhľadu */
  max-width: 100%;
  object-fit: cover;
}

/* keď je dosť miesta – 4 stĺpce (4x2) */
@media (min-width: 900px) {
  .gallery-photos {
    grid-template-columns: repeat(4, auto);
  }
}

/* Lightbox overlay */

#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#lightbox-overlay.open {
  display: flex;
}

.lightbox-inner {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 999px;
  border: none;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 999px;
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-arrow.left { left: -44px; }
.lightbox-arrow.right { right: -44px; }

@media (max-width: 600px) {
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
  .lightbox-arrow.left { left: 6px; }
  .lightbox-arrow.right { right: 6px; }
}

  
    /* CTA blok vpravo v navigácii */
    .nav-cta {
      display: flex;
      gap: 8px;
      margin-left: auto;
      align-items: center;
    }
    .nav-cta .nav-btn {
      font-size: 13px;
      padding: 8px 14px;
    }
.logo {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.logo img {
  display: block;
  height: 40px;      /* výška loga v menu */
  width: auto;
}








/* Poukazy – grid ako wellness */
#poukazy .voucher-head,
#poukazy .voucher-header,
#poukazy .section-intro{
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
#poukazy .voucher-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
#poukazy p{
  text-align: center !important;
}
@media (max-width: 1100px){
  #poukazy .voucher-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  #poukazy .voucher-grid{ grid-template-columns: 1fr; }
}

#poukazy .voucher-item{
  display:flex;
  flex-direction:column;
  gap:10px;
}

#poukazy .voucher-photos img{
  width:100%;
  height:auto;
  border-radius: 16px;
  cursor: zoom-in;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

#poukazy .voucher-photos img:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

/* Tag ako tlačidlo – použije tvoju .tag estetiku */
#poukazy .voucher-actions{
  display:flex;
  justify-content:center;
}

#poukazy .tag-link{
  text-decoration:none;
  cursor:pointer;
  user-select:none;
}

/* jemne doladiť tagy v tejto sekcii */
#poukazy .poukazy-tags{
  margin-top: 10px;
}




/* KONTAKTY */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.contact-icon {
  width: 1.5rem;
  display: inline-flex;
  justify-content: center;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* FOOTER – firemné údaje */

.site-footer {
  margin-top: 40px;
  padding: 12px 16px;
  font-size: 12px;
  background: #f7f2e8;       /* jemné pozadie, môžeš zmeniť */
  color: var(--muted);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* všetko do stredu */
  gap: 0.3rem 0.8rem;
  text-align: center;
}

.site-footer-inner span {
  white-space: nowrap;       /* na väčších displejoch to drží v riadkoch */
}
.site-footer-inner a {
  color: inherit;
            /* zrušíme underline z <a> */
}

.site-footer-inner a span {
  text-decoration: underline;       /* podčiarkneme len text, nie bodku */
  text-decoration-thickness: 1px;
}

.site-footer-inner a:hover span {

}

@media (min-width: 768px) {
  .site-footer-inner > *:not(:last-child)::after {
    content: " •";
    margin-left: 0.3rem;
  }
}


/* oddeľovacie bodky medzi položkami na väčších displejoch */
@media (min-width: 768px) {
  .site-footer-inner span:not(:last-child)::after {
    content: " •";
    margin-left: 0.3rem;
  }
}

/* HERO nadpis – finálne nastavenie veľkosti */
.hero-title.cookie-regular {
  font-size: 2.2rem !important;
  color: #8e5b23; /* hnedá podobná logu, môžeš doladiť */
}

/* STRAVOVANIE */

#stravovanie {
  margin-top: 32px;
}

#stravovanie .card {
  text-align: center;
}

#stravovanie h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

#stravovanie a {               /* alebo konkrétna farba, napr. #5a3b28 */
  text-decoration: underline;
}

#stravovanie p {
  max-width: 700px;
  margin: 0.4rem auto;
}

/* FAQ */

#faq {
  margin-top: 32px;
}

#faq .card {
  text-align: left;
}

#faq h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

#faq h2 i {
  font-size: 1.8rem;
  color: #000000;
}

.faq-intro {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* skupiny FAQ */

.faq-groups {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-group {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  padding: 0.6rem 0.8rem;
}

/* nadpis skupiny – summary */

.faq-group > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-group > summary::marker {
  display: none;
}

.faq-group > summary::-webkit-details-marker {
  display: none;
}

/* malá šípka vpravo */

.faq-group > summary::after {
  content: "▾";
  font-size: 0.9rem;
  margin-left: 0.5rem;
  transition: transform 0.15s ease;
}

.faq-group[open] > summary::after {
  transform: rotate(180deg);
}

/* vnútro skupiny */

.faq-items {
  margin-top: 0.6rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.faq-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}

/* na mobiloch nech je všetko pekne vzdušné */

@media (max-width: 600px) {
  .faq-group {
    padding: 0.6rem 0.6rem;
  }

  .faq-item p {
    font-size: 0.88rem;
  }
}


/* posun cieľa kotvy nižšie o výšku menu */
section {
  scroll-margin-top: 85px;   /* uprav podľa výšky horného menu */
}


/* Language switcher */
.lang-switcher{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-right:12px;
  font-size:13px;
  letter-spacing:.04em;
}
.lang-switcher .lang-link{
  text-decoration:none;
  opacity:.7;
}
.lang-switcher .lang-link:hover{ opacity:1; }
.lang-switcher .lang-link.active{
  opacity:1;
  font-weight:700;
}
.lang-switcher .lang-sep{ opacity:.4; }
@media (max-width: 820px){
  .lang-switcher{ margin-right:8px; font-size:12px; }
}

/* REKREAČNÝ POUKAZ */

#poukaz .card { text-align: center; }

#poukaz p{
  max-width: 760px;
  margin: 0.4rem auto;
}

#poukaz .poukaz-steps{
  list-style: none;
  padding: 0;
  margin: 0.8rem auto 0.6rem;
  display: inline-block;
  text-align: left;
}

#poukaz .poukaz-steps li{
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: var(--text);
}

#poukaz .poukaz-note{
  margin-top: 0.8rem;
  color: var(--muted);
}

/* logá partnerov */
#poukaz .poukaz-partners{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 vedľa seba */
  gap: 16px;
  margin-top: 18px;
  align-items: center;
}

@media (max-width: 768px){
  #poukaz .poukaz-partners{
    grid-template-columns: repeat(2, 1fr); /* mobil 2 vedľa seba */
  }
}

#poukaz .partner{
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 110px;          /* pevná rovnaká výška */
}

#poukaz .partner img{
  max-width: 130px;
  max-height: 70px;       /* aby nepresahovali výšku boxu */
  width: auto;
  height: auto;
  object-fit: contain;
}






/* =====================================================
   GLOBÁLNE TAGY – zjednotené (hero + cenník + poukaz)
===================================================== */

.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 14px;
  border-radius:999px;
  background:#f3efe6;
  border:1px solid rgba(0,0,0,.08);
  font-size:13px;
  line-height:1;
  color:#2f2f2f;
  white-space:nowrap;
  text-decoration:none;
  transition:0.2s ease;
}

.tag:hover{
  background:#ece5d8;
}

/* Rekreačný poukaz – jemná staroružová */
.tag.tag-voucher{
  background:#e7caca;
  color:#5a2a2a;
  border:1px solid #d9b2b2;
  font-weight:600;
}

.tag.tag-voucher i{
  color:#5a2a2a;
}

/* CENNÍK – vycentrovanie poukazu */
.cennik-voucher{
  margin:14px 0 8px;
  text-align:center;
}

/* =====================================================
   REKREAČNÝ POUKAZ – jemné doladenie partner boxov
===================================================== */

#poukaz .partner{
  background:#f8f8f8;
  border-radius:18px;
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:120px;
}

#poukaz .partner img{
  max-width:140px;
  max-height:75px;
  width:auto;
  height:auto;
  object-fit:contain;
}
