:root{
  --blue-950:#071c41;
  --blue-900:#0a2a63;
  --blue-700:#1450b8;
  --blue-600:#1f6fe5;

  --yellow:#ffd400;
  --text:#101828;
  --muted:#667085;

  --card:#ffffff;
  --stroke: rgba(16,24,40,.10);
  --shadow: 0 14px 40px rgba(16,24,40,.10);

  --radius:18px;
}

*{ box-sizing:border-box; }
html, body{ scroll-behavior: smooth;}

body.club-body{
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--text);
}

/* ===== HERO ===== */

/* ===== HERO – PÔVODNÝ ŠTÝL ===== */

  .hero{
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: white;
  padding: 80px 0 60px;
  position: relative;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.15);
}

.hero__content{
  position:relative;
  z-index:2;
}

.hero__badge{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero__title{
  margin: 15px 0;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff; /* celý biely */
}

.hero__subtitle{
  max-width: 700px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero__cta{
  display:inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.hero__cta:hover{
  transform: translateY(-100px);
  text-decoration: none;
    color: #000;
}

/* ===== SEKCIE ===== */

.section{
  padding: 64px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title{
  margin:0;
  font-weight: 900;
  color: var(--blue-900);
}

.section-subtitle{
  margin: 6px 0 0;
  color: var(--muted);
}

/* ===== CARD ===== */

.cardx{
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
}

.cardx::before{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(800px 260px at 15% 0%, rgba(255,212,0,.18), transparent 45%);
  pointer-events:none;
}

.cardx__top{ position:relative; z-index:1; }
.cardx__kicker{
  display:inline-block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue-700);
  background: rgba(31,111,229,.10);
  border: 1px solid rgba(31,111,229,.14);
  padding: 6px 10px;
  border-radius: 999px;
}

.cardx__title{
  margin: 12px 0 10px;
  font-weight: 900;
  color: var(--blue-900);
}

.cardx__text{
  position:relative;
  z-index:1;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ===== STATS ===== */

.stats{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 10px;
}

.stat{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
}

.stat__num{
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--blue-900);
  line-height: 1.1;
}

.stat__label{
  margin-top: 2px;
  font-size: .85rem;
  color: var(--muted);
}

/* ===== FEATURE LIST ===== */

.feature-list{
  position:relative;
  z-index:1;
  list-style:none;
  padding:0;
  margin: 14px 0 0;
}

.feature-list li{
  padding: 9px 0;
  display:flex;
  align-items:center;
  gap:10px;
  color: #344054;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,212,0,.18);
}

/* ===== INFOBOX ===== */

.stack{ display:flex; flex-direction:column; gap: 14px; }

.infobox{
  display:flex;
  gap:14px;
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 28px rgba(16,24,40,.08);
  transition: .25s ease;
  margin-top: 20px;
}

.infobox:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16,24,40,.12);
}

.infobox__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.25rem;
  background: rgba(255,212,0,.20);
  border: 1px solid rgba(255,212,0,.25);
}

.infobox__title{
  margin:0;
  font-weight: 900;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.infobox__text{
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== GALÉRIA ===== */

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery__item{
  grid-column: span 6;
  margin:0;
}

.gallery__btn{
  width:100%;
  border:0;
  padding:0;
  background: transparent;
  border-radius: var(--radius);
  overflow:hidden;
  position: relative;
  cursor:pointer;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  transition: .25s ease;
}

.gallery__btn:focus{
  outline:none;
  box-shadow: 0 0 0 4px rgba(31,111,229,.18), var(--shadow);
}

.gallery__btn img{
  width:100%;
  height: 290px;
  object-fit: cover;
  display:block;
  transform: scale(1.001);
  transition: .35s ease;
}

.gallery__cap{
  position:absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color:#fff;
  font-weight: 800;
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}

.gallery__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(16,24,40,.14);
}
.gallery__btn:hover img{
  transform: scale(1.06);
}

/* ===== MODAL ===== */

.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,.70);
}

.img-modal__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 28px));
  border-radius: 18px;
  overflow:hidden;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.img-modal__img{
  width:100%;
  height: min(76vh, 720px);
  object-fit: contain;
  display:block;
  background: #0b1220;
}

.img-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}

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

@media (max-width: 992px){
  .hero__title{ font-size: 2.45rem; }
  .gallery__btn img{ height: 260px; }
}

@media (max-width: 768px){
  .hero{ padding: 74px 0 58px; }
  .hero__title{ font-size: 2.1rem; }
  .stats{ grid-template-columns: 1fr; }
  .gallery__item{ grid-column: span 12; }
  .gallery__btn img{ height: 240px; }
}

/* ===== SCROLL REVEAL ===== */

.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: .6s ease;
}
.reveal.active{
  opacity:1;
  transform: translateY(0);
}

/* ===== Medzera medzi kartami ===== */
.cardx--spaced{
  margin-bottom: 18px;
}

/* ===== Emoji blok v carde ===== */
.cardx__emoji{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.4rem;
  background: rgba(255,212,0,.20);
  border: 1px solid rgba(255,212,0,.30);
  margin-bottom: 10px;
}

/* ===== Galéria ako klikateľné tlačidlá ===== */
.gallery__btn{
  width:100%;
  border:0;
  padding:0;
  background: transparent;
  cursor:pointer;
  border-radius: 15px;
  overflow:hidden;
  position: relative;
}

/* ak už máš gallery hover v CSS, toto je len poistka */
.gallery__btn:focus{
  outline:none;
  box-shadow: 0 0 0 4px rgba(31,111,229,.18);
}

/* popis na fotke */
.gallery__cap{
  position:absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color:#fff;
  font-weight: 800;
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}

/* ===== Modal ===== */
.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,.70);
}

.img-modal__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 28px));
  border-radius: 18px;
  overflow:hidden;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.img-modal__img{
  width:100%;
  height: min(76vh, 720px);
  object-fit: contain;
  display:block;
  background: #0b1220;
}

.img-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}