/*
  Barevná paleta vytažená z titulní strany PDF (viz přiložený náhled):
  - Hlavní akcent (bronzově hnědá z loga/typo): #8E7651
  - Tmavě hnědá (dřevo/typografie): #3A2A1F
  - Světle béžová (pozadí): #F4EBDD
  - Krémová (obsahové pozadí): #FAF6F0
  - Tmavá na text: #27231F
*/

:root {
  --color-accent: #8E7651;
  --color-accent-strong: #7b6748;
  --color-wood: #3A2A1F;
  --color-bg: #F4EBDD;
  --color-surface: #FAF6F0;
  --color-text: #27231F;
  --color-muted: #6d6257;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--color-text);
  background: radial-gradient(1200px 600px at 70% 10%, #fff 0, var(--color-bg) 70%);
}

.container {
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

/* Dekor dřevěného pruhu vlevo jako v PDF */
.wood-strip {
  position: fixed;
  inset: 0 auto 0 0;
  width: clamp(40px, 10vw, 120px);
  background: linear-gradient(180deg, #4a3225, #301f15 60%, #4a3225);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 240, .8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.nav-toggle { display:none; background:none; border:1px solid var(--color-accent); padding:8px 10px; border-radius:10px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; box-shadow: var(--shadow); background:#fff; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.brand-text { display: grid; }
.brand-top {
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--color-muted);
}
.brand-name {
  font-weight: 800;
  letter-spacing: .08em;
}

.site-nav { display: flex; gap: 14px; align-items: center; }
.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
}
.site-nav a:hover { background: rgba(0,0,0,.04); }
.social-link { color: var(--color-accent); border: 1px solid transparent; }
.social-link:hover { border-color: var(--color-accent); }

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--color-accent-strong); }
.btn-outline {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.btn-outline:hover { background: rgba(142,118,81,.08); }

.hero {
  position: relative;
  padding: 72px 0 36px;
}
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 32px; }
.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--color-wood);
}
.hero-text p { font-size: 18px; max-width: 58ch; }
.cta-row { display: flex; gap: 12px; margin-top: 18px; }
/* velké logo v hero */
.hero-logo { width: clamp(160px, 28vw, 340px); margin-left: auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,.12)); }

.section { padding: 56px 0; }
.section-neutral { background: var(--color-surface); }

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
@media (max-width: 900px) {
  .two-cols { grid-template-columns: 1fr; }
  .wood-strip { display: none; }
  .nav-toggle { display:block; }
  .site-nav { position: absolute; right: 16px; top: 64px; background:#fff; box-shadow: var(--shadow); border:1px solid rgba(0,0,0,.06); border-radius:12px; padding:8px; display:none; flex-direction: column; min-width: 220px; }
  .site-nav.open { display:flex; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card.highlight { border: 1px solid var(--color-accent); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}
@media (max-width: 1100px){ .menu-grid { grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 800px){ .menu-grid { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 540px){ .menu-grid { grid-template-columns: 1fr; } }

.dish {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 8px;
}
.dish img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; }
.dish h3 { margin: 8px 0 0; color: var(--color-wood); font-size: 18px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-list { padding-left: 0; list-style: none; }
.hours td { padding: 6px 10px; }

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
  color: var(--color-muted);
}
.footer-inner { display:flex; align-items:center; justify-content:space-between; }

/* mapa */
.map-wrap { border-radius: 14px; overflow:hidden; box-shadow: var(--shadow); }


