:root{
  --red: #b10f0f;
  --red2:#d11515;
  --accent: #e7771a;

  --text:#111;
  --bg:#fff;
  --header-bg:#f6f6f6;

  --container: 1200px;

  /* HERO image – nastav si vlastní fotku */
  --hero-image: url("https://images.unsplash.com/photo-1613659380989-88a3b9a2f5b4?auto=format&fit=crop&w=2400&q=70");
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ================= TOPBAR ================= */
.topbar{
  background: var(--red);
  color:#fff;
  font-size: 14px;
}
.topbar__inner{
  height: 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar__left{
  display:flex;
  gap: 18px;
  align-items:center;
  flex-wrap: wrap;
}
.topbar__right{
  opacity:.95;
  white-space: nowrap;
}
.topbar__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.topbar__link:hover{ opacity:1; }
.topbar__link svg{
  width:16px;
  height:16px;
  fill:#fff;
}

/* ================= HEADER ================= */
.header{
  background: var(--header-bg);
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav--left{
  justify-self: end;
}

.nav--right{
  justify-self: start;
}

.brand{
  justify-self: center;
  padding-left: 50px;
  padding-right: 50px;
}

.header__inner{
  height: 78px;
 display: grid;
  grid-template-columns: 1fr auto 1fr; /* LEVÁ | LOGO | PRAVÁ */
  align-items: center;
}

/* Desktop nav */
.nav{
  display:flex;
  gap: 28px;
  align-items:center;
}
.nav__link{
  text-decoration:none;
  color:#111;
  font-weight: 600;
  font-size: 15px;
  opacity:.9;
}
.nav__link:hover{ opacity: 1; }

/* Brand center */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  color: inherit;
  text-decoration:none;
}
.brand__img{
  width: 150px;

  object-fit: contain;
  display:block;
  /* žádné kolečko! */
  border-radius: 0;
}
.brand__text{ display:flex; flex-direction: column; }
.brand__name{ font-weight: 800; font-size: 18px; line-height: 1.1; }
.brand__sub{ font-size: 13px; color: #6b7280; margin-top: 2px; }

/* symmetry spacer on mobile */
.header__ghost{ width: 44px; }

/* Burger */
.burger{
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display:none;
  cursor:pointer;
  padding: 0;
}
.burger span{
  display:block;
  width: 22px;
  height: 2px;
  background:#111;
  margin: 5px 0;
  border-radius: 2px;
}

/* ================= MOBILE PANEL MENU (like screenshot) ================= */
.mobileMenu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0,0,0,.25);
}
.mobileMenu.is-open{ display:block; }

.mobileMenu__panel{
  width: 100%;
  height: 72vh; /* aby šel vidět hero pod menu */
  background: var(--header-bg);
  border-bottom: 1px solid #e6e6e6;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px 18px 18px;
}

/* top row: X left, logo center */
.mobileMenu__top{
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  align-items:center;
}
.mobileMenu__close{
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor:pointer;
  color:#111;
  line-height: 1;
}

.mobileMenu__brand{
  display:flex;
  justify-content:center;
  text-decoration:none;
}
.mobileMenu__logo{
  width: 100px;
  object-fit: contain;
  display:block;
  border-radius: 0; /* žádné kolečko */
}

.mobileMenu__divider{
  height: 1px;
  background: #e6e6e6;
  margin: 12px 0;
}

.mobileMenu__nav{
  display:flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0 6px;
}
.mobileMenu__link{
  text-decoration:none;
  color:#111;
  font-weight: 650;
  padding: 12px 6px;
  border-radius: 10px;
}
.mobileMenu__link:hover{
  background: #eeeeee;
}

.mobileMenu__contact{
  display:flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 8px;
  color: #374151;
  justify-content: center;
}
.mobileMenu__contactLink{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: inherit;
  font-weight: 550;
}
.mobileMenu__cIcon{
  width: 18px;
  height: 18px;
  display:inline-flex;
}
.mobileMenu__cIcon svg{
  width: 18px;
  height: 18px;
  fill: #6b7280;
}

/* disable scroll behind menu */
body.no-scroll{ overflow:hidden; }

/* ================= HERO ================= */
.hero{
  position: relative;
  min-height: 560px;
  overflow:hidden;
  display:flex;
  align-items: stretch;
}
.hero__bg{
  position:absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 25% 55%, rgba(0,0,0,.70), rgba(0,0,0,.35) 60%, rgba(0,0,0,.55)),
    linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.40));
}
.hero__inner{
  position: relative;
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  padding: 56px 0 34px;
  text-align:center;
}

.hero__content{
  max-width: 920px;
  padding: 0 10px;
}
.hero__eyebrow{
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 18px;
}
.hero__title{
  margin: 0 0 14px;
  color:#fff;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(38px, 4.5vw, 62px);
}
.hero__accent{
  color: var(--accent);
  font-weight: 900;
}
.hero__lead{
  margin: 0 auto 20px;
  max-width: 70ch;
  color: rgba(255,255,255,.80);
  font-size: 16.5px;
  line-height: 1.55;
}

.hero__cta{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration:none;
  user-select:none;
}
.btn--primary{
  background: var(--red2);
  color:#fff;
  box-shadow: 0 16px 40px rgba(209,21,21,.25);
}
.btn--primary:hover{ filter: brightness(1.03); }
.btn--ghost{
  border: 2px solid rgba(255,255,255,.35);
  color:#fff;
  background: rgba(0,0,0,.10);
}
.btn--ghost:hover{
  border-color: rgba(255,255,255,.55);
}

/* stats */
.hero__stats{
  margin-top: 32px;
  display:flex;
  gap: 22px;
  justify-content:center;
  flex-wrap: wrap;
  width: 100%;
}
.stat{
  width: 260px;
  padding: 18px 18px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  text-align:center;
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}
.stat__icon{
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  display:grid;
  place-items:center;
}
.stat__icon svg{
  width: 26px;
  height: 26px;
  fill: var(--accent);
}
.stat__num{
  color:#fff;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label{
  color: rgba(255,255,255,.70);
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px){
  .nav{ display:none; }
  .burger{ display:block; }
  .topbar__right{ display:none; } /* jako na screenu */
  .hero{ min-height: 520px; }
  .topbar__inner{justify-content: center;}

}

/* Mobile */
@media (max-width: 560px){
  .brand__text{ display:none; }
  .brand__img{ width: 150px; }

  .hero{ min-height: 640px; }

  .hero__cta{
    width: 100%;
    padding: 0 18px;
  }
  .btn{
    width: 100%;
    max-width: 420px;
  }

  .hero__stats{ margin-top: 22px; }
  .stat{ width: min(420px, 92vw); }
}

/* =========================
   ABOUT (O nás) – sekce
   ========================= */
.about{
  padding: 72px 0 84px;
  background: #fafafa;
}

.about__head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 46px;
}

.about__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(209,21,21,.10);
  color: var(--red2);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.about__title{
  margin: 0 0 14px;
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: #111;
}

.about__accent{
  color: var(--accent);
  font-weight: 900;
}

.about__desc{
  margin: 0 auto;
  max-width: 78ch;
  color: #5b6272;
  font-size: 17px;
  line-height: 1.65;
}

/* cards grid */
.about__cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.aboutCard{
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.07);
  border: 1px solid rgba(17,17,17,.04);
}

.aboutCard__icon{
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(209,21,21,.10);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.aboutCard__icon svg{
  width: 24px;
  height: 24px;
  display: block;
  fill: var(--red2);
  overflow: visible;      /* klíčové proti ořezu */
  flex-shrink: 0;
  transform: scale(1.05); /* jemně zvětší bez ořezu */
}

.aboutCard__title{
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 900;
  color: #111;
}

.aboutCard__text{
  margin: 0;
  color: #6b7280;
  font-size: 15.5px;
  line-height: 1.6;
}

/* CTA panel */
.aboutCta{
  margin-top: 44px;
  border-radius: 18px;
  padding: 34px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;

  background:
    radial-gradient(900px 420px at 15% 40%, rgba(0,0,0,.35), transparent 60%),
    radial-gradient(900px 420px at 75% 40%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(90deg, #1d1a14 0%, #4a0f0f 55%, #7a1414 100%);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  overflow: hidden;
}

.aboutCta__content{
  max-width: 720px;
}

.aboutCta__title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .2px;
}

.aboutCta__text{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.6;
}

.aboutCta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--red2);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 40px rgba(209,21,21,.25);
}

.aboutCta__btn:hover{
  filter: brightness(1.03);
}

/* ========== Responsive ========== */
@media (max-width: 1100px){
  .about__cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px){
  .about{
    padding: 56px 0 70px;
  }

  .about__desc{
    font-size: 16px;
  }

  .about__cards{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aboutCta{
    padding: 26px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .aboutCta__btn{
    width: 100%;
  }
}


/* =========================
   MAINTENANCE OVERLAY
   ========================= */

.maintenanceOverlay{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* rozmazání pozadí */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background: rgba(255,255,255,.35);
}

/* zamezení scrollu stránky */
body.has-maintenance{
  overflow: hidden;
}

/* samotné okno */
.maintenanceModal{
  width: min(460px, 92vw);
  background: rgba(255,255,255,.95);
  border-radius: 18px;
  padding: 32px 28px 30px;
  text-align: center;


  box-shadow:
    0 30px 80px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(0,0,0,.04);
}

/* ikona */
.maintenanceIcon{
  font-size: 42px;
  margin-bottom: 14px;
  animation: spinSlow 6s linear infinite;
}

/* texty */
.maintenanceTitle{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  color: #111;
}

.maintenanceText{
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.6;
}

/* loader */
.maintenanceLoader{
  display: flex;
  justify-content: center;
  gap: 8px;
}

.maintenanceLoader span{
  width: 8px;
  height: 8px;
  background: #d11515;
  border-radius: 999px;
  animation: pulse 1.4s infinite ease-in-out;
}

.maintenanceLoader span:nth-child(2){ animation-delay: .15s; }
.maintenanceLoader span:nth-child(3){ animation-delay: .3s; }

/* animace */
@keyframes pulse{
  0%, 80%, 100%{ transform: scale(0.6); opacity: .4; }
  40%{ transform: scale(1); opacity: 1; }
}

@keyframes spinSlow{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* mobil */
@media (max-width: 480px){
  .maintenanceModal{
    padding: 26px 20px;
  }

  .maintenanceTitle{
    font-size: 22px;
  }
}

/* =========================
   EVENTS – Akce a události
   ========================= */

.events{
  background: #f3f4f6;
  padding: 80px 0;
}

.events__head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.events__badge{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffe8d8;
  color: #ff6a00;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.events__title{
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #1a1a1a;
}

.events__title span{
  color: #ff6a00;
}

.events__desc{
  margin: 0 auto;
  font-size: 17px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.events__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.eventCard{
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.eventCard--featured{
  border-left: 4px solid #ff6a00;
}

.eventCard__badge{
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffe8d8;
  color: #ff6a00;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

.eventCard__title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: #111;
}

.eventCard__text{
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 15.5px;
  line-height: 1.6;
}

/* META */
.eventMeta{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #374151;
}

.eventMeta span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .events__grid{
    grid-template-columns: 1fr;
  }
}

/* EVENTS – hover efekt karet */
.eventCard{
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}

.eventCard:hover{
  transform: translateY(-8px);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.08),     /* původní jemný stín */
    0 18px 40px rgba(209,21,21,0.18); /* jemný červený glow */
}

/* ještě hezčí, aby se zvýraznila i "featured" karta */
.eventCard--featured:hover{
  box-shadow:
    0 18px 45px rgba(0,0,0,0.08),
    0 18px 46px rgba(255,106,0,0.18); /* oranžový glow k oranžové liště */
}

/* na mobilech hover nevynucujeme */
@media (hover: none){
  .eventCard:hover{
    transform: none;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  }
  .eventCard--featured:hover{
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  }
}

/* =========================
   CONTACT
   ========================= */

.contact{
  background: #ffffff;
  padding: 90px 0;
}

.contact__head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.contact__badge{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffe8d8;
  color: #ff6a00;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.contact__title{
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #1a1a1a;
}

.contact__title span{
  color: #ff6a00;
}

.contact__desc{
  margin: 0 auto;
  font-size: 17px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* INFO */
.contactInfo{
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
}

.contactInfo h3{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
}

.contactInfo ul{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: #374151;
}

.contactInfo p{
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

/* FORM */
.contactForm{
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contactForm .field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contactForm label{
  font-weight: 700;
  font-size: 14px;
}

.contactForm input,
.contactForm textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  font-family: inherit;
}

.contactForm textarea{
  resize: vertical;
}

.contactForm input:focus,
.contactForm textarea:focus{
  outline: none;
  border-color: #ff6a00;
}

/* BUTTON */
.contactBtn{
  margin-top: 10px;
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: #d11515;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  transition: filter .15s ease;
}

.contactBtn:hover{
  filter: brightness(1.05);
}

/* honeypot hidden */
.hp{
  display: none !important;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .contact__grid{
    grid-template-columns: 1fr;
  }
}

/* reCAPTCHA spacing */
.contactRecaptcha{
  margin: 8px 0 2px;
}

/* Modal */
.cModal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.cModal.is-open{ display: flex; }

.cModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cModal__box{
  position: relative;
  width: min(460px, 92vw);
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 28px 22px 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
}

.cModal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  cursor: pointer;
}

.cModal__icon{
  font-size: 40px;
  margin-bottom: 10px;
}

.cModal__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

.cModal__text{
  margin: 0 0 16px;
  color: #6b7280;
  line-height: 1.6;
  font-size: 15.5px;
}

.cModal__btn{
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #d11515;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.cModal__btn:hover{ filter: brightness(1.05); }


/* =========================================
   PODPORUJÍ NÁS – držíme se tvého HTML:
   <section class="contact"> + .contact__badge
========================================= */

/* Badge – vycentrovat + vypadá jako štítek */
.podporuji_nas .contact__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .25px;
  text-transform: uppercase;
  line-height: 1;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* Sekce vycentrovaná */
.podporuji_nas{
  text-align: center;
  background-color: #f3f4f6;
  padding: 80px 0;
}

/* =============================
   Vycentrovaný náhled v sekci
   (FINÁL: max 500px, žádné roztahování)
============================= */
.support-preview-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin: 10px 0 0;
}

/* Tlačítko NESMÍ mít velkou šířku, jinak se obrázek roztáhne */
.support-preview-btn{
  border:0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;

  width: auto;        /* důležité */
  max-width: 500px;   /* náhled drží ~500px */
}

/* Obrázek jako karta (ale bez natažení) */
.support-preview-img{
  display:block;

  width: auto;        /* žádné 100% */
  max-width: 100%;    /* na mobilu se zmenší */
  height: auto;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* Hover – jemný lift */
.support-preview-btn:hover .support-preview-img{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 26px 80px rgba(0,0,0,0.25);
  filter: saturate(1.03);
}

/* Fokus (klávesnice) */
.support-preview-btn:focus-visible{
  outline: 3px solid rgba(255,255,255,0.35);
  outline-offset: 6px;
  border-radius: 20px;
}

/* =============================
   MODAL – čistý, bezpečný i na mobilu
============================= */
.img-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.img-modal.is-open{
  display: block;
}

.img-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
}

/* dialog přes celé okno – pohodlné na mobilu */
.img-modal__dialog{
  position: relative;
  z-index: 1;

  width: min(1200px, 94vw);
  height: 100vh;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 22px;
  box-sizing: border-box;
}

/* obrázek v modalu */
.img-modal__image{
  max-width: 100%;
  max-height: calc(100vh - 44px);
  width: auto;
  height: auto;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 26px 90px rgba(0,0,0,0.45);
  background: transparent;
}

/* close tlačítko */
.img-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;

  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;

  cursor: pointer;
  font-size: 30px;
  line-height: 46px;
  text-align: center;

  background: rgba(255,255,255,0.92);
  color: #111;
  box-shadow: 0 18px 55px rgba(0,0,0,0.40);
  transition: transform .15s ease, background .15s ease;
}

.img-modal__close:hover{
  transform: scale(1.04);
  background: rgba(255,255,255,1);
}

.img-modal__close:focus-visible{
  outline: 3px solid rgba(255,255,255,0.35);
  outline-offset: 4px;
}

/* Mobilní doladění */
@media (max-width: 600px){
  .support-preview-btn{
    max-width: 92vw; /* na mobilu ať se přizpůsobí */
  }

  .support-preview-img{
    border-radius: 16px;
  }

  .img-modal__dialog{
    padding: 14px;
  }

  .img-modal__close{
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
}

/* =============================
   LOGA PODPOROVATELŮ (3 ks)
============================= */
.support-logos{
  width: min(900px, 92vw);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.support-logo{
  width: 100%;
  height: 200px;              /* jednotná výška řádku */
  object-fit: contain;       /* logo se nepokřiví */
  padding: 12px 14px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);

  transition: transform .18s ease, box-shadow .18s ease;
}

/* jemný hover */
.support-logo:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(0,0,0,0.16);
}

/* tablet: 2 sloupce */
@media (max-width: 820px){
  .support-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* mobil: 1 sloupec, větší čitelnost */
@media (max-width: 520px){
  .support-logos{
    grid-template-columns: 1fr;
  }
  .support-logo{
    height: 200px;
  }
}

/* =========================
   FOOTER – SDH Bartovice
   ========================= */
.siteFooter{
  margin-top: 90px;
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(900px 520px at 18% 30%, rgba(209,21,21,.28), transparent 60%),
    radial-gradient(900px 520px at 82% 35%, rgba(255,106,0,.18), transparent 62%),
    linear-gradient(90deg, #0b0c0f 0%, #111318 45%, #0c0d11 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.siteFooter__inner{
  padding: 58px 22px 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.siteFooter__brand{ max-width: 520px; }

.siteFooter__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;
}
.siteFooter__logo img{
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
}

.siteFooter__desc{
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: 15px;
}

.siteFooter__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 13.5px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.chip:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
}

.chip__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red2);
  box-shadow: 0 0 0 3px rgba(209,21,21,.18);
}
.chip__dot--accent{
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(231,119,26,.16);
}

.siteFooter__col{
  padding-top: 8px;
}

.siteFooter__title{
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
}

.siteFooter__link{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.78);
  padding: 9px 0;
  font-weight: 650;
  transition: color .18s ease, transform .18s ease;
}
.siteFooter__link:hover{
  color: #fff;
  transform: translateX(2px);
}

.siteFooter__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: 15px;
}

.siteFooter__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: rgba(209,21,21,.95);
  box-shadow: 0 16px 44px rgba(209,21,21,.22);
  border: 1px solid rgba(255,255,255,.08);
  transition: filter .15s ease, transform .18s ease;
}
.siteFooter__btn:hover{
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.siteFooter__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

.siteFooter__bottomInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.siteFooter__madeby{
  color: rgba(255,255,255,.62);
}
.siteFooter__madeby::before{
  content: "•";
  margin: 0 10px 0 0;
  opacity: .55;
}
.siteFooter__madeby a{
  color: #ffffff;
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 900px){
  .siteFooter__inner{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 48px 22px 26px;
  }

  .siteFooter__bottomInner{
    flex-direction: column;
    text-align: center;
  }

  .siteFooter__madeby::before{ display: none; }
}


