:root{
  --bg: #f7f3ee;          /* základní světlé pozadí */
  --alt: #d6e6dd;         /* jemná světle zelená pro bloky 2 a 4 */
--text: #141c1f;    /* cca o 40 % tmavší */
--muted: #3f4a50;   /* cca o 40 % tmavší */

  --brand: #1f4d3a;       /* tmavě zelená */
  --brand-2: #163a2c;

  --border: rgba(31, 42, 46, 0.12);
  --shadow: 0 16px 36px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
   font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; }
a:hover{ text-decoration: underline; }

img{ max-width:100%; display:block; }

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand);
}

.header-row{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 0;
}

.brand{
  color: #f3fbf6;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 16px;
  justify-self: start;
}

.nav{
  display: flex;
  justify-content: center;   /* ⭐ skutečný střed */
  gap: 22px;
}

.nav a{
  color: #f7fbf8;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: .25px;
}

.nav a:hover{
  background: rgba(255,255,255,.18);
  color: #ffffff;
}

.nav a.active{
  background: rgba(255,255,255,.22);
  color: #ffffff;
}

.nav-toggle{
  display:none;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  color: #ffffff;
  justify-self: end;
}

/* HERO */
.hero{
  position: relative;
  background: var(--bg); /* místo var(--bg-light) */
  padding: 80px 0 0;
}


/* obsah */
.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 0; /* ať je fotka “na lince” */
}

/* Text posuneme nahoru, ale spodek sloupce zůstane na lince */
.hero-text{
  padding-bottom: 24px;
    color: var(--brand-2);
}

.hero-line{
  height: 8px;
  background: var(--brand);
  width: 100%;
  position: static; /* důležité: žádné absolute */
}

/* Text */

.hero-text h1{
  font-size: clamp(34px, 3.6vw, 48px); /* 🔼 lehké zvětšení */
  margin-bottom: 12px;
  text-shadow: 0 3px 8px rgba(0,0,0,.22);
    color: var(--brand-2);
}




.hero-claim{
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--brand-2);
  max-width: 36ch;
}

/* Fotka */
.hero-image{
  display: flex;
  justify-content: flex-end;
}

.hero-image img{
  display:block;
  max-width:100%;
  height:auto;
}

/* linka přilepená k fotce, ale přes celé okno */




/* BLOKY */
.block{
  padding: 56px 0;
  background: var(--bg);
}

.block.block-alt{
  background-color: var(--alt);
}


.block-inner{
  display:block;
}

.block-head h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: .2px;
  color: var(--brand-2);

  /* jemné stínování, slabší než H1 */
  text-shadow: 0 1px 4px rgba(0,0,0,.40);
}

.lead{
  margin: 0;
  color: var(--muted);
  max-width: 85ch;
}

.content{ margin-top: 16px; color: var(--muted); }

/* O mně - více */
.btn-pill{
  font-family: 'Libre Baskerville', Georgia, serif;  /* ⭐ nový font */
  font-style: normal;                              
  font-weight: 400;

  font-size: 15px;
  letter-spacing: .15px;
}



.btn-more:hover{
  background: rgba(31,77,58,.32);
  color: var(--brand-2);
}

.more{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 42, 46, 0.12);
}

.more-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;              /* ⭐ roztáhne přes celý blok */
  margin-top: 18px;
}

.more-grid > div{
  padding: 0 24px;          /* víc vzduchu */
}

.more-grid > div:not(:last-child){
  border-right: 1px solid rgba(31,42,46,.12);
}

.more h3{
  margin: 0 0 8px;
  color: var(--brand-2);
  font-size: 18px;
   text-align: center;
}

.more ul{
  margin: 0 0 0 18px;
  color: var(--muted);

}




/* Co nabízím – “dlaždice” bez rámování */
.list-tiles{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 100%;
}

.tile{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(31, 42, 46, 0.10);
}

.tile:first-child{
  border-top: none;
}

.tile-icon{
  font-size: 24px;
  line-height: 1;
  margin-top: 2px;
}

.tile h3{
  margin: 0 0 4px;
  color: var(--brand-2);
  font-size: 20px;
}
.tile p{
  margin: 0;
  color: var(--muted);
}

/* O terapii layout */
.two-col{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:start;
}

.aside{
  padding-left: 22px;
  border-left: 1px solid rgba(31, 42, 46, 0.12);
}

.aside h3{
  margin: 0 0 10px;
  color: var(--brand-2);
}

.aside ul{
  margin: 0 0 12px 18px;
  color: var(--muted);
}

.mini-contact{
  margin-top: 16px;
  color: var(--muted);
}
.mini-contact a{
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: none;
}
.mini-contact a:hover{ text-decoration: underline; }

.muted{ color: var(--muted); }

/* Ceník */
.price{
  margin-top: 18px;
  max-width: 100%;
  border-top: 1px solid rgba(31,42,46,.12);
}

.price-row{
  display:grid;
  grid-template-columns: 1fr 120px 120px;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31,42,46,.12);
  align-items:center;
  color: var(--text);
}

.price-row.head{
  font-weight: 800;
  color: var(--brand-2);
}

.muted-row{
  color: var(--muted);
}

/* Kontakt */
/* === KONTAKT – text + fotka vedle sebe === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* fotka lehce větší než text */
  gap: 48px;
  align-items: center;
}

.contact-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Mobil */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.space-photo img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.footer-wrap{
  background: var(--brand);
  width: 100%;
}

.footer{
  padding: 22px 0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  color: #f3fbf6;
}

.footer-actions{
  display:flex;
  align-items:center;
  gap: 16px;
}


.footer a:not(.btn-pill){
  color: #f7fbf8;
  text-decoration: none;
  font-weight: 600;
}

.footer a:not(.btn-pill):hover{
  color: #ffffff;
  text-decoration: underline;
}

.footer a:hover{
  color: #ffffff;
  text-decoration: underline;
}

.footer .btn-pill{
  background: rgba(255,255,255,.18);
  color: #ffffff;
}

.footer .btn-pill:hover{
  background: rgba(255,255,255,.26);
  color: #ffffff;
}

.footer-actions{
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer .cookie-link{
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .cookie-link:hover{
  color: #ffffff;
}



.btn-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(31,77,58,.22);
  color: var(--brand);

  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  text-decoration: none;

  border: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.btn-pill:hover{
  background: rgba(31,77,58,.32);
  color: var(--brand-2);
}




/* Responsive */
@media (max-width: 768px){
  .hero-inner{
    grid-template-columns: 1fr;
  }
  .hero-text{
    padding-bottom: 18px;
  }
  .hero-line{
    height: 6px;
  }
}


@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; }

  .nav{
    position: absolute;
    right: 4vw;
    top: 60px;
    background: var(--brand);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
    display:none;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    justify-self: end;
  }
  .nav.is-open{ display:flex; }
}

@media (max-width: 768px){
  .hero-image::after{
    height: 6px;
  }
}

  .hero-image .hero-line{
    height: 6px;
  }



.cards{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 100%;
}

.card-offer{
  padding: 22px 18px;
  background: rgba(255,255,255,.7);
  border-radius: 18px;

  /* jemné stínování */
  box-shadow:
    0 6px 18px rgba(0,0,0,.10),
    0 2px 6px rgba(0,0,0,.06);

  display: flex;
  flex-direction: column;
  align-items: flex-start; /* necháme zarovnané doleva (čitelné) */
    align-items: center;
  text-align: center;
}


.card-icon{
  width: 120px;          /* 🔼 zvětšeno */
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 0 14px;
}

.card-offer h3{
  margin: 0 0 6px;
  color: var(--brand-2);
  font-size: 20px;
}

.card-offer p{
  margin: 0;
  color: var(--muted);
}

/* Mobil */
@media (max-width: 900px){
  .cards{
    grid-template-columns: 1fr;
  }

  .card-icon{
    width: 72px;
    height: 72px;
  }
}


html, body{
  margin: 0;
  padding: 0;
}

#kontakt{
  padding-bottom: 0;   /* aby pod footerem nic nezůstalo */
}

/* ========== Cookies ========== */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 9999;
  padding: 0 16px;
}

.cookie-card{
  width: min(920px, 100%);
  margin: 0 auto;
  background: rgba(22, 58, 44, .96); /* tmavě zelená */
  color: #f3fbf6;
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
}

.cookie-text p{
  margin: 6px 0 0;
  color: rgba(243,251,246,.88);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-btn{
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
}

.cookie-ghost{
  background: rgba(255,255,255,.14) !important;
  color: #ffffff !important;
}

.cookie-ghost:hover{
  background: rgba(255,255,255,.22) !important;
}

/* Modal */
.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.cookie-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.cookie-modal__panel{
  position: relative;
  width: min(760px, 92vw);
  margin: 8vh auto 0;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

.cookie-modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(31,77,58,.08);
}

.cookie-modal__head h3{
  margin: 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  color: var(--brand-2);
}

.cookie-x{
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--brand-2);
}

.cookie-modal__body{
  padding: 14px 16px;
}

.cookie-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.cookie-row small{
  color: rgba(0,0,0,.60);
}

.cookie-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.cookie-modal__foot{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(31,77,58,.06);
}

.cookie-note{
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(0,0,0,.62);
}

.cookie-link{
  border: none;
  background: none;
  padding: 0;
  color: var(--brand-2);
  text-decoration: underline;
  cursor: pointer;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
}

/* Cookies – primární tlačítko (Přijmout vše) jako v menu */
#cookieAcceptAll.cookie-btn{
  background: rgba(255,255,255,.22) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.35);
}

#cookieAcceptAll.cookie-btn:hover{
  background: rgba(255,255,255,.30) !important;
  color: #ffffff !important;
}

/* CV sloupce */
.about-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; /* ⬅️ zmenšeno cca na polovinu */
}

.about-col {
  padding: 0 10px; /* ⬅️ poloviční odsazení od linky */
}

.about-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.about-col h3 {
  text-align: center;
  margin-bottom: 24px;
}

.cv-list {
  list-style: disc;
  padding-left: 20px;
}

.cv-list li {
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Mobil */
@media (max-width: 900px) {
  .about-more {
    grid-template-columns: 1fr;
  }

  .about-col {
    padding: 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .about-col:last-child {
    border-bottom: none;
  }
}



section p,
section ul,
section li{
  max-width: none;
}

#terapie p,
#terapie ul,
#terapie li{
  max-width: none;
  width: 100%;
}

#terapie .lead{
  max-width: none;
}



/* =========================
   MOBIL – finální doladění
   ========================= */
@media (max-width: 600px){

  .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero{
    padding-top: 32px;
  }

  /*
  .hero h1{
    font-size: 2rem;
    line-height: 1.15;
  }
*/

  .hero-claim{
    font-size: 1.1rem;
  }

  .hero-line{
    height: 6px;
  }

  .block,
  .section{
    padding-left: 0;
    padding-right: 0;
  }

  .footer{
    padding: 16px 0;
  }

  .footer-copy{
    font-size: 0.9rem;
    line-height: 1.4;
  }
}



/* === MOBIL: linka přes celou šířku === */
@media (max-width: 768px) {
  .hero-line {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

}
/* === MOBIL: footer úpravy === */
@media (max-width: 768px) {
  .footer-copy {
    font-size: 0.85rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== HERO – desktop 1 řádek, mobil 2 řádky (FINÁL) ===== */

/* Desktop: držet jméno v jednom řádku */
.hero-title{
  white-space: nowrap;
}

/* Mobil: zalomit přesně na 2 řádky + zvětšit písmo */
@media (max-width: 768px){
  .hero-title{
    white-space: normal;
    font-size: 2.6rem;  /* když chceš větší: 2.7–2.9rem */
    line-height: 1.12;
  }
  .hero-last{
    display: block;
  }
}

