/* =========================================================================
   VILA V ZAHRADÁCH — společný styl (styles.css)
   -------------------------------------------------------------------------
   Barvy a písma se řídí proměnnými níže v :root. Když budeš chtít cokoliv
   sladit, měň hodnoty jen tady a projeví se to na celém webu.
   ========================================================================= */

:root {
  /* Barevná paleta */
  --green:       #1F4E46;   /* hlavní tmavě zelená */
  --green-deep:  #163A34;   /* tmavší odstín (hero, patička) */
  --green-soft:  #2C5D54;   /* jemnější zelená pro přechody */
  --cream:       #EFEBE5;   /* teplá krémová (pozadí) */
  --cream-deep:  #E4DDD1;   /* tmavší krémová (oddělovače) */
  --sand:        #B89B6E;   /* pískový akcent (linky, detaily) */
  --ink:         #22322D;   /* text na krémovém pozadí */
  --ink-soft:    #4A574F;   /* sekundární text */

  /* Písma */
  --serif: "Times New Roman", Times, Georgia, serif;
  --mono:  "Anonymous Pro", "Courier New", monospace;

  /* Rozměry */
  --wrap: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- Typografie ---------- */
/* Nadpisy: Anonymous Pro (stejný font jako logo). Text v odstavcích zůstává v Times New Roman. */
h1, h2, h3 { font-family: var(--mono); font-weight: 700; line-height: 1.18; letter-spacing: 0.04em; }
h2 { font-size: clamp(23px, 3.4vw, 36px); color: var(--green); margin-bottom: 22px; }
h3 { font-size: 19px; color: var(--green); letter-spacing: 0.03em; }
p  { font-size: 17px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  display: inline-block;
  margin-bottom: 14px;
}

a { color: inherit; }

/* ---------- Navigace ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 235, 229, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-deep);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--mono); font-weight: 700; font-size: 15px; text-transform: uppercase; color: var(--green); text-decoration: none; letter-spacing: 0.14em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-book {
  border: 1px solid var(--green); border-radius: 2px;
  padding: 8px 16px !important; color: var(--green) !important;
}
.nav-book:hover { background: var(--green); color: var(--cream) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-family: var(--mono); color: var(--green); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
  /* FOTO ÚVODNÍ: nahraj na server soubor hero.jpg — objeví se sám.
     Dokud tam není, zůstane klidná tmavě zelená plocha. */
  background-color: var(--green-deep);
  background-image:
    linear-gradient(180deg, rgba(22,58,52,0.45), rgba(22,58,52,0.68)),
    url("hero.jpg");
  background-size: cover; background-position: center;
}
.hero-inner { padding: 40px 24px; max-width: 760px; }
.hero .eyebrow { color: rgba(239,235,229,0.85); }
.hero h1 { font-size: clamp(32px, 7vw, 70px); color: var(--cream); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.hero-rule { width: 68px; height: 1px; background: var(--sand); margin: 22px auto; }
.hero .l2 { display: block; }
.hero-actions { margin-top: 34px; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-block; font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 13px 30px; border-radius: 2px; cursor: pointer; transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-solid { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-solid:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(239,235,229,0.6); }
.btn-ghost:hover { background: var(--cream); color: var(--green); }
.btn-dark { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-dark:hover { background: var(--green-deep); }

/* ---------- Sekce ---------- */
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.center { text-align: center; }
.lead { font-size: 19px; color: var(--ink-soft); max-width: 680px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Úvod / welcome */
.welcome-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.welcome-grid h2 { }

/* Rozcestník (3 segmenty) */
.hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.hub-card {
  display: block; text-decoration: none; color: var(--ink);
  background: #fff; border: 1px solid var(--cream-deep); border-radius: 3px;
  overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(22,58,52,0.14); }
.hub-photo { height: 210px; background: var(--green-soft); background-size: cover; background-position: center; }
.hub-body { padding: 24px 26px 30px; }
.hub-body h3 { margin-bottom: 8px; }
.hub-body p { font-size: 15px; color: var(--ink-soft); }
.hub-more { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-top: 14px; display: inline-block; }

/* Vlastnosti / features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--cream-deep); border: 1px solid var(--cream-deep); margin-top: 44px; }
.feature { background: var(--cream); padding: 34px 26px; }
.feature .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--sand); }
.feature h3 { font-size: 19px; margin: 12px 0 8px; }
.feature p { font-size: 15px; color: var(--ink-soft); }

/* Okolí */
.area { background: var(--green); color: var(--cream); }
.area h2 { color: var(--cream); }
.area .eyebrow { color: var(--sand); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 40px; margin-top: 44px; }
.area-item h3 { color: var(--cream); font-size: 18px; margin-bottom: 6px; }
.area-item p { font-size: 15px; color: rgba(239,235,229,0.78); }

/* Pásmo tří fotek (podstránky) */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.strip div { height: 260px; background: var(--green-soft); background-size: cover; background-position: center; border-radius: 3px; }

/* Záhlaví podstránky */
.pagehead { background: var(--green-deep); color: var(--cream); padding: 120px 0 90px; text-align: center; }
.pagehead h1 { font-size: clamp(28px, 6vw, 54px); color: var(--cream); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.pagehead .eyebrow { color: var(--sand); }
.pagehead p { max-width: 620px; margin: 18px auto 0; color: rgba(239,235,229,0.82); }

/* CTA blok */
.cta { text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta .contacts { font-family: var(--mono); font-size: 14px; letter-spacing: 0.04em; color: var(--ink-soft); margin: 22px 0 30px; line-height: 2; }
.cta .contacts a { color: var(--green); text-decoration: none; }

/* ---------- Rezervační kalendář ---------- */
.reserve { background: var(--cream-deep); }
.reserve-box {
  max-width: 620px; margin: 40px auto 0; background: #fff;
  border: 1px solid var(--cream-deep); border-radius: 4px; padding: 38px 36px;
}
.field { margin-bottom: 20px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--serif); font-size: 16px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--cream-deep); border-radius: 2px;
  background: var(--cream); outline: none; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.field textarea { resize: vertical; min-height: 88px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reserve .btn { width: 100%; text-align: center; margin-top: 6px; }
.reserve-note { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 16px; letter-spacing: 0.03em; }

/* ---------- Patička ---------- */
.footer { background: var(--green-deep); color: rgba(239,235,229,0.8); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; font-weight: 400; }
.footer .fbrand { font-family: var(--mono); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cream); margin-bottom: 14px; }
.footer p, .footer a { font-size: 15px; color: rgba(239,235,229,0.8); text-decoration: none; }
.footer a:hover { color: var(--cream); }
.footer ul { list-style: none; line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(239,235,229,0.15); margin-top: 48px; padding-top: 24px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- VOP / textová stránka ---------- */
.doc { max-width: 760px; margin: 0 auto; }
.doc h2 { font-size: 26px; margin: 40px 0 14px; }
.doc h3 { font-size: 19px; margin: 26px 0 10px; }
.doc p, .doc li { font-size: 16px; color: var(--ink-soft); margin-bottom: 12px; }
.doc ul, .doc ol { padding-left: 22px; }

/* ---------- Odhalení při scrollu ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responzivita ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--cream-deep);
    padding: 6px 28px 18px; box-shadow: 0 12px 24px rgba(22,58,52,0.10);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; width: 100%; padding: 13px 0; font-size: 14px; border-bottom: 1px solid var(--cream-deep); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-book { border: 1px solid var(--green); border-radius: 2px; text-align: center; padding: 12px 16px !important; margin-top: 10px; }
  .welcome-grid, .hub, .features, .area-grid, .strip, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .features { border: 1px solid var(--cream-deep); }
  .section { padding: 64px 0; }
  .welcome-grid { gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
