/* About Page Specific Styles */

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 1rem 2rem;
  background-color: var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-orange);
}

.breadcrumb .separator {
  margin: 0 0.5rem;
  color: var(--text-grey);
}

.breadcrumb .current {
  color: var(--text-grey);
  font-weight: 500;
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 8rem 2rem;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/organic-pattern.jpg') repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* Main About Content */
.about-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Our Story Section */
.our-story {
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-grey);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.text-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.highlight-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-grey);
  font-weight: 500;
  margin: 0;
}

.image-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  font-size: 2rem;
  color: var(--primary-green);
}

.card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 0;
}

.mission-card p,
.vision-card p {
  line-height: 1.7;
  color: var(--text-grey);
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 4rem 0;
  text-align: center;
}

.values-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 3rem;
}

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

.value-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.process-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-green);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
}

.timeline-content h4 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-green);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h4 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-role {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Location Section */
.location-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.location-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-text h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.location-text p {
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.location-benefits {
  list-style: none;
  padding: 0;
}

.location-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-grey);
}

.location-benefits i {
  color: var(--primary-green);
  font-size: 1rem;
}

.location-map {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-green);
}

.map-placeholder p {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Call to Action Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: var(--primary-green);
}

.btn-primary:hover {
  background: var(--light-grey);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background: white;
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .content-wrapper,
  .content-grid,
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight-stats {
    justify-content: center;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 70px;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row !important;
  }
  
  .timeline-icon {
    position: absolute;
    left: 0;
  }
  
  .timeline-content {
    margin-left: 1rem;
    margin-right: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding: 0.5rem 1rem;
  }
  
  .about-hero {
    padding: 3rem 1rem;
  }
  
  .about-main {
    padding: 0 1rem;
  }
  
  .our-story,
  .values-section,
  .team-section {
    padding: 3rem 0;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .highlight-stats {
    gap: 1rem;
  }
}