/* ABOUT PAGE STYLES */

/* HERO */
.about-hero {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/1552252/pexels-photo-1552252.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
  opacity: 0.1;
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.about-hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color:#ffd700
}
.about-hero-content p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-stats h3 {
  color: #ffd700;
  font-size: 3rem;
  font-weight: 900;
}
.hero-stats p {
  color: #fff;
  font-size: 1rem;
}

/* STORY SECTION */
.our-story {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: white;
  padding: 6rem 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}
.story-tags span {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 0.5rem;
}
.story-image {
  position: relative;
}
.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.founded-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0a0a0a;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

/* FOUNDER SECTION */
.founder-section {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: white;
  padding: 6rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
    color: #ffd700;
}
.founder-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 30px;
  padding: 4rem;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo {
  text-align: center;
  position: relative;
}
.founder-photo img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}
.founder-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0a0a0a;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.3rem;
}
.founder-photo h3 {
  color: #ffd700;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 800;
}
.founder-photo .title {
  color: #fff;
  font-weight: 600;
}
.founder-photo .exp {
  color: rgba(255, 255, 255, 0.7);
}
.founder-photo .social-links a {
  color: #ffd700;
  margin: 0 0.5rem;
  font-size: 1.4rem;
}
.founder-quote {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
  padding: 2rem;
  border-radius: 10px;
  font-style: italic;
  margin-bottom: 2rem;
}
.achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.achievements div {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
}
.achievements i {
  color: #ffd700;
  margin-right: 10px;
}

/* PHILOSOPHY */
.philosophy {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}
.philosophy h4 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.philosophy-grid i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .founder-grid, .story-grid {
    grid-template-columns: 1fr;
  }
  .founder-photo img {
    width: 250px;
    height: 250px;
  }
  .about-hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .about-hero-content p {
    font-size: 1rem;
  }
  .hero-stats h3 {
    font-size: 2rem;
  }
  .founder-card {
    padding: 2rem;
  }
  .story-grid {
    gap: 2rem;
  }
}
