/* Partnership Stories Page Specific Styles */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../../images/partnership.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

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

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Partnership Grid */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.partnership-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.partnership-card:hover {
  transform: translateY(-5px);
}

.partnership-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.partnership-content {
  padding: 2rem;
}

.partnership-content h3 {
  color: #ff8c00;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.partnership-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.partnership-stats {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.stat-item {
  text-align: center;
}

.stat-number {
  color: #ff8c00;
  font-size: 1.5rem;
  font-weight: bold;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-section h2 {
  color: #228b22;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ff8c00;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e67e00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .partnership-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .partnership-card {
    margin-bottom: 1rem;
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partnership-card {
  animation: fadeIn 0.5s ease-out forwards;
}

.partnership-card:nth-child(2) {
  animation-delay: 0.2s;
}

.partnership-card:nth-child(3) {
  animation-delay: 0.4s;
}
