/*--------------------------------------------------------------
# NiKa visual refresh
# Layered on top of style.css — safe to remove to revert.
--------------------------------------------------------------*/

:root {
  --nika-teal: #00A2B8;
  --nika-cyan: #00CFEB;
  --nika-green: #00C6A7;
  --nika-blue: #1E4D92;
  --nika-ink: #202B36;
  --nika-soft: #F6F8FA;
  --nika-radius: 16px;
  --nika-shadow: 0 18px 40px -12px rgba(32, 43, 54, 0.18);
  --nika-shadow-lg: 0 28px 60px -16px rgba(32, 43, 54, 0.28);
}

/* Smooth scrolling for the in-page logo/anchor links */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Typography polish
--------------------------------------------------------------*/
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-paragraph,
.hero-paragraph {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero-title {
  letter-spacing: -0.5px;
}

/* Give the hero photo real depth instead of a flat white box */
.hero-media {
  background: transparent;
  border-radius: var(--nika-radius);
  overflow: hidden;
  box-shadow: var(--nika-shadow-lg);
}
.hero-media::before {
  display: none;
}
.hero-media span,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  border-radius: var(--nika-radius);
}

/* Softer, more premium hero call-to-action button */
.hero-cta .button {
  border-radius: 999px;
  padding-left: 40px;
  padding-right: 40px;
}

/*--------------------------------------------------------------
# Section rhythm & dividers
--------------------------------------------------------------*/
.section-title {
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(65deg, var(--nika-teal), var(--nika-cyan));
}

/*--------------------------------------------------------------
# Activity cards ("Solidarität" projects)
--------------------------------------------------------------*/
.feature-inner {
  border-radius: var(--nika-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-inner::before {
  border-radius: var(--nika-radius);
}
.feature a:hover .feature-inner {
  transform: translateY(-6px);
  box-shadow: var(--nika-shadow-lg);
}

/* Unify the mismatched logo images into one consistent icon frame */
.feature-icon {
  margin-bottom: 20px;
}
.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 6px 16px -6px rgba(32, 43, 54, 0.35);
}

.feature .text-sm {
  color: #5B6F82;
  font-weight: 400;
}

/*--------------------------------------------------------------
# RuSKa — activity icon badges (replaces placeholder art)
--------------------------------------------------------------*/
.activity-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--nika-green) 0%, var(--nika-blue) 130%);
  box-shadow: var(--nika-shadow);
}
.activity-badge svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.activity-badge svg .fill {
  fill: #fff;
  stroke: none;
}

/* Alternate the badge gradient direction so the zig-zag rows feel intentional */
.feature-extended:nth-child(even) .activity-badge {
  background: linear-gradient(135deg, var(--nika-teal) 0%, var(--nika-green) 130%);
}

/* Keep every badge in a fixed-width column so the text fills the rest and the
   right-hand badges line up at the same edge instead of floating after short text. */
@media (min-width: 641px) {
  .feature-extended-body {
    flex: 1 1 0;
  }
  .feature-extended-image {
    flex: 0 0 320px;
  }
}
@media (min-width: 1025px) {
  .feature-extended-image {
    flex-basis: 480px;
  }
}

@media (min-width: 641px) {
  .activity-badge {
    width: 200px;
    height: 200px;
    border-radius: 44px;
  }
  .activity-badge svg {
    width: 84px;
    height: 84px;
  }
}

/*--------------------------------------------------------------
# Closing call-to-action
--------------------------------------------------------------*/
.cta {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(57deg, var(--nika-green) 0%, var(--nika-blue) 100%);
  box-shadow: var(--nika-shadow-lg);
}
.cta-inner .section-title {
  color: #fff;
}
.cta-inner .section-title::after {
  background: rgba(255, 255, 255, 0.7);
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin: 0 auto 32px;
}
.cta-inner .button {
  border-radius: 999px;
  background: #fff !important;
  color: var(--nika-blue) !important;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 700;
}
.cta-inner .button:hover {
  background: var(--nika-soft) !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nika-soft);
  transition: transform 0.15s ease, background 0.15s ease;
}
.footer-social-links a:hover {
  transform: translateY(-3px);
  background: #E8F7F4;
}
