
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d2b55;
  --red: #d42b2b;
  --red-light: #e84040;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray: #8a9ab5;
  --light-gray: #edf0f5;
  --text: #1a2a42;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }


nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,43,85,0.08);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(13,43,85,0.12); }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 500; font-size: .9rem; position: relative; transition: color .2s; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--red); transform:scaleX(0); transition:transform .2s; }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-btn { background: var(--red) !important; color: #fff !important; padding: .5rem 1.4rem; border-radius: 50px; font-weight: 600 !important; transition: background .2s, transform .15s !important; }
.nav-btn:hover { background: var(--red-light) !important; transform: translateY(-1px) !important; }
.nav-btn::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 72px 0 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.mobile-menu a.btn-red { background: var(--red); color: #fff; padding: .7rem 2.5rem; border-radius: 50px; font-size: 1rem; }


#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.1) 100%);
}
.hero-content { position: relative; z-index: 1; animation: fadeUp .9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff3f3; color: var(--red); border: 1px solid #ffcccc; border-radius: 50px; padding: .35rem 1rem; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-badge span { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--navy); line-height: 1.1; margin-bottom: 1.4rem; }
.hero-title em { color: var(--red); font-style: normal; }
.hero-desc { font-size: 1.05rem; color: #4a6080; line-height: 1.75; max-width: 480px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-red { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 6px 24px rgba(212,43,43,0.3); cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,43,43,0.4); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--navy); padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 2px solid rgba(13,43,85,0.2); transition: border-color .2s, background .2s; }
.btn-outline:hover { border-color: var(--navy); background: rgba(13,43,85,0.04); }


section { padding: 100px 5%; }
.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); line-height: 1.15; margin-bottom: 1.2rem; }
.section-desc { font-size: 1rem; color: #4a6080; line-height: 1.8; max-width: 540px; }

#o-nas { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6%; align-items: center; margin-top: 3.5rem; }
.about-img-wrap { position: relative; }
.about-img-frame { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(13,43,85,0.14); aspect-ratio: 4/3; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-frame .img-placeholder { width:100%;height:100%;background:linear-gradient(135deg,#d4e4f7 0%,#e8f0fb 100%);display:flex;align-items:center;justify-content:center;color:var(--gray);flex-direction:column;gap:10px;font-size:.85rem; }
.about-img-frame .img-placeholder svg { width:40px;height:40px;opacity:.4; }
.about-badge-float { position: absolute; top: -18px; right: -18px; background: var(--red); color: #fff; border-radius: 18px; padding: 1rem 1.4rem; box-shadow: 0 8px 28px rgba(212,43,43,0.35); text-align: center; }
.about-badge-float .big { font-family: 'Playfair Display', serif; font-size: 2rem; display: block; line-height: 1; }
.about-badge-float .small { font-size: .72rem; opacity: .85; }
.about-points { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.point-dot { width: 10px; height: 10px; min-width: 10px; background: var(--red); border-radius: 50%; margin-top: 6px; }
.about-point p { font-size: .97rem; color: #4a6080; line-height: 1.7; }


#cinnost { background: var(--white); }
.cinnost-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.cinnost-header .section-desc { margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card { background: var(--white); border: 1px solid var(--light-gray); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.card::before { content:''; position:absolute; inset:0; background:linear-gradient(145deg,rgba(212,43,43,.04),transparent); opacity:0; transition:opacity .3s; }
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(13,43,85,0.1); border-color: rgba(212,43,43,.2); }
.card:hover::before { opacity: 1; }
.card-icon-wrap { width: 80px; height: 80px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.8rem; box-shadow: 0 10px 30px rgba(212,43,43,0.3); transition: transform .3s; }
.card:hover .card-icon-wrap { transform: scale(1.08); }
.card-icon-wrap svg { width: 36px; height: 36px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .9rem; }
.card p { font-size: .92rem; color: #4a6080; line-height: 1.7; }


#podpoirit { background: var(--off-white); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6%; align-items: center; margin-top: 3.5rem; }
.support-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.support-card { background: #fff; border-radius: 20px; padding: 1.6rem 1.4rem; display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--light-gray); transition: transform .25s, box-shadow .25s; }
.support-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,43,85,0.09); }
.support-icon { width: 48px; height: 48px; min-width: 48px; background: #fff3f3; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.support-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.support-card h4 { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: .3rem; }
.support-card p { font-size: .82rem; color: var(--gray); }

#galeria { background: var(--white); }
.galeria-header { text-align: center; max-width: 500px; margin: 0 auto 3rem; }
.gallery-slider { position: relative; overflow: hidden; }
.gallery-track { display: flex; gap: 1.5rem; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-item { flex: 0 0 calc(33.333% - 1rem); border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 8px 30px rgba(13,43,85,0.1); transition: transform .3s; position: relative; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .img-placeholder { width:100%;height:100%;background:linear-gradient(135deg,#d4e4f7 0%,#e8f0fb 100%);display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:var(--gray);font-size:.8rem; }
.gallery-item .img-placeholder svg { width:36px;height:36px;opacity:.35; }
.gallery-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; align-items: center; }
.gallery-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 2px solid var(--light-gray); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s; }
.gallery-btn:hover { background: var(--red); border-color: var(--red); }
.gallery-btn:hover svg { stroke: #fff; }
.gallery-btn svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.gallery-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--light-gray); cursor: pointer; transition: background .2s, width .2s; }
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }


.cta-strip { background: var(--navy); padding: 70px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; border-radius:50%; background:rgba(212,43,43,0.15); }
.cta-strip::after { content:''; position:absolute; bottom:-80px; left:-40px; width:250px; height:250px; border-radius:50%; background:rgba(255,255,255,0.04); }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.cta-strip .btn-white { position:relative;z-index:1;display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--red);padding:.85rem 2rem;border-radius:50px;font-weight:600;font-size:.95rem;text-decoration:none;box-shadow:0 6px 24px rgba(0,0,0,.2);transition:transform .2s,box-shadow .2s;cursor:pointer;border:none;font-family:'DM Sans',sans-serif; }
.cta-strip .btn-white:hover { transform:translateY(-2px);box-shadow:0 10px 32px rgba(0,0,0,.3); }

#kontakt { background: var(--off-white); }
.kontakt-header { text-align: center; max-width: 500px; margin: 0 auto 3rem; }
.kontakt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 900px; margin: 0 auto; }
.kontakt-card { background: #fff; border-radius: 24px; padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--light-gray); transition: transform .3s, box-shadow .3s; }
.kontakt-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,43,85,0.1); }
.kontakt-icon { width: 70px; height: 70px; background: #fff3f3; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; }
.kontakt-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kontakt-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }
.kontakt-card p, .kontakt-card a { font-size: .95rem; color: #4a6080; line-height: 1.7; text-decoration: none; display: block; }
.kontakt-card a:hover { color: var(--red); }
.kontakt-info { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; margin: 2.5rem auto 0; max-width: 900px; padding: 1.4rem 2rem; background: #fff; border-radius: 16px; border: 1px solid var(--light-gray); font-size: .9rem; color: #4a6080; }


footer { background: #08203f; color: rgba(255,255,255,.6); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 240px; }
footer h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
footer ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .2s; }
footer ul li a:hover { color: #fff; }
footer ul li { font-size: .9rem; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

.podporit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.podporit-overlay.active {
  opacity: 1;
  pointer-events: all;
}
 

.podporit-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  padding: 40px 36px 36px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.podporit-overlay.active .podporit-modal {
  transform: translateY(0) scale(1);
}
 

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #555;
  transition: 0.2s;
  line-height: 1;
}
.modal-close:hover { background: #e0e0e0; }
 
.modal-back {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: 0.2s;
  line-height: 1;
}
.modal-back:hover { background: #e0e0e0; }
 
.modal-screen {
  display: none;
  animation: fadeSlideIn 0.25s ease forwards;
}
.modal-screen.active {
  display: block;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.modal-screen.slide-back {
  animation: fadeSlideBack 0.25s ease forwards;
}
@keyframes fadeSlideBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.modal-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.modal-icon.red   { background: #fdecea; }
.modal-icon.red svg { stroke: #c0392b; }
.modal-icon.blue  { background: #eaf0fb; }
.modal-icon.blue svg { stroke: #3b6fd4; }
 

.modal-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.modal-subtitle {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 28px;
}
 

.modal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 4px;
}
.modal-card {
  border: 1.5px solid #eee;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  background: #fff;
  user-select: none;
}
.modal-card:hover {
  border-color: #c0392b;
  box-shadow: 0 4px 16px rgba(192,57,43,0.1);
  transform: translateY(-2px);
}
.modal-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-card .card-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.modal-card .card-icon.red  { background: #fdecea; }
.modal-card .card-icon.red svg { stroke: #c0392b; }
.modal-card .card-icon.blue { background: #eaf0fb; }
.modal-card .card-icon.blue svg { stroke: #3b6fd4; }
.modal-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.modal-card p {
  font-size: 12px;
  color: #888;
  margin: 0;
}
.modal-card .card-btn {
  margin-top: 14px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 0;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.modal-card .card-btn:hover { background: #a93226; }
 
.qr-layout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fafafa;
  border: 1.5px solid #eee;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
}
.qr-layout img {
  width: 190px;
  height: 190px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  padding: 4px;
}
.qr-info label {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.qr-info .iban-val {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}
.btn-copy-iban {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-copy-iban:hover { border-color: #c0392b; color: #c0392b; }
.btn-copy-iban.copied {
  border-color: #27ae60;
  color: #27ae60;
  background: #f0faf4;
}
 

.firma-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-pdf-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-pdf-download:hover {
  background: #a93226;
  transform: translateY(-1px);
}
.btn-pdf-download.downloaded {
  background: #27ae60;
}
.btn-kontakt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: #1a1a2e;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-kontakt:hover { border-color: #c0392b; color: #c0392b; }
 

@media (max-width: 500px) {
  .podporit-modal {
    padding: 32px 20px 28px;
  }
  .modal-cards {
    grid-template-columns: 1fr;
  }
  .qr-layout {
    flex-direction: column;
    text-align: center;
  }
  .qr-layout img {
    width: 140px;
    height: 140px;
  }
  .btn-copy-iban {
    width: 100%;
    justify-content: center;
  }
}


.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.6); opacity:.5; } }


@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding: 120px 4% 80px; min-height: auto; background: #ffffff; }
  .hero-bg { display: none; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.7) 100%); }
  .hero-desc { max-width: 100%; }
  .about-grid, .support-grid { grid-template-columns: 1fr; }
  .about-badge-float { top: -14px; right: 10px; }
  .cards-grid, .kontakt-cards { grid-template-columns: 1fr; }
  .support-ways { grid-template-columns: 1fr; }
  section { padding: 70px 4%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-item { flex: 0 0 calc(80% - 1rem); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-item { flex: 0 0 calc(90% - 1rem); }
  .kontakt-cards { grid-template-columns: 1fr; }
}
