:root {
  --white: #FFF;
  --olive: #6E7C4F;
  --olive-dark: #475135;
  --sage: #A7B89E;
  --buttery-yellow: #FFF7DC;
  --text-main: #44422F;
  --text-soft: #7A7D6B;
  --cta-yellow: #FCE794;
  --beige: #fcf8ed;
}

/* GLOBAL */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--beige);
  color: var(--text-main);
  scroll-behavior: smooth;
}

/* HERO */
.hero-banner {
  background: linear-gradient(135deg, #ac7d88 0%, #ac7d88 100%);
  padding: 5rem 1rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  opacity: 0.9;
}

/* TESTIMONIAL LIST */
.main-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* space between cards */
  position: relative;
  will-change: transform;
}

/* CARD STYLE */
.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem; /* extra spacing for smooth sliding */
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-text {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  text-align: right;
  font-size: 1rem;
  color: var(--olive-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem 1rem;
    font-size: 1rem; /* slightly smaller text */
  }

  .main-container {
    margin: 1.5rem auto;
    padding: 0 0.5rem;
  }

  .testimonial-list {
    gap: 1.5rem; /* smaller gap for mobile */
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .testimonial-card {
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }
}

