/* ---------------------------
   Base
---------------------------- */
:root{
    --ink: #2E2A26;
    --ink-2: #3A332D;
    --sand: #F4F1EC;
    --card: #F7F4EE;
    --olive: #5E7C4A;
    --accent: #C97A3D;
  }
  
  html { scroll-behavior: smooth; }
  
  body{
    color: var(--ink);
    background: #fff;
    min-width: 375px;
  }
  
  .content{
    width: 100%;
  }
  

  
  .section--sand{ background: var(--sand); }
  .section--white{ background: #fff; }
  
  .section__container{ max-width: 1200px; }
  
  .section__title{
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 850;
    color: var(--ink-2);
    margin: 0;
  }
  
  .section__lead{
    font-size: 18px;
    line-height: 1.8;
    color: var(--ink);
  }
  
  /* ---------------------------
     Buttons
  ---------------------------- */
  .btn-olive{
    background: var(--olive);
    color: #fff;
    border-radius: 12px;
    font-weight: 750;
  }
  .btn-olive:hover,
  .btn-olive:focus{
    background: #506a3f;
    color: #fff;
  }
  
  .btn-olive-pill{
    background: var(--olive);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
  }
  .btn-olive-pill:hover,
  .btn-olive-pill:focus{
    background: #506a3f;
    color: #fff;
  }
  
  /* ---------------------------
     Welcome chips / badges
  ---------------------------- */
  .badge-pill{
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
    font-weight: 700;
  }
  
  .chip{
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  /* ---------------------------
     Hero
  ---------------------------- */
  .hero{
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
  }
  
  .hero__bg{
    position: absolute;
    inset: 0;
    background-image: url("../images/chata.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(0.95) contrast(1.05);
  }
  
  .hero__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(30,25,20,0.72) 0%,
      rgba(30,25,20,0.42) 46%,
      rgba(30,25,20,0.12) 100%
    );
  }
  
  .hero__container{
    position: relative;
    width: min(1100px, calc(100% - 48px));
    padding: 20px 0;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  
  .hero__content{
    max-width: 680px;
    color: #fff;
    margin: auto;
    text-align: center;
  }
  
  .hero__kicker{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 14px;
  }
  
  .hero__title{
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 16px 0;
    font-weight: 850;
  }
  
  .hero__accent{ color: var(--accent); }
  
  .hero__text{
    font-size: 18px;
    line-height: 1.65;
    margin: 0 auto 26px auto;
    max-width: 620px;
    color: rgba(255,255,255,0.92);
  }
  
  .hero__cta{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .hero__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 750;
  }
  
  .hero__btn--primary{
    background: var(--olive);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    min-width: 220px;
    text-align: center;
    font-weight: 800;
  }
  .hero__btn--primary:hover{ background: #506a3f; color:#fff; }
  
  .hero__btn--secondary{
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.65);
    backdrop-filter: blur(2px);
  }
  .hero__btn--secondary:hover{
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
  
  .hero__note{
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 18px;
  }
  
  .hero__meta{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
  }
  
  .hero__pill{
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 14px;
  }
  
  /* ---------------------------
     Carousel / Accommodation
  ---------------------------- */
  .carousel-img{
    max-height: 460px;
    object-fit: cover;
  }
.info-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
  
  /* ---------------------------
     Info cards (Accommodation + Directions)
  ---------------------------- */
  .info-card{
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 16px;
  }
  
  .info-card__title{
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--ink-2);
  }
  
  .info-card__text{
    font-size: 14px;
    line-height: 1.6;
  }
  
  .info-card__p{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
  }
  
  .info-card__list{
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* ---------------------------
     Pricing table
  ---------------------------- */
  .pricing-table thead{
    background: var(--ink-2);
    color: #fff;
  }
  
  .pricing-notes{
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* ---------------------------
     Gallery
  ---------------------------- */
  .gallery-card{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
/*     box-shadow: 0 10px 24px rgba(0,0,0,0.12);
 */  }
  
  .gallery-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* ---------------------------
   FAQ (Bootstrap accordion look tweaks)
---------------------------- */
.accordion-button{
  position: relative;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  padding-left: 64px; /* místo na ikonku vlevo */
}

/* společný styl ikonky */
.accordion-button::before{
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--card);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* konkrétní ikonky pro jednotlivé dotazy */
#faq-heading-0 .accordion-button::before{
  content: '🗓️'; /* rezervace */
}
#faq-heading-1 .accordion-button::before{
  content: '⏰'; /* kdy rezervovat */
}
#faq-heading-2 .accordion-button::before{
  content: '💰'; /* ceny */
}
#faq-heading-3 .accordion-button::before{
  content: '👀'; /* prohlídka */
}
#faq-heading-4 .accordion-button::before{
  content: '👨‍👩‍👧‍👦'; /* děti */
}

.accordion-button:not(.collapsed){
  background: #fff !important;
  color: var(--ink-2);
}

.accordion-body{
  background: #fff;
  border-radius: 0 0 12px 12px;
  font-size: 15px;
  line-height: 1.7;
}
  
  /* ---------------------------
     Directions note
  ---------------------------- */
  .directions-note{
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink);
  }
  
  /* ---------------------------
     Footer
  ---------------------------- */
  .site-footer{
    background: var(--ink);
    color: #fff;
  }
  
  .site-footer__brand{
    font-weight: 800;
    font-size: 22px;
  }
  
  .site-footer__desc{
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
    text-align: center;
    opacity: 0.95;
  }
  
  .footer-link{
    color: #fff;
    text-decoration: none;
  }
  .footer-link:hover{
    text-decoration: underline;
  }
  
  .site-footer__bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    opacity: 0.8;
  }
  