:root {
  --mb-dark-green: #184112;
  --mb-medium-green: #2a6121;
  --mb-light-green: #96b38b;
  --mb-beige: #eef4d4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #212529;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-align: center;
}

a { color: var(--mb-dark-green); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--mb-dark-green);
  transition: height 0.15s linear;
}
#main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
  transition: height 0.15s linear;
}
body.page-scrolled #main-nav .container { height: 5rem; }

.main-nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: bold;
}
.main-nav-brand img {
  height: 5rem;
  transition: height 0.15s linear;
}
body.page-scrolled .main-nav-brand img { height: 4rem; }

.main-nav-menu { position: relative; }
.main-nav-menu .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  padding: 0.5rem;
}
.main-nav-menu .menu-toggle svg {
  grid-column: 1; grid-row: 1;
  fill: #fff;
  width: 2.5rem;
  transition: opacity 0.15s linear;
}
.main-nav-menu .menu-toggle svg.icon-close { opacity: 0; }
.main-nav-menu.open .menu-toggle svg.icon-menu { opacity: 0; }
.main-nav-menu.open .menu-toggle svg.icon-close { opacity: 1; }

.nav-dropdown {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 5rem;
  background-color: var(--mb-dark-green);
  padding: 2rem;
  text-align: center;
}
.main-nav-menu.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 0.75rem 0;
}
.nav-dropdown a:hover { color: var(--mb-light-green); }

/* Intro */
.intro {
  height: 42vh;
  min-height: 300px;
  background: var(--mb-dark-green) url(../img/intro.jpg) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
}
.intro img { width: 10rem; }
@media (min-width: 768px) {
  .intro { height: 58vh; }
  .intro img { width: 18rem; }
}

/* Sections */
.section { padding: 3rem 0; }
.section h2 { font-size: 2.25rem; margin-bottom: 2rem; }
.section h3 { font-size: 1.75rem; margin-bottom: 2rem; }
.section h4 { font-size: 1.5rem; margin-bottom: 0; }
.section p { text-align: center; max-width: 760px; margin: 0 auto 1rem; }
.section-anchor { position: relative; top: -7rem; display: block; }

.bg-beige { background: var(--mb-beige); }
.bg-light-green { background: var(--mb-light-green); }
.bg-dark-green { background: var(--mb-dark-green); color: #fff; }

.section-icon.bg-beige {
  padding-top: 4rem;
  background-image: url(../img/flower-light-green.svg), url(../img/flower-light-green.svg);
  background-repeat: no-repeat;
  background-position: center top -25px, center bottom -25px;
  background-size: 155px 50px;
}
.section-icon.bg-light-green {
  padding-top: 4rem;
  background-image: url(../img/flower-beige.svg), url(../img/flower-beige.svg);
  background-repeat: no-repeat;
  background-position: center top -25px, center bottom -25px;
  background-size: 155px 50px;
}

/* Accordion (více/méně) */
.more-toggle {
  display: block;
  margin: 1rem auto 0;
  background: var(--mb-medium-green);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.6rem 2.5rem;
  font-weight: 600;
  cursor: pointer;
}
.more-toggle:hover { background: #24521c; }
.detail { display: none; }
.detail.open { display: block; }
.detail h3 { margin-top: 2rem; }
.detail p strong { display: block; margin-bottom: 0.25rem; }

.btn-inline {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--mb-medium-green);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}
.btn-inline:hover { background: #24521c; }
.btn-inline.dark { background: var(--mb-dark-green); }
.btn-inline.dark:hover { background: #13340e; }

/* Ceník */
.pricelist {
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.25rem;
}
.pricelist .row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 0.5rem 0;
}
.pricelist-note {
  max-width: 520px;
  text-align: center;
  font-size: 1.05rem;
}

/* Kontakt */
.contact-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
.contact-info { display: flex; gap: 1rem; align-items: flex-start; justify-content: center; }
@media (min-width: 900px) { .contact-info { justify-content: flex-start; } }
.contact-info .icon {
  flex: none;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
}
.contact-info .icon svg { grid-column: 1; grid-row: 1; }
.contact-info .icon svg.bg { width: 2.5rem; fill: var(--mb-dark-green); }
.contact-info .icon svg.fg { width: 1.875rem; fill: #fff; }
.contact-info h5 { margin: 0 0 0.25rem; font-family: "Cinzel", serif; }
.contact-info a { text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.reserve-cta { text-align: center; margin: 2rem 0 0.5rem; }
.reserve-btn {
  display: inline-block;
  background: #2d5a27;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
}
.reserve-btn:hover { background: #234a1f; }

footer {
  background: var(--mb-dark-green);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}
footer a { color: #fff; }
footer .footer-links { margin-top: 0.75rem; opacity: 0.85; }
footer .footer-links a { text-decoration: underline; }

/* Legal page (GDPR, obchodní podmínky) */
.legal-page { padding-top: 9rem; }
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}
.legal-page .legal-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #555;
}
.legal-page h2 {
  font-size: 1.4rem;
  text-align: left;
  margin: 2.25rem 0 0.75rem;
}
.legal-page p, .legal-page li {
  text-align: left;
  max-width: none;
  margin: 0 0 0.75rem;
}
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page .back-link { display: inline-block; margin-bottom: 2rem; }
