/* About Us page styles */

/* Main Container */
main {
  background: var(--warm-cream);
  min-height: 100vh;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  background: var(--warm-cream);
}

.about-hero {
  text-align: center;
  padding: var(--space-3xl, 4rem) var(--space-xl, 2rem);
  background: linear-gradient(135deg, var(--primary-green, #22c55e) 0%, var(--primary-green-dark, #16a34a) 100%);
  color: white;
  border-radius: var(--radius-xl, 16px);
  margin-bottom: var(--space-3xl, 4rem);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.about-hero h1 {
  margin-bottom: var(--space-md, 1rem);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: white;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin: 0;
  opacity: 0.95;
  color: white;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl, 4rem);
}

.about-intro {
  background: var(--white, #ffffff);
  padding: var(--space-2xl, 3rem);
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light, #e5e7eb);
  text-align: center;
}

.intro-text {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-medium, #666);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.about-section {
  background: var(--white, #ffffff);
  padding: var(--space-2xl, 3rem);
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light, #e5e7eb);
  transition: all 0.3s ease;
}

.about-section:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.highlight-section {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
  border: 2px solid var(--primary-green, #22c55e);
}

.about-section h2 {
  color: var(--primary-green-dark, #16a34a);
  margin-bottom: var(--space-lg, 1.5rem);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  border-bottom: 2px solid var(--primary-green, #22c55e);
  padding-bottom: var(--space-md, 1rem);
  font-weight: 600;
}

.about-section h3 {
  color: var(--text-dark, #1f2937);
  margin-bottom: var(--space-sm, 0.5rem);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 600;
}

.about-section p {
  color: var(--text-medium, #666);
  line-height: 1.8;
  margin-bottom: var(--space-md, 1rem);
  font-size: 1.05rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  background: rgba(34, 197, 94, 0.05);
  padding: var(--space-lg, 1.5rem);
  border-radius: var(--radius-md, 8px);
  border-left: 4px solid var(--primary-green, #22c55e);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark, #1f2937);
}

.tea-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg, 1.5rem);
  margin-top: var(--space-xl, 2rem);
}

.tea-category-card {
  background: var(--warm-beige, #f5f3f0);
  padding: var(--space-lg, 1.5rem);
  border-radius: var(--radius-md, 8px);
  border-left: 4px solid var(--primary-green, #22c55e);
  transition: all 0.3s ease;
}

.tea-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-left-width: 6px;
}

.tea-category-card h3 {
  margin-top: 0;
  color: var(--primary-green-dark, #16a34a);
}

.tea-category-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.quality-feature {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.quality-feature h3 {
  color: #2c5530;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.quality-feature p {
  margin: 0;
  font-size: 1em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.member-photo {
  width: 80px;
  height: 80px;
  background: #2c5530;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  margin: 0 auto 15px;
}

.team-member h3 {
  color: #2c5530;
  margin-bottom: 5px;
  font-size: 1.3em;
}

.member-role {
  color: #666;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1em;
}

.team-member p {
  margin: 0;
  font-size: 0.95em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.value-item h3 {
  color: #2c5530;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.value-item p {
  margin: 0;
  font-size: 0.95em;
}

.about-cta {
  background: linear-gradient(135deg, #2c5530, #1e3a1e);
  color: white;
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.about-cta h2 {
  margin-bottom: 15px;
  font-size: 2.5em;
  color: white;
  border: none;
  padding: 0;
}

.about-cta p {
  margin-bottom: 30px;
  font-size: 1.2em;
  opacity: 0.9;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: #2c5530;
}

.cta-btn.primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #2c5530;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-container {
    padding: var(--space-lg, 1.5rem) var(--space-md, 1rem);
  }

  .about-hero {
    padding: var(--space-2xl, 3rem) var(--space-lg, 1.5rem);
    margin-bottom: var(--space-2xl, 3rem);
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-intro {
    padding: var(--space-xl, 2rem) var(--space-lg, 1.5rem);
  }

  .intro-text {
    font-size: 1rem;
  }

  .about-section {
    padding: var(--space-xl, 2rem) var(--space-lg, 1.5rem);
  }

  .about-section h2 {
    font-size: 1.75rem;
  }

  .tea-categories {
    grid-template-columns: 1fr;
    gap: var(--space-md, 1rem);
  }

  .tea-category-card {
    padding: var(--space-md, 1rem);
  }

  .tea-category-card h3 {
    font-size: 1.1rem;
  }

  .tea-category-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: var(--space-md, 1rem);
  }

  .about-hero {
    padding: var(--space-xl, 2rem) var(--space-md, 1rem);
    margin-bottom: var(--space-xl, 2rem);
  }

  .about-hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .about-intro {
    padding: var(--space-lg, 1.5rem) var(--space-md, 1rem);
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .about-section {
    padding: var(--space-lg, 1.5rem) var(--space-md, 1rem);
    margin-bottom: var(--space-lg, 1.5rem);
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section h3 {
    font-size: 1.2rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .highlight-text {
    padding: var(--space-md, 1rem);
    font-size: 1rem;
  }

  .tea-categories {
    gap: var(--space-sm, 0.5rem);
  }

  .tea-category-card {
    padding: var(--space-sm, 0.5rem);
  }

  .tea-category-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs, 0.25rem);
  }

  .tea-category-card p {
    font-size: 0.85rem;
  }
}
