/* ====================================================
   Chalupa na Bečvách – stylesheet
   ==================================================== */

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #FAFAF8;
  --bg-alt:      #F0EBE4;
  --dark:        #1C1B19;
  --text:        #3D3A36;
  --muted:       #8A857F;
  --accent:      #6EC1E4;
  --accent-dk:   #3FA0C8;
  --warm:        #C8860F;
  --border:      #DDD8D2;
  --white:       #FFFFFF;
  --radius:      4px;
  --shadow:      0 2px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --transition:  .3s ease;
  --max:         1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Aleo', 'Georgia', serif;
  line-height: 1.25;
  color: var(--dark);
}

.container {
  width: 92%;
  max-width: var(--max);
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--accent-dk);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding-inline: 5%;
  max-width: 1400px;
  margin-inline: auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: filter var(--transition);
}
.nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }

.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover { color: var(--accent-dk); }

.nav-links .btn-nav {
  padding: .45rem 1.2rem;
  background: var(--accent);
  color: var(--dark);
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-links .btn-nav:hover {
  background: var(--accent-dk);
  color: var(--white);
}
.nav-links .btn-nav::after { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--dark); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/drone/IMG-20260125-WA0007.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.2) 50%,
    rgba(0,0,0,.6) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
  max-width: 820px;
}
.hero-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.5) translateY(-50%); }
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--dark);
  color: var(--white);
  padding: 1.1rem 0;
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
}
.promo-item svg {
  width: 18px; height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}
.promo-sep { color: rgba(255,255,255,.2); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 6rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.2rem;
  background: var(--white);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
  font-family: 'Aleo', serif;
}
.about-badge strong {
  display: block;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}
.about-badge span {
  font-size: .8rem;
  color: var(--muted);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}
.feature-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text);
}
.feature-chip svg {
  width: 16px; height: 16px;
  fill: var(--accent-dk);
  flex-shrink: 0;
}

/* ============================================================
   VYBAVENI (AMENITIES)
   ============================================================ */
.vybaveni {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.vybaveni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.amenity-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.amenity-card-img {
  height: 200px;
  overflow: hidden;
}
.amenity-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.amenity-card:hover .amenity-card-img img { transform: scale(1.06); }
.amenity-card-body {
  padding: 1.25rem;
}
.amenity-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
.amenity-card-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* bedrooms detail */
.bedrooms-detail {
  margin-top: 3rem;
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.bedrooms-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.bedroom-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.bedroom-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.bedroom-item svg {
  width: 20px; height: 20px;
  fill: var(--accent-dk);
  flex-shrink: 0;
  margin-top: 2px;
}
.bedroom-item-info strong {
  display: block;
  font-size: .9rem;
}
.bedroom-item-info span {
  font-size: .82rem;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
.galerie {
  padding: 6rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  margin-top: 2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  min-height: 180px;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay svg {
  width: 32px; height: 32px;
  fill: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================================
   DRONE SECTION (full-width parallax divider)
   ============================================================ */
.drone-section {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drone-section-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/drone/IMG-20260125-WA0011.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.drone-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.drone-section-text {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 1rem;
}
.drone-section-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.drone-section-text p {
  margin-top: .75rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
}

/* ============================================================
   OKOLI
   ============================================================ */
.okoli {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.okoli-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.okoli-description {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}
.okoli-description + .okoli-description { margin-top: 1rem; }

.okoli-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.okoli-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.okoli-card-icon {
  width: 40px; height: 40px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
}
.okoli-card-icon svg {
  width: 22px; height: 22px;
  fill: var(--accent-dk);
}
.okoli-card h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
}
.okoli-card ul li {
  font-size: .88rem;
  color: var(--muted);
  padding: .2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
.okoli-card ul li:last-child { border-bottom: none; }
.dist { color: var(--accent-dk); font-weight: 600; }

/* ============================================================
   CENIK
   ============================================================ */
.cenik {
  padding: 6rem 0;
}
.cenik-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}
.price-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.price-card-period {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.price-card-amount strong {
  font-size: 2.2rem;
  font-family: 'Aleo', serif;
  color: var(--dark);
}
.price-card-amount span {
  font-size: .9rem;
  color: var(--muted);
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.price-card ul li:last-child { border: none; }
.price-card ul li::before {
  content: '✓';
  color: var(--accent-dk);
  font-weight: 700;
  flex-shrink: 0;
}
.price-note {
  margin-top: 2.5rem;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 1.5rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
}
.price-note strong { color: var(--dark); }

/* ============================================================
   REZERVACE / CONTACT FORM
   ============================================================ */
.rezervace {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.rezervace-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.rezervace-info h2 { margin-bottom: 1rem; }
.rezervace-info p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.8;
}
.contact-details { display: flex; flex-direction: column; gap: .9rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .95rem;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  fill: var(--accent-dk);
}
.contact-item a { font-weight: 500; }
.contact-item a:hover { color: var(--accent-dk); }

.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-honey { display: none; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}
.form-submit .btn {
  flex-shrink: 0;
}
.form-notice {
  font-size: .8rem;
  color: var(--muted);
}

.form-message {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1rem;
  display: none;
}
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error   { background: #f8d7da; color: #721c24; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: .8;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   OBSAZENOST PAGE
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.65); margin-top: .75rem; font-size: 1.05rem; }

.booking-section {
  padding: 5rem 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.booking-info h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.booking-info p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.booking-info ul { margin: 1rem 0 1.5rem; }
.booking-info ul li {
  padding: .3rem 0;
  font-size: .92rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.booking-info ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--accent-dk);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .vybaveni-grid { grid-template-columns: repeat(2, 1fr); }
  .cenik-grid    { grid-template-columns: 1fr 1fr; }
  .cenik-grid .price-card.featured { transform: none; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .booking-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--text);
    padding: .8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links .btn-nav { margin-top: .75rem; text-align: center; border-color: transparent; }
  .nav-hamburger { display: flex; }

  .about-grid      { grid-template-columns: 1fr; }
  .about-badge     { right: 1rem; }
  .about-image img { height: 320px; }
  .vybaveni-grid   { grid-template-columns: 1fr; }
  .okoli-intro-grid{ grid-template-columns: 1fr; }
  .okoli-grid      { grid-template-columns: 1fr 1fr; }
  .cenik-grid      { grid-template-columns: 1fr; }
  .rezervace-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .form-row        { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .drone-section-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .okoli-grid  { grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .promo-sep   { display: none; }
  .hero-cta    { flex-direction: column; align-items: center; }
}
