/* ═══════════════════════════════════════════════
   RÓLUNK – rolunk.css
═══════════════════════════════════════════════ */

/* ── ACTIVE NAV LINK ── */
.nav-active {
  color: var(--teal) !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 72px 64px 64px;
  position: relative;
  overflow: hidden;
}

.about-hero {
  background: linear-gradient(150deg, #ddf0de 0%, #c4e3cc 40%, #b4d9bc 100%);
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(116,198,157,.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.85);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--green-dark);
  text-shadow: 2px 3px 0 rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.7;
}

/* Decorative circles */
.page-hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .25;
}
.c1 { width: 320px; height: 320px; background: var(--green-light); right: -60px; top: -80px; }
.c2 { width: 180px; height: 180px; background: var(--yellow); right: 220px; bottom: -60px; }
.c3 { width: 90px;  height: 90px;  background: var(--teal);   right: 120px; top: 60px; }

/* ── STORY SECTION ── */
.story-section {
  background: var(--cream);
  padding: 72px 64px;
}

.story-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.story-text {
  flex: 1;
}

.section-title-green {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.story-text p {
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--green-dark); font-weight: 900; }

/* Story card stack */
.story-visual { flex: 0 0 300px; }

.story-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.09);
}
.sc1 { background: linear-gradient(135deg, #ddf0de, #c4e3cc); }
.sc2 { background: linear-gradient(135deg, #fff3d6, #ffe8a0); transform: translateX(12px); }
.sc3 { background: linear-gradient(135deg, #ede8f5, #d8cded); }

.sc-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.story-card h4 {
  font-size: .8rem;
  font-weight: 900;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.story-card p {
  font-size: .76rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── VALUES SECTION ── */
.values-section {
  background: var(--cream2);
  padding: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.11);
}

.value-card-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
}
.value-card-icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── TEAM SECTION ── */
.team-section {
  background: var(--cream);
  padding: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.ta-green  { background: linear-gradient(135deg, #ddf0de, #9ecfaa); }
.ta-yellow { background: linear-gradient(135deg, #fff3d6, #ffd166); }
.ta-purple { background: linear-gradient(135deg, #ede8f5, #c4b5e5); }

.team-card h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: .7rem;
  font-weight: 900;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.team-card p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--teal);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 36px 64px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
}

.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .story-inner { flex-direction: column; }
  .story-visual { flex: unset; width: 100%; }
  .story-card-stack { flex-direction: row; flex-wrap: wrap; }
  .story-card { flex: 1 1 calc(50% - 8px); transform: none !important; }
}

@media (max-width: 768px) {
  .page-hero { padding: 48px 24px; min-height: 320px; }
  .page-hero h1 { font-size: 2rem; }
  .story-section { padding: 40px 24px; }
  .values-section { padding: 40px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-section { padding: 40px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 28px 24px; gap: 24px; }
  .stat-sep { display: none; }
  .stat-item { padding: 0 20px; }
  .story-card-stack { flex-direction: column; }
  .story-card { transform: none !important; }
}
