/* About Page Styles */

/* Reusable Hero Banner Component */
.page-hero {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.page-hero-subtitle-top {
  margin-bottom: 16px;
  opacity: 0.9;
  position: relative;
  display: inline-block;
}

.page-hero-subtitle-top::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: white;
  opacity: 1;
}

.page-hero-title {
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-weight: normal;
}

.page-hero-subtitle-bottom {
  margin: 0;
  opacity: 0.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Story Section */
.story-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-container {
  background-color: var(--color-sage-500);
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

.story-text h2 {
  margin: 0 0 24px 0;
  color: white;
  font-weight: normal;
}

.story-text p {
  margin: 0 0 20px 0;
  line-height: 1.7;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.why-choose-intro h2 {
  margin: 0 0 20px 0;
  font-weight: normal;
}

.why-choose-intro p {
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.why-choose-intro p:last-child {
  margin-bottom: 0;
}

.why-choose-features {
  display: grid;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-check {
  color: var(--color-sage-500);
  font-weight: normal;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-content h3 {
  margin: 0 0 8px 0;
  font-weight: normal;
}

.feature-content p {
  margin: 0;
  line-height: 1.6;
}

.why-choose-footer {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-stone-500);
}

/* Mission Section */
.mission-wrapper {
  padding: 80px 20px;
  background-color: var(--color-sage-500);
}

.mission-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-section h2 {
  margin: 0 0 32px 0;
  font-weight: normal;
  color: white;
}

.mission-section p {
  margin: 0;
  line-height: 1.7;
  color: white;
}

/* Join Community Banner */
.join-banner {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding: 80px 0;
}

.join-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.join-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.join-text {
  max-width: 600px;
}

.join-text h2 {
  margin: 0 0 32px 0;
  color: white;
  font-weight: normal;
}

.join-text p {
  margin: 0 0 24px 0;
  line-height: 1.7;
}

.join-text p:last-of-type {
  margin-bottom: 40px;
}

.join-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-filled {
  background-color: var(--color-sage-500);
  color: white;
  border-color: var(--color-sage-500);
}

.btn-filled:hover {
  background-color: var(--color-sage-600);
  border-color: var(--color-sage-600);
}

.btn-outlined {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-outlined:hover {
  background-color: white;
  color: var(--color-sage-500);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .page-hero {
    min-height: 50vh;
  }
  
  .join-banner {
    min-height: 60vh;
  }
}

@media (max-width: 768px) {
  .story-section,
  .why-choose-section {
    padding: 60px 20px;
  }
  
  .mission-wrapper {
    padding: 60px 20px;
  }
  
  .story-container {
    padding: 32px 24px;
  }
  
  .why-choose-features {
    gap: 24px;
  }
  
  .page-hero {
    min-height: 40vh;
  }
  
  .join-banner {
    min-height: 50vh;
    padding: 60px 0;
  }
  
  .join-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-outline {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .story-container {
    padding: 24px 20px;
  }
  
  .join-buttons {
    gap: 12px;
  }
  
  .join-banner {
    padding: 40px 0;
  }
}
