/* Founder Page Specific Styles */

/* Hero Section */
.founder-hero {
  margin-top: 70px;
  padding: 6rem 2rem;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.founder-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-gold);
  opacity: 0.1;
  border-radius: 50%;
}

.founder-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-brown);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

.image-caption {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary-brown);
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  max-width: 500px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-content .tagline {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Main Content */
.founder-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

.content-section {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.content-section h2 {
  font-size: 2.2rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  font-weight: 700;
}

.content-section p {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

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

/* Quote Section */
.quote-section {
  background: var(--gradient-1);
  padding: 1rem 3rem;
  border-radius: 30px;
  text-align: center;
  margin: 5rem 0;
  box-shadow: 0 20px 60px rgba(123, 90, 62, 0.2);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.quote-section p {
  font-size: 2rem;
  font-style: italic;
  color: white;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Credentials Section */
.credentials-section {
  background: var(--bg-light);
  padding: 4rem;
  border-radius: 30px;
  margin: 4rem 0;
}

.credentials-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary-brown);
  font-weight: 700;
}

.credentials-list {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1.5rem;
  }

  .hero-image img {
    margin: 0 auto;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .founder-content {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .founder-hero {
    padding: 4rem 1.5rem;
  }

  .hero-container {
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .hero-content .tagline {
    font-size: 1.1rem;
  }

  .hero-image img {
    max-width: 400px;
  }

  .image-caption {
    font-size: 1rem;
  }

  .credentials-section {
    padding: 2.5rem 1.5rem;
  }

  .credentials-section h2 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.8rem;
  }

  .quote-section {
    padding: 2.5rem 2rem;
    margin: 3rem 0;
  }

  .quote-section p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .founder-hero {
    padding: 3rem 1rem;
  }

  .hero-container {
    padding: 0;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content .subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-content .tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-image img {
    max-width: 100%;
    border-radius: 20px;
  }

  .image-caption {
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .founder-content {
    padding: 2rem 1rem;
  }

  .content-section {
    margin-bottom: 3rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  .achievements-grid {
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .credentials-section {
    padding: 2rem 1rem;
    margin: 2rem 0;
    border-radius: 20px;
  }

  .credentials-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .quote-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    border-radius: 20px;
  }

  .quote-section p {
    font-size: 1.2rem;
  }
}

/* Gallery Section - Portrait orientation for founder page */
.gallery-item {
  flex: 0 0 auto;
  width: 375px;
  height: 562.5px;
}

@media (max-width: 480px) {
  .gallery-item {
    width: 280px;
    height: 420px;
  }
}
