@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

.cp26-wrap {
  --navy: #060f2b;
  --navy-card: #0c1a3f;
  --navy-card-2: #0e1c45;
  --crimson: #c81249;
  --crimson-2: #e8235e;
  --maroon: #6e0f34;
  --white: #ffffff;
  --space-sm: 10px;
  --space-base: 70px;
  --space-lg: 110px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: var(--navy);
  color: #fff;
  overflow-x: hidden;
}
.cp26-wrap * { box-sizing: border-box; }
.cp26-wrap .cp26-pad-sm-top { padding-top: var(--space-sm) !important; }
.cp26-wrap .cp26-pad-sm-bottom { padding-bottom: var(--space-sm) !important; }
.cp26-wrap .cp26-pad-lg-top { padding-top: var(--space-lg) !important; }
.cp26-wrap .cp26-pad-lg-bottom { padding-bottom: var(--space-lg) !important; }
.cp26-wrap a { text-decoration: none; color: inherit; }
.cp26-wrap img { max-width: 100%; display: block; }
.cp26-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- shared bits ---------- */
.cp26-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 14px 26px;
  white-space: nowrap;
}
.cp26-pill-fill { background: var(--crimson); color: #fff; }
.cp26-pill-outline { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; }
.cp26-pill-maroon { background: var(--maroon); color: #fff; width: 100%; justify-content: center; }
.cp26-pill-link {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cp26-pill-link:hover { transform: translateY(-3px); }
.cp26-pill-fill.cp26-pill-link:hover { background: var(--crimson-2); box-shadow: 0 10px 24px rgba(200,18,73,.4); }
.cp26-pill-outline.cp26-pill-link:hover { border-color: #fff; }

.cp26-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson-2);
  margin-bottom: 14px;
}
.cp26-wrap .cp26-h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.02;
  margin: 0 0 18px;
  color: #fff !important;
}
.cp26-h2 em { font-style: normal; color: var(--crimson-2); }
.cp26-lead { font-size: 16.5px; color: rgba(255,255,255,.72); max-width: 560px; margin: 0 0 34px; line-height: 1.6; }

.cp26-card {
  background: var(--navy-card);
  border: 1.5px solid rgba(200,18,73,.35);
  border-radius: 18px;
  padding: 26px;
}

.cp26-icon-badge {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
}

/* ---------- NAV ---------- */
.cp26-wrap .cp26-nav {
  position: sticky !important;
  top: 0;
  z-index: 50;
  background: #ffffff !important;
  border-bottom: 3px solid var(--crimson);
  backdrop-filter: blur(10px);
}
.cp26-wrap .cp26-nav .cp26-nav-brand span,
.cp26-wrap .cp26-nav .cp26-nav-links a { color: var(--navy) !important; }
.cp26-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cp26-nav-brand { display: flex; align-items: center; gap: 10px; }
.cp26-nav-brand img { height: 36px; }
.cp26-nav-brand span { font-weight: 900; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; }
.cp26-nav-links { display: flex; gap: 26px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.75); }
.cp26-nav-links a:hover { color: #fff; }

/* ---------- HERO ---------- */
.cp26-wrap .cp26-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(120deg, #0c1a3f 0%, var(--navy) 55%, #030812 100%);
  border-bottom: 1px solid rgba(200,18,73,.3);
  isolation: isolate;
}
.cp26-wrap .cp26-hero-ring {
  position: absolute;
  width: 480px; height: 480px;
  right: -160px; top: -220px;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.cp26-wrap .cp26-hero-numeral {
  position: absolute;
  right: -4%;
  bottom: -18%;
  font-size: 480px;
  font-weight: 900;
  line-height: 1;
  color: rgba(200,18,73,.09);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.cp26-wrap .cp26-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 520px;
  gap: 20px;
}
.cp26-wrap .cp26-hero-copy { padding: 40px 0; }
.cp26-wrap .cp26-hero-kicker {
  display: inline-block;
  padding-left: 14px;
  border-left: 4px solid var(--crimson-2);
  margin-bottom: 22px;
  color: var(--crimson-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cp26-wrap .cp26-hero-title {
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: .94;
  margin: 0 0 24px;
}
.cp26-wrap .cp26-hero-title .cp26-dark { color: var(--crimson-2); }
.cp26-wrap .cp26-hero-title .cp26-white { color: #fff; }
.cp26-wrap .cp26-hero-sub {
  max-width: 480px;
  margin: 0 0 32px;
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.cp26-wrap .cp26-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--crimson);
  color: #fff;
  border-radius: 2px;
  padding: 18px 28px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cp26-wrap .cp26-hero-cta span { font-size: 20px; line-height: 1; }
.cp26-wrap .cp26-hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.4); background: var(--crimson-2); }
.cp26-wrap .cp26-hero-note {
  margin: 22px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.cp26-wrap .cp26-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 460px;
}
.cp26-wrap .cp26-hero-visual img {
  width: min(780px, 108%);
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.35));
}

/* ---------- INFO GRID (2x2 style benefit cards) ---------- */
.cp26-section { padding: var(--space-base) 0; }
.cp26-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cp26-wrap .cp26-info-card {
  background: var(--navy-card);
  border: 1.5px solid rgba(200,18,73,.35);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex !important;
  align-items: center !important;
  gap: 16px;
}
.cp26-wrap .cp26-info-card .cp26-icon-badge { flex-shrink: 0; }
.cp26-wrap .cp26-info-card span { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.35; text-align: left; }

/* ---------- STEPS ---------- */
.cp26-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.cp26-section-head .cp26-lead { margin-left: auto; margin-right: auto; }
.cp26-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cp26-wrap .cp26-step-card {
  background: var(--navy-card);
  border: 1.5px solid rgba(200,18,73,.35);
  border-radius: 18px;
  padding: 30px 26px;
  transition: background-color .3s ease, border-color .3s ease;
  cursor: default;
}
.cp26-wrap .cp26-step-card:hover {
  background: var(--crimson) !important;
  border-color: var(--crimson) !important;
}
.cp26-wrap .cp26-step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 22px;
  color: #fff;
  transition: background-color .3s ease, color .3s ease;
}
.cp26-wrap .cp26-step-card:hover .cp26-step-num {
  background: #fff !important;
  color: var(--crimson) !important;
}
.cp26-wrap .cp26-step-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 10px; color: #fff; transition: color .3s ease; }
.cp26-wrap .cp26-step-card p { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.5; transition: color .3s ease; }
.cp26-wrap .cp26-step-card:hover p { color: rgba(255,255,255,.92) !important; }

/* ---------- MANIFESTO ---------- */
.cp26-manifesto {
  padding: 70px 24px;
  text-align: center;
  background: var(--navy-card);
  border-top: 1px solid rgba(200,18,73,.25);
  border-bottom: 1px solid rgba(200,18,73,.25);
}
.cp26-manifesto p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.15;
  text-wrap: balance;
}
.cp26-manifesto em { font-style: normal; color: var(--crimson-2); }

/* ---------- ČLANARINA / PRICING ---------- */
.cp26-price-header {
  background: var(--crimson);
  border-radius: 999px;
  text-align: center;
  padding: 14px 20px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.cp26-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.cp26-price-card {
  background: var(--navy-card);
  border: 1.5px solid rgba(200,18,73,.35);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
}
.cp26-price-card h4 { margin: 0 0 14px; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.85); }
.cp26-price-card .cp26-price-num { font-size: 40px; font-weight: 900; color: var(--crimson-2); }
.cp26-price-card .cp26-price-unit { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; margin-left: 4px; }

/* ---------- TWO COLUMN INFO / CONTACT ---------- */
.cp26-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.cp26-info-stack { display: grid; gap: 18px; }
.cp26-block-card {
  background: var(--navy-card);
  border: 1.5px solid rgba(200,18,73,.35);
  border-radius: 18px;
  padding: 26px 28px;
}
.cp26-block-card h3 { margin: 0 0 16px; font-size: 20px; font-weight: 800; color: #fff; }
.cp26-block-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.cp26-block-card li { display: flex; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.78); }
.cp26-block-card li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 6px; background: var(--crimson); }
.cp26-block-card p { font-size: 14.5px; color: rgba(255,255,255,.72); margin: 0; line-height: 1.6; }
.cp26-wrap .cp26-block-highlight { position: relative !important; }
.cp26-wrap .cp26-block-highlight .cp26-heart {
  position: absolute !important; top: -16px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.cp26-block-highlight .cp26-tag { color: var(--crimson-2); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 10px; }

.cp26-contact-card {
  background: var(--crimson);
  border-radius: 18px;
  padding: 24px 26px;
  text-align: center;
}
.cp26-wrap .cp26-contact-card h3 { margin: 0 0 16px; font-size: 19px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: #fff !important; }
.cp26-wrap .cp26-contact-links-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.cp26-wrap .cp26-contact-card a.cp26-contact-link {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  padding: 11px 12px;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background .2s ease, transform .2s ease;
}
.cp26-wrap .cp26-contact-card a.cp26-contact-link:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.cp26-wrap .cp26-contact-icon { font-size: 14px; flex: none; }
.cp26-contact-card .cp26-contact-name { font-size: 13px; opacity: .85; margin: 0 0 14px; }
.cp26-contact-divider { height: 1px; background: rgba(255,255,255,.3); margin: 14px 0; }
.cp26-wrap .cp26-contact-follow-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.cp26-wrap .cp26-contact-social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.cp26-wrap .cp26-contact-social-row a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800;
  color: #fff;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.cp26-wrap .cp26-contact-social-row a:hover { background: #fff; color: var(--crimson); transform: translateY(-3px); }
.cp26-wrap .cp26-contact-photo {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  aspect-ratio: 16/10;
  min-width: 0;
}
.cp26-wrap .cp26-contact-photo img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block; }

/* ---------- CLUB LIFE GALLERY ---------- */
.cp26-wrap .cp26-gallery {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, 200px);
  gap: 14px;
}
.cp26-wrap .cp26-gallery-item {
  position: relative;
  min-width: 0 !important;
  border-radius: 16px;
  overflow: hidden !important;
  grid-column: span 1;
  grid-row: span 1;
}
.cp26-wrap .cp26-gallery-big {
  grid-column: span 2 !important;
  grid-row: span 2 !important;
}
.cp26-wrap .cp26-gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform .4s ease;
}
.cp26-wrap .cp26-gallery-item:hover img { transform: scale(1.06); }
.cp26-wrap .cp26-gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,15,43,.88) 100%);
  pointer-events: none;
}
.cp26-wrap .cp26-gallery-caption {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.cp26-wrap .cp26-gallery-big .cp26-gallery-caption { font-size: 16px; }

/* ---------- PROMO VIDEO ---------- */
.cp26-wrap .cp26-promo-video {
  position: relative !important;
  aspect-ratio: 16/9;
  min-height: 280px;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden !important;
  border: 1.5px solid rgba(200,18,73,.4);
}
.cp26-wrap .cp26-promo-video iframe { position: absolute !important; inset: 0 !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; border: 0; }

/* ---------- SHOP ---------- */
.cp26-shop-lead-oneline { max-width: none !important; }
@media (min-width: 1050px) {
  .cp26-shop-lead-oneline { white-space: nowrap; font-size: 15px; }
}
.cp26-shop-band {
  background: linear-gradient(105deg, var(--navy-card) 0 70%, var(--crimson) 70% 100%);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.cp26-shop-band strong { font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; text-transform: uppercase; letter-spacing: -.5px; }
.cp26-shop-band span { flex: none; padding: 8px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.cp26-shop-products .woocommerce { margin: 0; }
.cp26-shop-products .col-inner { background: var(--navy-card); border: 1.5px solid rgba(200,18,73,.25); border-radius: 16px; overflow: hidden; height: 100%; }
.cp26-shop-products .box-text { padding: 16px 18px 20px; }
.cp26-shop-products .product-cat { color: var(--crimson-2) !important; font-size: 10px !important; font-weight: 900; letter-spacing: 1px; }
.cp26-shop-products .product-title a { color: #fff !important; font-size: 15px; font-weight: 700; }
.cp26-wrap .cp26-shop-products .price,
.cp26-wrap .cp26-shop-products .price .amount,
.cp26-wrap .cp26-shop-products .price bdi,
.cp26-wrap .cp26-shop-products .price ins,
.cp26-wrap .cp26-shop-products .price ins .amount,
.cp26-wrap .cp26-shop-products .price del,
.cp26-wrap .cp26-shop-products .price del .amount {
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
}
.cp26-shop-products .box-excerpt { display: none; }
.cp26-shop-foot { display: flex; justify-content: center; margin-top: 30px; }

/* ---------- FINAL CTA ---------- */
.cp26-final {
  background: var(--crimson);
  border-radius: 22px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cp26-wrap .cp26-final h2 { margin: 0 0 8px; font-size: clamp(24px,3vw,34px); font-weight: 900; text-transform: uppercase; color: #fff !important; }
.cp26-final p { margin: 0; color: rgba(255,255,255,.9); font-size: 15px; }
.cp26-final .cp26-pill-fill { background: #fff; color: var(--crimson); }
.cp26-final .cp26-pill-fill:hover { background: #f3f3f1; 
}
/* ---------- RESPONSIVE (manjka na živi strani - dodaj to) ---------- */
@media (max-width: 900px) {
  .cp26-wrap .cp26-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; grid-template-rows: 200px repeat(2, 140px); }
  .cp26-wrap .cp26-gallery-big { grid-column: span 2 !important; grid-row: span 1 !important; }
  .cp26-wrap .cp26-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .cp26-wrap .cp26-hero-copy { padding: 24px 0 20px; text-align: center; }
  .cp26-wrap .cp26-hero-kicker { border-left: 0; padding-left: 0; }
  .cp26-wrap .cp26-hero-sub { margin-left: auto; margin-right: auto; }
  .cp26-wrap .cp26-hero-cta { margin: 0 auto; }
  .cp26-wrap .cp26-hero-visual { order: -1; min-height: 0; padding-top: 30px; }
  .cp26-wrap .cp26-hero-visual img { width: min(480px, 84%); }
  .cp26-wrap .cp26-hero-numeral { font-size: 260px; }
  .cp26-nav-links { display: none; }
 .cp26-wrap .cp26-info-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .cp26-wrap .cp26-steps-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .cp26-wrap .cp26-price-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .cp26-wrap .cp26-two-col { grid-template-columns: minmax(0, 1fr) !important; }
  .cp26-shop-band { display: none !important; }
  .cp26-final { flex-direction: column; text-align: center; }
  .cp26-footer-grid { grid-template-columns: 1fr; }
  .cp26-footer-bar-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .cp26-wrap .cp26-hero-visual img { width: min(380px, 82%); }
  .cp26-wrap .cp26-manifesto p { max-width: 300px; }
}
