/* [project]/src/app/partner/partner.css [app-client] (css) */
.partner-page {
  min-height: 100vh;
}

.partner-hero {
  text-align: center;
  background: linear-gradient(135deg, #003785 0%, #001f4d 50%, #002855 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.partner-hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(255, 219, 77, .1) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 80% 20%, rgba(67, 160, 71, .1) 0%, rgba(0, 0, 0, 0) 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.partner-hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
  font-weight: 700;
}

.text-yellow {
  color: #ffdb4d;
}

.text-green {
  color: #43a047;
}

.pillars-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem 0;
  display: grid;
}

.pillar {
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  transition: all .2s;
}

.pillar:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-4px);
}

.pillar-icon {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto .75rem;
  display: flex;
}

.pillar-icon.stem {
  color: #fff;
  background: linear-gradient(135deg, #4fc3f7, #0288d1);
}

.pillar-icon.arts {
  color: #fff;
  background: linear-gradient(135deg, #ba68c8, #7b1fa2);
}

.pillar-icon.business {
  color: #fff;
  background: linear-gradient(135deg, #ffb74d, #f57c00);
}

.pillar-icon.civic {
  color: #fff;
  background: linear-gradient(135deg, #81c784, #388e3c);
}

.pillar h3 {
  color: #fff;
  margin-bottom: .35rem;
  font-size: 1rem;
  font-weight: 600;
}

.pillar p {
  color: #b0b0b0;
  margin: 0;
  font-size: .85rem;
  line-height: 1.4;
}

.hero-cta {
  color: #fff;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 160, 71, .4);
}

.program-section, .coming-soon-section, .existing-partner-section {
  padding: 4rem 2rem;
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.section-icon {
  color: #43a047;
}

.section-header h2 {
  color: #1a1a1a;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.section-intro {
  color: #555;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: grid;
}

.benefit-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all .2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.benefit-card svg {
  color: #43a047;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: #1a1a1a;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-card p {
  color: #666;
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
}

.partner-features {
  background: linear-gradient(135deg, #003785, #001f4d);
  border-radius: 12px;
  margin-bottom: 3rem;
  padding: 2rem;
}

.partner-features h3 {
  color: #ffdb4d;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.feature-list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.feature-list li {
  color: #fff;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  display: flex;
}

.feature-list li svg {
  color: #43a047;
  flex-shrink: 0;
}

.cta-box {
  text-align: center;
  background: #f0f7f0;
  border: 2px solid #43a047;
  border-radius: 12px;
  padding: 2.5rem;
}

.cta-box h3 {
  color: #1a1a1a;
  margin-bottom: .75rem;
  font-size: 1.3rem;
}

.cta-box p {
  color: #666;
  margin-bottom: 1.5rem;
}

.cta-button {
  color: #fff;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 160, 71, .4);
}

.coming-soon-section {
  background: #fafafa;
}

.coming-soon-badge {
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffdb4d, #ffc107);
  border-radius: 20px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
}

.events-preview {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: grid;
}

.event-type {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.event-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.event-icon {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.event-type h3 {
  color: #1a1a1a;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.event-type p {
  color: #666;
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
}

.interest-box {
  text-align: center;
  background: #fff;
  border: 2px dashed #ffdb4d;
  border-radius: 12px;
  padding: 2rem;
}

.interest-box h3 {
  color: #1a1a1a;
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

.interest-box p {
  color: #666;
  margin-bottom: 1.5rem;
}

.interest-button {
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffdb4d, #ffc107);
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.interest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 219, 77, .4);
}

.existing-partner-section {
  text-align: center;
  background: linear-gradient(135deg, #003785, #001f4d);
}

.existing-partner-section h2 {
  color: #fff;
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

.existing-partner-section p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.portal-button {
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.portal-button:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

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

  .partner-hero h1 {
    font-size: 1.75rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }

  .pillar {
    padding: 1rem .75rem;
  }

  .pillar-icon {
    width: 48px;
    height: 48px;
  }

  .pillar-icon svg {
    width: 22px;
    height: 22px;
  }

  .pillar h3 {
    font-size: .9rem;
  }

  .pillar p {
    font-size: .8rem;
  }

  .program-section, .coming-soon-section, .existing-partner-section {
    padding: 3rem 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .partner-features {
    padding: 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_app_partner_partner_c4488d39.css.map*/