/* Founder section */
.founder {
  margin-bottom: 4rem;
}

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

.founder-image {
  text-align: center;
}

.portrait {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(60, 20, 0, 0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgb(250, 230, 170);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgb(226, 199, 140);
  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.founder-info {
  padding: 1rem 0;
}

.founder-name {
  font-family: Choko, sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: rgb(60, 20, 0);
}

.founder-title {
  font-size: 1.2rem;
  color: rgb(60, 20, 0);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.founder-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: rgb(60, 20, 0);
}

.founder-bio-taiwanese {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgb(60, 20, 0);
  font-style: italic;
}

/* Section titles */
.section-title {
  font-family: Choko, sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
  color: rgb(60, 20, 0);
}

/* News section */
.news {
  margin-bottom: 4rem;
}

.news-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgb(250, 230, 170);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(60, 20, 0, 0.1);
}

.carousel-btn {
  background-color: rgb(60, 20, 0);
  color: rgb(250, 230, 170);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: rgb(80, 40, 20);
  transform: scale(1.1);
}

.news-container {
  display: flex;
  gap: 1rem;
  flex: 1;
  overflow: hidden;
}

.news-item {
  flex: 1;
  background-color: rgb(226, 199, 140);
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgb(60, 20, 0);
  transition: all 0.3s ease;
  min-width: 200px;
}

.news-item:hover {
  background-color: rgb(250, 230, 170);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(60, 20, 0, 0.1);
}

.news-item h4 {
  font-family: Choko, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.news-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Support section */
.support {
  margin-bottom: 4rem;
}

.support-card {
  background-color: rgb(250, 230, 170);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(60, 20, 0, 0.1);
}

.support-title {
  font-family: Choko, sans-serif;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  color: rgb(60, 20, 0);
}

.support-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: rgb(60, 20, 0);
  line-height: 1.8;
}

.support-link {
  color: rgb(60, 20, 0);
  text-decoration: underline;
  font-weight: 600;
}

.support-link:hover {
  color: rgb(80, 40, 20);
}

/* Email link styling */
.founder-bio a,
.support-text a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.founder-bio a:hover,
.support-text a:hover {
  color: rgb(80, 40, 20);
  text-decoration: underline;
}

.founder-bio a i,
.support-text a i {
  margin-right: 0.3rem;
  font-size: 0.9em;
}

/* Team section */
.team {
  margin-bottom: 4rem;
}

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

.team-card {
  background-color: rgb(250, 230, 170);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(60, 20, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(60, 20, 0, 0.15);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgb(60, 20, 0);
  color: rgb(250, 230, 170);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Choko, sans-serif;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.team-name {
  font-family: Choko, sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: rgb(60, 20, 0);
}

.team-role {
  font-size: 1rem;
  color: rgb(60, 20, 0);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(60, 20, 0);
}

/* Responsive design */
@media (max-width: 768px) {
  .founder-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .portrait {
    width: 250px;
    height: 250px;
  }

  .founder-name {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .news-carousel {
    flex-direction: column;
    gap: 1rem;
  }

  .news-container {
    flex-direction: column;
  }

  .news-item {
    min-width: auto;
  }

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

  .support-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .founder-name {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .portrait {
    width: 200px;
    height: 200px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .team-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-content,
.news-carousel,
.support-card,
.team-card,
.contact-form {
  animation: fadeInUp 0.6s ease-out;
}

.founder-content { animation-delay: 0.1s; }
.news-carousel { animation-delay: 0.2s; }
.support-card { animation-delay: 0.3s; }
.team-card:nth-child(1) { animation-delay: 0.4s; }
.team-card:nth-child(2) { animation-delay: 0.5s; }
.contact-form { animation-delay: 0.6s; }