/* ABOUTME: Styles for the Rólunk (About Us) section.
   ABOUTME: Full-viewport layout with intro text, vertical divider, stats grid, and description. */

/* ===========================
   Section Wrapper
   =========================== */

.rolunk {
  height: 100vh;
  padding: 1em;
  display: flex;
  flex-direction: column;
}

/* ===========================
   Intro Quote
   =========================== */

.rolunk__intro {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 5%;
}

.rolunk__intro p {
  font-family: var(--font-primary);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.2;
  max-width: 900px;
  margin: 0;
}

/* ===========================
   Vertical Divider
   =========================== */

.rolunk__divider {
  width: 2px;
  height: 60px;
  background-color: var(--color-black);
  margin: 0 auto;
  flex-shrink: 0;
}

/* ===========================
   Bottom Area (text + stats)
   =========================== */

.rolunk__bottom {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2em;
  padding-top: 1.5em;
  padding-bottom: 1em;
}

/* Left column: description + arrow */
.rolunk__description {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 1.5em;
  padding-bottom: 0.5em;
}

.rolunk__description p {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin: 0;
}

.rolunk__arrow {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 0.3em;
}

/* Right column: 2x2 stats grid */
.rolunk__stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}

.rolunk__stat {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: 2rem;
  padding: 1.2em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rolunk__stat-number {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.rolunk__stat-label {
  font-family: var(--font-secondary);
  font-size: clamp(0.55rem, 0.9vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3em;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .rolunk__bottom {
    flex-direction: column;
  }

  .rolunk__description {
    align-items: center;
  }

  .rolunk__intro p {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}
