:root{
  --bg:#f5f5f5;
  --card:#ffffff;
  --text:#000;
  --accent:#bfa27a;
  --muted:#444;
  --radius:8px;
  --max-width:980px;
}

body{
  margin:0;
  background:var(--bg);
  font-family:system-ui, Arial;
  color:var(--text);
}

/* TOP BANNER */
.top-banner{
  background:#000;
  color:#fff;
  text-align:center;
  padding:16px 0;
  font-size:1.2rem;
  font-weight:700;
  border-bottom:3px solid var(--accent);
  position: relative;
}

.top-banner a {
  color: #fff !important;
  text-decoration: none;
}

/* TITLE ROW */
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-wrapper {
  margin-left: auto;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.dropdown-btn:hover {
  background: #a88c63;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .35s ease, transform .35s ease;
}

.dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
  background: var(--accent);
  color: #fff;
}

/* MENU LINK VE VĚTĚ */
.menu-link {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.menu-link:hover {
  color: #a88c63;
  border-color: #a88c63;
}

/* WHITE CARD */
.container{
  max-width:var(--max-width);
  margin:40px auto;
  padding:12px;
}

.card{
  background:var(--card);
  padding:32px;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* SLIDER */
.sadovy-slider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.sadovy-slider img {
  width: 100%;
  max-width: 520px;
  max-height: 420px;
  border-radius: 12px;
  border: 3px solid var(--accent);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
  object-fit: cover;
  transition: opacity 1.6s ease-in-out, transform 1.6s ease-in-out;
}

.sadovy-slider img.fade-out {
  opacity: 0;
  transform: scale(1.04);
}

/* GOLD BULLETS */
.benefits ul,
.gold-list {
  list-style: none;
  padding: 0;
}

.benefits ul li,
.gold-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.benefits ul li::before,
.gold-list li::before {
  content: "❖";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

/* CONTACT FORM */
.contact-form-wrapper{
  background:#f2f2f2;
  padding:30px;
  border-radius:8px;
  margin-top:40px;
  text-align:center;
}

.nice-form{
  width: 100%;
  max-width: 440px;
  margin: 20px auto 0;
  text-align:left;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 600;
}

/* INPUTS */
.nice-form input,
.nice-form textarea{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:0.95rem;
}

/* RADIO BUTTONS */
.radio-group {
  display: flex;
  gap: 30px;
}

.radio-group input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

.radio-group input[type="radio"]:checked {
  background: radial-gradient(circle, var(--accent) 45%, transparent 50%);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  color: #555;
}

/* ————————————————————————————————
   BANNER PRO PODSTRÁNKU
———————————————————————————————— */
.banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

.banner-img {
  width: 100%;
  max-width: 980px;
  border-radius: 10px;
  border: 3px solid var(--accent);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

/* ————————————————————————————————
   PRODUKTOVÉ KARTY
———————————————————————————————— */
.produkty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.produkt {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
  position: relative;
}

/* ŠTÍTEK CENY */
.cena-stitek {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* NÁZEV */
.produkt h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* OBRÁZEK */
.produkt img {
  width: 100%;
  border-radius: 10px;
  margin: 12px 0 18px;
  border: 3px solid var(--accent);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

/* POPIS */
.popis {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

/* LOKALITA S IKONKOU ❖ */
.lokalita {
  font-size: 0.95rem;
  color: #777;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lokalita::before {
  content: "❖";
  color: var(--accent);
  font-size: 1.1rem;
}
/* ————————————————————————————————
   GDPR BLOK – OPRAVENÁ VERZE
———————————————————————————————— */

/* Kontejner GDPR */
.gdpr-row {
  margin-top: 20px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Checkbox + text vedle sebe vlevo */
.gdpr-row label.gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  line-height: 1.4;
}

/* Checkbox velikost */
.gdpr-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
}

/* GDPR odkaz – zlatý + tučný */
.gdpr-link a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.gdpr-link a:hover {
  color: #a88c63;
}

/* Červená hláška při nesouhlasu */
#nesouhlas-msg {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #b00020;
  display: none;
}
/* ————————————————————————————————
   DEKUJEME STRÁNKA – DOPLŇKY
———————————————————————————————— */

.thankyou-icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.btn-center {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.3s ease;
}

.btn-center:hover {
  background: #a88c63;
  transform: scale(1.06);
}

/* Mobilní text větší */
@media (max-width: 600px) {
  .thankyou-text {
    font-size: 1.3rem;
  }
}