/* ================================================
   Kinder in Bewegung – Eltern vernetzt & Summergumpis – Website Styles
   Flyer Colors:
   Magenta/Pink: #cc2d82
   Lime Green:   #c8d830
   Yellow:       #f5e03a
   Cream:        #f7f2cc
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --magenta: #cc2d82;
  --magenta-dark: #a02268;
  --magenta-light: #f7e0ef;
  --lime: #c8d830;
  --lime-dark: #9aaa1a;
  --lime-light: #f0f5c0;
  --yellow: #f5e03a;
  --yellow-dark: #d4b800;
  --cream: #f7f2cc;
  --cream-dark: #ede5a0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4050;
  --text-light: #9090aa;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(204,45,130,0.12);
  --shadow-hover: 0 8px 40px rgba(204,45,130,0.22);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--magenta); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd000 100%);
  color: var(--magenta-dark);
  box-shadow: 0 4px 20px rgba(245,224,58,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,224,58,0.55);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

/* ======== HERO ======== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--magenta-dark) 0%, var(--magenta) 55%, #e03a9a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape-1 {
  width: 520px; height: 520px;
  background: var(--lime);
  opacity: 0.12;
  top: -180px; right: 40%;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: 0.1;
  bottom: -100px; left: -60px;
}
.shape-3 {
  width: 160px; height: 160px;
  background: var(--lime);
  opacity: 0.15;
  top: 55%; right: 8%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
}

.badge-pill {
  display: inline-block;
  background: rgba(245,224,58,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,224,58,0.5);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--yellow);
}

.hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 .accent {
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 32px;
  color: #fff;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--transition);
}
.fact:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.fact-icon { font-size: 1rem; }

/* MOSAIC – larger on desktop */
.hero-image-mosaic {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* No max-width cap – let it fill the column */
}
.mosaic-top, .mosaic-bottom {
  display: flex;
  gap: 10px;
}
.mosaic-img {
  flex: 1;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(0,0,0,0.30);
  transition: transform var(--transition);
}
.mosaic-img:hover { transform: scale(1.03); }
.mosaic-tall { height: 260px; }

/* Lime circle accent around mosaic */
.hero-image-mosaic::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 20px solid var(--lime);
  opacity: 0.35;
  top: -40px;
  left: -40px;
  pointer-events: none;
  z-index: -1;
}
.hero-image-mosaic::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 14px solid var(--yellow);
  opacity: 0.3;
  bottom: -30px;
  right: -20px;
  pointer-events: none;
  z-index: -1;
}

/* ======== WAVE DIVIDER ======== */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--magenta-dark) 0%, var(--magenta) 55%, #e03a9a 100%);
}
.wave-divider svg { width: 100%; height: 60px; }
.wave-magenta-to-lime {
  background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime) 100%);
}

/* ======== SECTIONS ======== */
.section-light { background: var(--cream); padding: 80px 0; }
.section-blue  { background: linear-gradient(155deg, var(--magenta-dark) 0%, var(--magenta) 100%); padding: 80px 0; }
.section-warm  { background: #fff; padding: 80px 0; }
.section-footer-cta { background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime) 100%); padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.section-header.light h2 { color: #fff; }
.section-header.light .section-desc { color: rgba(255,255,255,0.85); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-orange {
  background: linear-gradient(135deg, var(--magenta), #e0409a);
  color: #fff;
}
.tag-white {
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

/* ======== KIBEV TWO COL ======== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.text-block p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.text-block p strong { color: var(--text-dark); }

/* INFO CARD */
.info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(204,45,130,0.1);
}
.info-card-header {
  background: linear-gradient(135deg, var(--magenta-dark) 0%, var(--magenta) 100%);
  color: #fff;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-list {
  list-style: none;
  padding: 0;
}
.info-list li {
  display: flex;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid #f5f0f5;
}
.info-list li:last-child { border-bottom: none; }
.info-label {
  font-weight: 700;
  color: var(--magenta-dark);
  min-width: 80px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.info-value {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-value small { color: var(--text-light); font-size: 0.82rem; }
.cost-free { color: #2db55d !important; font-weight: 700; font-size: 1rem !important; }
.cta-box {
  background: var(--lime-light);
  padding: 18px 24px;
  border-top: 2px solid rgba(200,216,48,0.3);
}
.cta-box p { color: var(--text-dark); font-size: 0.95rem; margin: 0; }

/* ======== SUMMERGUMPIS FEATURES ======== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 14px; }
.feature-card h3 {
  color: var(--yellow);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}
.feature-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* SUMMERGUMPIS INFO ROW */
.summergumpis-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.sg-info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(245,224,58,0.15);
  border: 1px solid rgba(245,224,58,0.35);
  border-radius: var(--radius);
  padding: 18px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  color: #fff;
  transition: all var(--transition);
}
.sg-info-box:hover {
  background: rgba(245,224,58,0.25);
  transform: translateY(-4px);
}
.sg-info-icon { font-size: 1.8rem; flex-shrink: 0; }
.sg-info-box strong { display: block; font-size: 0.95rem; }
.sg-info-box div { font-size: 0.88rem; opacity: 0.9; line-height: 1.5; }

/* ======== ACTIVITIES GRID ======== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.activity-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(204,45,130,0.08);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: default;
}
.activity-card:hover {
  border-color: var(--lime);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(200,216,48,0.25);
}
.activity-emoji { font-size: 2rem; margin-bottom: 10px; }
.activity-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}
.activity-card-plus {
  background: var(--lime-light);
  border-color: var(--lime);
}
.activity-card-plus span { color: var(--lime-dark); }

/* ZVIERI BANNER */
.zvieri-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--lime-light) 0%, var(--cream) 100%);
  border: 2px solid rgba(200,216,48,0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  position: relative;
}
.zvieri-icon { font-size: 2.5rem; flex-shrink: 0; }
.zvieri-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
}
.zvieri-text p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }
.zvieri-badge {
  margin-left: auto;
  background: linear-gradient(135deg, var(--lime-dark), var(--lime));
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ======== GALLERY MASONRY + LIGHTBOX ======== */
.gallery-masonry {
  columns: 4;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.gallery-item.gallery-tall img { height: 350px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(204,45,130,0.45);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,5,15,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
  transition: opacity 0.2s;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(245,224,58,0.3);
  border-color: var(--yellow);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(0,0,0,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 10000;
}

/* ======== FOOTER CTA ======== */
.cta-center { text-align: center; }
.cta-center h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 12px 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.cta-center > p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.contact-info-box {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  color: #fff;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: rgba(255,255,255,0.12); }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; width: 40px; text-align: center; }
.contact-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; opacity: 0.75; font-weight: 600; }
.contact-item div { font-size: 1rem; line-height: 1.5; font-weight: 700; }
.contact-item div a { color: #fff; font-weight: 700; }

/* ======== FOOTER ======== */
.site-footer {
  background: #1a0a12;
  color: rgba(255,255,255,0.65);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.footer-logo-text strong { color: #fff; display: block; margin-bottom: 4px; }
.footer-logo-text a { color: var(--magenta-light); }
.footer-partners { font-size: 0.85rem; line-height: 1.6; max-width: 700px; margin: 0 auto; }
.footer-gb-link { color: var(--lime); font-weight: 700; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; }
.footer-copy a { color: inherit; }

/* ======== ANIMATIONS ======== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.15s; }
.fade-in:nth-child(6) { transition-delay: 0.25s; }
.fade-in:nth-child(7) { transition-delay: 0.1s; }
.fade-in:nth-child(8) { transition-delay: 0.2s; }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    text-align: center;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-facts { justify-content: center; }
  .hero-image-mosaic { max-width: 100%; }
  .hero-image-mosaic::before, .hero-image-mosaic::after { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 3; }
}

@media (max-width: 768px) {
  .hero { padding: 80px 20px 50px; }
  .gallery-masonry { columns: 2; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .summergumpis-info { flex-direction: column; }
  .sg-info-box { max-width: 100%; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-row { flex-direction: column; align-items: center; }
  .contact-item { max-width: 100%; width: 100%; }
  .mosaic-top, .mosaic-bottom { flex-direction: column; }
  .mosaic-img { height: 180px; }
  .zvieri-banner { flex-direction: column; text-align: center; }
  .zvieri-badge { margin: 0 auto; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
