/* ===============================
   NaturRo Testimonials
   Matches the NaturRo design system:
   variables.css → base.css → layout.css → components.css → [this file]
================================ */

/* ── Section ─────────────────────────────────────────────────────────────── */

.naturro-testimonials-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  position: relative;
}

.naturro-testimonials-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

/* ── Section header ──────────────────────────────────────────────────────── */

.naturro-testimonials-header {
  text-align: center;
  margin-bottom: var(--section-header-margin-bottom);
}

.naturro-testimonials-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 var(--spacing-xs);
  line-height: 1.2;
  color: inherit;
}

.naturro-testimonials-subheading {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  opacity: 0.75;
  margin: 0;
  color: inherit;
}

/* ── Grid ────────────────────────────────────────────────────────────────── */

.naturro-testimonials-grid {
  display: grid;
  gap: 2rem;
}

.naturro-testimonials-grid--1col { grid-template-columns: 1fr; }
.naturro-testimonials-grid--2col { grid-template-columns: repeat(2, 1fr); }
.naturro-testimonials-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* ── Card ────────────────────────────────────────────────────────────────── */

.naturro-testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 64, 14, 0.08), 0 1px 4px rgba(0, 64, 14, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.naturro-testimonial-card::before {
  /* Subtle top-left green accent line */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-green);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0.5;
}

.naturro-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 64, 14, 0.14), 0 2px 8px rgba(0, 64, 14, 0.08);
}

/* ── Stars ───────────────────────────────────────────────────────────────── */

.naturro-testimonial-stars {
  display: flex;
  gap: 2px;
  line-height: 1;
}

.naturro-testimonial-star {
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.naturro-testimonial-star--filled {
  color: var(--color-orange);
}

.naturro-testimonial-star--empty {
  color: rgba(0, 0, 0, 0.2);
}

/* ── Quote ───────────────────────────────────────────────────────────────── */

.naturro-testimonial-quote {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-nature-text-primary);
  margin: 0;
  padding: 0;
  flex: 1;
  position: relative;
}

.naturro-testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0;
  vertical-align: -0.55em;
  color: var(--color-green);
  opacity: 0.18;
  margin-right: 0.1em;
  float: left;
  user-select: none;
  pointer-events: none;
}

/* ── Footer (avatar + author) ────────────────────────────────────────────── */

.naturro-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 64, 14, 0.1);
}

.naturro-testimonial-avatar {
  flex-shrink: 0;
}

.naturro-testimonial-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid rgba(0, 64, 14, 0.15);
  display: block;
}

.naturro-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0; /* allow text truncation */
}

.naturro-testimonial-author-name {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-nature-text-primary);
  font-style: normal;
  display: block;
}

.naturro-testimonial-author-title {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  color: var(--color-nature-text-secondary);
  display: block;
}

.naturro-testimonial-trip {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--color-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.naturro-testimonial-trip i {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ── Theme adjustments ────────────────────────────────────────────────────── */

/* When section is on a dark background, flip card colours */
[data-theme="green"] .naturro-testimonial-card,
[data-theme="teal"] .naturro-testimonial-card,
[data-theme="red"] .naturro-testimonial-card,
[data-theme="blue"] .naturro-testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="green"] .naturro-testimonial-quote,
[data-theme="teal"] .naturro-testimonial-quote,
[data-theme="red"] .naturro-testimonial-quote,
[data-theme="blue"] .naturro-testimonial-quote {
  color: rgba(255, 255, 255, 0.92);
}

[data-theme="green"] .naturro-testimonial-author-name,
[data-theme="teal"] .naturro-testimonial-author-name,
[data-theme="red"] .naturro-testimonial-author-name,
[data-theme="blue"] .naturro-testimonial-author-name {
  color: #fff;
}

[data-theme="green"] .naturro-testimonial-author-title,
[data-theme="teal"] .naturro-testimonial-author-title,
[data-theme="red"] .naturro-testimonial-author-title,
[data-theme="blue"] .naturro-testimonial-author-title {
  color: rgba(255, 255, 255, 0.72);
}

[data-theme="green"] .naturro-testimonial-footer,
[data-theme="teal"] .naturro-testimonial-footer,
[data-theme="red"] .naturro-testimonial-footer,
[data-theme="blue"] .naturro-testimonial-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

[data-theme="green"] .naturro-testimonial-trip,
[data-theme="teal"] .naturro-testimonial-trip {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="green"] .naturro-testimonial-card::before {
  background: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .naturro-testimonials-section {
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }

  .naturro-testimonials-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .naturro-testimonials-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .naturro-testimonials-grid--2col,
  .naturro-testimonials-grid--3col {
    grid-template-columns: 1fr;
  }

  .naturro-testimonials-header {
    margin-bottom: 2rem;
  }

  .naturro-testimonial-card {
    padding: 1.5rem 1.5rem 1.25rem;
  }

  .naturro-testimonial-quote-mark {
    font-size: 3.5rem;
  }
}
