/* About Page Specific Styles */
.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
  url('../../assets/images/gallery/hero-about.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--brand-light);
  text-decoration: underline;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-intro h2 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-intro p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.about-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.team-section {
  background: var(--bg-soft);
  padding: 4rem 0;
}

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

.team-member {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.team-info p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-about {
    padding: 4rem 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
  url('/assets/images/gallery/hero-about.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}
.about-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.values-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}
.value-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.value-card h3 {
  color: var(--brand);
  margin-top: 0;
}
.btn-view-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--brand);
  color: #0b1020;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 190, 44, 0.3);
}
.section-padding {
  padding: 4rem 0;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}