/* ============================================================
   V2 — SVĚŽÍ CHALUPA
   Barvy: zelená #2E7D52 primární, světle zelená pozadí #F0F7F1
   Font: Plus Jakarta Sans (moderní, svěží, přátelský)
   Layout: asymetrický hero s floating kartičkami, bento grid
   ============================================================ */

:root {
  --color-primary:       #2E7D52;
  --color-primary-dark:  #1F5C3A;
  --color-primary-light: #4CAF74;
  --color-accent:        #F0A500;
  --color-text:          #1A2B1F;
  --color-text-muted:    #566A5C;
  --color-text-light:    #3A6347;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F0F7F1;
  --color-bg-warm:       #FAFBF9;
  --color-bg-dark:       #142119;
  --color-border:        #D4E6D9;
  --color-border-light:  #E8F2EB;
  --font-sans:           'Plus Jakarta Sans', system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button { font-family: var(--font-sans); }

/* LAYOUT */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

/* TYPOGRAFIE */
.h1 { font-size: 5rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.h1 .accent { color: var(--color-primary); }
.h2 { font-size: 2.75rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.35; }

.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-primary); background: rgba(46,125,82,0.1);
  color: #1F5C3A;
  padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.section-desc { font-size: 1.05rem; color: var(--color-text-muted); max-width: 540px; margin-top: 0.5rem; }

/* PLACEHOLDER */
.placeholder-img {
  width: 100%; height: 100%; min-height: 320px;
  background: var(--color-bg-alt); border: 2px dashed var(--color-border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-light); font-size: 0.78rem;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.6rem; font-size: 0.9rem; font-weight: 600;
  border-radius: 100px; transition: all 0.22s ease; cursor: pointer; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: 0 4px 16px rgba(46,125,82,0.3); }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,82,0.35); }
.btn-ghost { background: transparent; color: var(--color-text); border: 2px solid var(--color-border); border-radius: 100px; }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline-primary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); border-radius: 100px; }
.btn-outline-primary:hover { background: var(--color-primary); color: #fff; }
.btn-white { background: #fff; color: var(--color-primary); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-submit { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; border-radius: 12px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light); padding: 1rem 0;
}
.nav::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 38px; height: 38px; background: var(--color-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; color: #fff; }
.logo-name { display: block; font-size: 1rem; font-weight: 700; color: var(--color-text); line-height: 1.2; }
.logo-place { display: block; font-size: 0.7rem; color: var(--color-text-muted); letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links li { list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--color-text); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }
.nav-back { font-size: 0.8rem !important; color: var(--color-text-light) !important; padding-right: 2rem; border-right: 1px solid var(--color-border); margin-right: -0.5rem; }

/* HERO */
.hero { background: var(--color-bg); padding: 7rem 0 0; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: var(--color-bg-alt); border-radius: 0 0 0 80px; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-bottom: 6rem; }
.hero-left { display: flex; flex-direction: column; gap: 2rem; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--color-primary); background: rgba(46,125,82,0.08);
  padding: 0.45rem 1rem; border-radius: 100px; width: fit-content;
}
.hero-tag svg { color: var(--color-primary); fill: var(--color-primary); width: 12px; height: 12px; }
.hero-perex { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.7; max-width: 480px; font-weight: 400; }
.hero-actions { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 2rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--color-primary); letter-spacing: -0.04em; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--color-text-muted); font-weight: 400; }
.stat-sep { width: 1px; height: 36px; background: var(--color-border); }
.hero-right { position: relative; }
.hero-photo-wrap { position: relative; }
.hero-img { min-height: 580px; border-radius: 20px; overflow: hidden; }
.hero-card {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); font-size: 0.85rem;
}
.hero-card svg { color: var(--color-primary); width: 22px; height: 22px; flex-shrink: 0; }
.hero-card strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.hero-card span { font-size: 0.72rem; color: var(--color-text-muted); }
.hero-card-1 { top: 2rem; left: -2rem; }
.hero-card-2 { bottom: 3rem; right: -1.5rem; }
.hero-wave { position: relative; margin-top: -1px; line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* AMENITIES BENTO */
.amenities { padding: 6rem 0 7rem; background: var(--color-bg-alt); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1.25rem; }
.bento-tile { background: var(--color-bg); border: 1px solid var(--color-border-light); border-radius: 18px; overflow: hidden; }
.bento-photo { grid-column: 1 / 2; grid-row: 1 / 3; position: relative; }
.bento-img { min-height: 100%; border-radius: 0; }
.bento-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,33,25,0.7), transparent);
  padding: 2rem 1.5rem 1.5rem;
}
.bento-photo-label { font-size: 1rem; font-weight: 700; color: #fff; }
.bento-feature { padding: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.feature-icon { width: 44px; height: 44px; background: rgba(46,125,82,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.bento-feature h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-text); }
.bento-feature p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; }
.bento-green { background: var(--color-primary); border-color: var(--color-primary); }
.bento-green h3 { color: #fff; }
.bento-green p { color: rgba(255,255,255,0.95); }
.feature-icon-white { background: rgba(255,255,255,0.18); }
.feature-icon-white svg { color: #fff; }
.bento-wide { grid-column: 2 / 4; padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.wide-inner { display: flex; align-items: center; gap: 1.25rem; }
.wide-inner h3 { margin-bottom: 0.3rem; }
.wide-inner p { font-size: 0.875rem; color: var(--color-text-muted); }
.wide-check-list { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
.wide-check-list span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--color-primary); white-space: nowrap; }
.wide-check-list svg { width: 14px; height: 14px; flex-shrink: 0; }

/* GALLERY */
.gallery { padding: 6rem 0; background: var(--color-bg); }
.gallery-strip { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.gallery-item .placeholder-img { min-height: 240px; border-radius: 12px; height: 100%; }
.gi-tall { grid-row: 1 / 3; }
.gi-tall .placeholder-img { min-height: 100%; }

/* LOCATION */
.location { padding: 6rem 0; background: var(--color-bg-alt); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 3rem 4rem; }
.location-header { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; justify-content: center; }
.location-header p { font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.75; max-width: 440px; }
.location-map-wrap { grid-row: 1 / 3; }
.location-map { min-height: 420px; border-radius: 16px; }
.poi-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }
.poi-card { background: var(--color-bg); border: 1px solid var(--color-border-light); border-radius: 12px; padding: 1.25rem; display: flex; align-items: flex-start; gap: 1rem; }
.poi-dist { font-size: 1.3rem; font-weight: 800; color: var(--color-primary); white-space: nowrap; min-width: 50px; letter-spacing: -0.04em; }
.poi-card strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.poi-card p { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.5; }

/* CALENDAR */
.calendar-section { padding: 6rem 0; background: var(--color-bg); }
.cal-legend { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2.5rem; }
.cl-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--color-text-muted); font-weight: 500; }
.cl-dot { width: 12px; height: 12px; border-radius: 3px; }
.cl-free { background: var(--color-primary); }
.cl-occ { background: var(--color-border); }
.calendar-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.month-card { background: var(--color-bg-alt); border: 1px solid var(--color-border-light); border-radius: 16px; padding: 1.75rem; }
.mc-name { font-size: 1.05rem; font-weight: 700; color: var(--color-text); margin-bottom: 1.25rem; text-align: center; }
.mc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dh { text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-light); padding: 0.3rem 0; }
.dd { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; border-radius: 8px; font-weight: 500; }
.dd.dv { background: rgba(46,125,82,0.1); color: var(--color-primary); }
.dd.do { color: var(--color-text-light); text-decoration: line-through; }
.de { aspect-ratio: 1; }

/* PRICING */
.pricing { padding: 7rem 0; background: var(--color-bg-alt); }
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: var(--color-bg); border: 2px solid var(--color-border-light); border-radius: 20px; padding: 2.25rem; display: flex; flex-direction: column; gap: 1rem; position: relative; }
.pc-featured { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: scale(1.04); box-shadow: 0 20px 60px rgba(46,125,82,0.35); }
.pc-badge { position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap; }
.pc-season-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary); }
.pc-featured .pc-season-label { color: rgba(255,255,255,0.7); }
.pc-when { font-size: 1.1rem; font-weight: 700; color: var(--color-text); }
.pc-featured .pc-when { color: #fff; }
.pc-price { font-size: 2.25rem; font-weight: 800; color: var(--color-text); letter-spacing: -0.04em; line-height: 1.1; }
.pc-featured .pc-price { color: #fff; }
.pc-price span { font-size: 1rem; font-weight: 400; opacity: 0.6; }
.pc-unit { font-size: 0.9rem !important; }
.pc-min { font-size: 0.78rem; color: var(--color-text-muted); margin-top: -0.5rem; }
.pc-featured .pc-min { color: rgba(255,255,255,0.55); }
.pc-list { display: flex; flex-direction: column; gap: 0.65rem; flex: 1; padding-top: 1rem; border-top: 1px solid var(--color-border-light); }
.pc-featured .pc-list { border-color: rgba(255,255,255,0.2); }
.pc-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--color-text-muted); }
.pc-featured .pc-list li { color: rgba(255,255,255,0.85); }
.pc-list svg { width: 14px; height: 14px; color: var(--color-primary); flex-shrink: 0; }
.pc-featured .pc-list svg { color: rgba(255,255,255,0.75); }

/* CTA BANNER */
.cta-banner { padding: 6rem 0; background: var(--color-bg-dark); position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(46,125,82,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
.cta-h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

/* CONTACT */
.contact { padding: 7rem 0; background: var(--color-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info p { font-size: 1rem; color: var(--color-text-muted); line-height: 1.75; }
.cinfo-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.5rem; }
.cinfo-item { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; color: var(--color-text); transition: color 0.2s; }
.cinfo-item:hover { color: var(--color-primary); }
.cinfo-icon { width: 40px; height: 40px; background: var(--color-bg-alt); border: 1.5px solid var(--color-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-icon svg { width: 16px; height: 16px; color: var(--color-primary); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 20px; padding: 2.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--color-text); }
.form-field input, .form-field textarea { padding: 0.8rem 1rem; background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: 10px; font-size: 0.925rem; color: var(--color-text); transition: border-color 0.2s; outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--color-primary); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--color-text-light); }

/* REVIEWS */
.reviews { padding: 6rem 0; background: var(--color-bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.review-card {
  background: var(--color-bg-alt); border: 1px solid var(--color-border-light);
  border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 16px; height: 16px; color: var(--color-accent); }
.review-text {
  font-size: 1rem; color: var(--color-text); line-height: 1.7;
  font-style: italic; flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 0.85rem;
  padding-top: 1rem; border-top: 1px solid var(--color-border-light);
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-border); flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.review-author span { font-size: 0.78rem; color: var(--color-text-muted); }

/* FOOTER */
.footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.7); padding: 3.5rem 0 2rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.75rem; gap: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon-light { background: rgba(255,255,255,0.1); }
.logo-icon-light svg { color: rgba(255,255,255,0.7); }
.footer-logo-name { display: block; font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.footer-logo-sub { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; }
.footer-contacts a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contacts a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: #4CAF74; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--color-primary-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .h1 { font-size: 3.6rem; }
  .h2 { font-size: 2.2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 4rem; }
  .hero::before { width: 100%; height: 50%; top: auto; bottom: 0; border-radius: 0; }
  .hero-right { display: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-photo { grid-column: 1 / 3; grid-row: auto; }
  .bento-wide { grid-column: 1 / 3; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gi-tall { grid-row: auto; }
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-map-wrap { grid-row: auto; }
  .calendar-row { grid-template-columns: 1fr 1fr; }
  .pricing-row { grid-template-columns: 1fr; max-width: 440px; }
  .pc-featured { transform: scale(1); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .h1 { font-size: 2.4rem; }
  .h2 { font-size: 1.8rem; }
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-photo { grid-column: auto; }
  .bento-wide { grid-column: auto; flex-direction: column; }
  .gallery-strip { grid-template-columns: 1fr; }
  .calendar-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .poi-list { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-contacts { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}
