/* About Page Styles */

.about-page-container {
  width: 100%;
}

/* Hero Section */
.about-hero-section {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(237,219,128,0.7) 0%, 
    rgba(161,174,28,0.8) 33%, 
    rgba(77,101,40,0.8) 66%, 
    rgba(19,44,23,0.9) 100%
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: #fff;
  padding: 60px 20px;
  width: 100%;
}

.about-hero-text {
  text-align: left;
  color: white;
}

.about-hero-title {
  font-family: 'Space Mono', 'Consolas', 'Monaco', monospace;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero-subtitle {
  font-size: 1.5rem;
  color: #f8f9fa;
  margin: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Section Headers */
.section-header-about {
  text-align: left !important;
  margin-bottom: 3rem;
  padding: 0px 20px	;
}

.section-header-about h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.section-header-about p {
  font-size: 1.5rem;
  color: #666;
}

/* Our Story Section */
.our-story-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Our Goal Section */
/* === SECTION LAYOUT === */
.our-goal-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, 
    rgba(237,219,128,0.7) 0%, 
    rgba(161,174,28,0.8) 33%, 
    rgba(77,101,40,0.8) 66%, 
    rgba(19,44,23,0.9) 100%
  );
}

.our-goal-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.our-goal-section p {
  font-size: 1.5rem;
  color: #fff;
}

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

/* === CARD BASE === */
.goal-card {
  position: relative;
  display: block;
  max-width: 300px;
  min-height: 280px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 0 auto;
  text-decoration: none;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* === CARD GRADIENT EFFECT === */
.goal-card:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, rgba(161,174,28,0.9), rgba(77,101,40,0.9));
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.goal-card:hover:before {
  transform: scale(28);
}

/* === TEXT STYLES === */
.card-title {
  position: relative;
  z-index: 1;
  color: #262626;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
  transition: all 0.5s ease-out;
}

.small-desc {
  position: relative;
  z-index: 1;
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.5em;
  color: #452c2c;
  margin: 0;
  transition: all 0.5s ease-out;
}

.goal-card:hover .card-title {
  color: #ffffff;
}

.goal-card:hover .small-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* === CORNER ICON === */
.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2em;
  height: 2em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(161,174,28,0.9), rgba(77,101,40,0.9));
  border-radius: 0 10px 0 32px;
  z-index: 2;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans-serif;
  font-size: 1.2em;
}


/* Our Activities Section */
.our-activities-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.activities-images {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  align-items: center;
}

.activity-image-item {
  flex: 1;
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.activity-image-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.activities-description {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.activities-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
  padding: 80px 20px;
  background: white;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* CTA Section */
.about-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
  text-align: center;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.about-cta-content p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .section-header-about h2 {
    font-size: 2rem;
  }
  
  .section-header-about p {
    font-size: 1.1rem;
  }
  
  .our-story-section,
  .our-goal-section,
  .our-activities-section,
  .values-section,
  .about-cta-section {
    padding: 60px 20px;
  }
  
  .activities-images {
    flex-direction: column;
    align-items: center;
  }
  
  .activity-image-item {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .goals-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cta-content h2 {
    font-size: 1.8rem;
  }
  
  .about-cta-content p {
    font-size: 1.1rem;
  }
  
  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .activities-description p {
    font-size: 1rem;
  }
}
