html {
  scroll-behavior: smooth;
}

/* =========================
   ZÁKLAD / STARÝ PAPÍR
========================= */
body {
  margin: 0;
  color: #2b2b2b;

  font-family: "Cormorant Garamond", "Georgia", serif;

  background:
    radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(180deg, #e8ddc2 0%, #cdbf9a 45%, #6f8f6f 100%);
}

/* =========================
   HLAVIČKA
========================= */
.header {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;

  /* 🔥 KLÍČ: 1/3 výšky obrazovky */
  min-height: 33vh;

  padding: 20px;

  background: url("myto1.png") center/cover no-repeat;

  border-bottom: 4px solid #8a6f4a;

  color: #f5f1e6;
}

.header{
  position:relative;
  overflow:hidden;

  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;

  min-height:30vh;
  padding:20px 15px;

  background:url("myto1.png") center/cover no-repeat;

  border-bottom:4px solid #8a6f4a;

  color:#f5f1e6;
}

/* jemné ztmavení obrázku (aby byl čitelný text) */
.header::after{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.35);

  z-index:1;
}

/* text vždy nahoře */
.header h1,
.header p,
.header div{
  position:relative;
  z-index:2;
}

.header h1{
  font-family:"Cormorant Garamond",serif;
  font-size:44px;
  margin:0;
  letter-spacing:2px;
}

/* =========================
   TEXT NAD VŠÍM
========================= */
.header h1,
.header p,
.header div {
  position: relative;
  z-index: 3;
}

/* =========================
   NADPIS – KNIŽNÍ STYL
========================= */
.header h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 56px;
  letter-spacing: 3px;
  margin: 0;

  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.header p {
  margin-top: 10px;
  font-style: italic;
  opacity: 0.9;
}

/* Kryštof */
.header::after {
  content: "";
  display: block;
  margin: 25px auto 0;

  width: 120px;
  height: 120px;

  background: url("krystof.png") center/cover no-repeat;
  border-radius: 8px;

  border: 2px solid #8a6f4a;
}

/* =========================
   MENU (pod hlavičkou)
========================= */
.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 10px;

  background: linear-gradient(180deg, #3a5c45, #2f4a38);

  padding: 12px 18px;

  border-bottom: 3px solid #8a6f4a;

  position: sticky;
  top: 0;
  z-index: 1000;

  box-shadow: inset 0 0 12px rgba(0,0,0,0.25);
}

.menu a {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 16px;

  color: #f5f1e6;
  text-decoration: none;

  padding: 6px 12px;
  border-radius: 6px;

  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.menu a:hover {
  color: #f0d9a6;
  background: rgba(245, 241, 230, 0.08);
  border: 1px solid #8a6f4a;
}

/* =========================
   SEKCE (KNIHA / KAPITOLY)
========================= */
.section {
  max-width: 850px;
  margin: 40px auto;
  padding: 60px 25px;

  background: linear-gradient(180deg, #f6eddc 0%, #f1e3c8 100%);

  border: 2px solid #8a6f4a;
  border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.18);

  /* rukopisný, ale čitelný styl s diakritikou */
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.3px;

  position: relative;

  /* jemný vstup */
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.7s ease forwards;
}

/* postupné načítání */
.section:nth-of-type(1) { animation-delay: 0.1s; }
.section:nth-of-type(2) { animation-delay: 0.2s; }
.section:nth-of-type(3) { animation-delay: 0.3s; }
.section:nth-of-type(4) { animation-delay: 0.4s; }
.section:nth-of-type(5) { animation-delay: 0.5s; }
.section:nth-of-type(6) { animation-delay: 0.6s; }
.section:nth-of-type(7) { animation-delay: 0.7s; }
.section:nth-of-type(8) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* dekorace */
.section::before {
  content: "❦";
  position: absolute;
  top: 10px;
  right: 15px;

  font-size: 28px;
  opacity: 0.18;
}

/* =========================
   NADPISY SEKCE
========================= */
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;

  color: #3a5c45;

  border-bottom: 2px solid #8a6f4a;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

/* =========================
   SKOKY NA ANCHORY
========================= */
section {
  scroll-margin-top: 90px;
}

/* =========================
   PATIČKA
========================= */
.footer {
  text-align: center;
  padding: 30px;

  background: #3a5c45;
  color: #f5f1e6;

  border-top: 3px solid #8a6f4a;

  font-size: 14px;
}