/* About Page Specific Styles */

/* Story Section */
.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.story > div:first-child {
  display: grid;
  gap: 1.5rem;
}

.story p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-highlight {
  background: var(--olive);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-highlight h3 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.story-highlight > p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-grid > div > p:last-child {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Difference Section */
.difference {
  background: var(--cream);
}

.difference-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.difference-header h2 {
  margin-bottom: 1.5rem;
}

.difference-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.difference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31, 30, 28, 0.15);
}

.difference-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--olive);
}

.difference-card p {
  color: rgba(31, 30, 28, 0.8);
  line-height: 1.7;
}

/* Team Section */
.team {
  background: linear-gradient(160deg, #fffaf3 0%, #f7e6d6 100%);
}

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

.team-intro h2 {
  margin-bottom: 1rem;
}

.team-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(31, 30, 28, 0.15);
}

.team-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid var(--sand);
  box-shadow: 0 8px 24px rgba(31, 30, 28, 0.15);
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--olive);
}

.team-card p {
  line-height: 1.8;
  color: rgba(31, 30, 28, 0.8);
  text-align: left;
}

.team-card p:first-of-type {
  margin-top: 0.5rem;
}

/* Area Section */
.area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  background: linear-gradient(130deg, #fff7ef 0%, #f1e4d4 100%);
  max-width: 1200px;
  margin: 0 auto;
}

.area > div:first-child {
  display: grid;
  gap: 1.5rem;
}

.area p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.area-box {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.area-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverage-map {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .difference-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .difference-header {
    text-align: left;
  }

  .difference-header p {
    max-width: 100%;
  }

  .area {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .story-highlight {
    padding: 2rem;
  }

  .team-photo {
    width: 150px;
    height: 150px;
  }

  .team-card {
    padding: 1.5rem;
  }

  .difference-card {
    padding: 1.5rem;
  }

}

@media (max-width: 520px) {
  .team-photo {
    width: 120px;
    height: 120px;
  }

  .team-card h3 {
    font-size: 1.4rem;
  }

  .difference-card h3 {
    font-size: 1.2rem;
  }
}
