@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --brand-primary:#C2185B;
  --brand-secondary:#FFA726;
  --brand-accent:#FFD54F;
}

*{box-sizing:border-box}
body{font-family:'Poppins',sans-serif}

/* Utilities */
.gradient-bg{
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
}
.highlight-text{color: var(--brand-accent);}

.btn-primary{
  background-color: var(--brand-primary);
  transition: all .3s ease;
}
.btn-primary:hover{
  background-color:#AD1457;
  transform: translateY(-2px);
  box-shadow:0 10px 20px -10px rgba(194,24,91,.6);
}
.btn-secondary{
  background-color: var(--brand-secondary);
  transition: all .3s ease;
}
.btn-secondary:hover{
  background-color:#FB8C00;
  transform: translateY(-2px);
  box-shadow:0 10px 20px -10px rgba(255,167,38,.6);
}
.event-card:hover{
  transform: translateY(-5px);
  box-shadow:0 15px 30px -10px rgba(0,0,0,.2);
}

/* Team Cards Uniform Styling */
.grid {
  display: grid;
  gap: 2rem;
}

.team-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.team-card .social-links {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .social-links {
  opacity: 1;
  pointer-events: auto;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #C2185B;
  transform: translateY(-3px);
}

.social-links a:nth-child(1) { transition-delay: 0.1s; }
.social-links a:nth-child(2) { transition-delay: 0.15s; }
.social-links a:nth-child(3) { transition-delay: 0.2s; }

.team-card:hover .social-links a {
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.team-card .card-content {
  padding: 1.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.team-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.team-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #C2185B;
  line-height: 1.4;
}

/* Department headings */
.department-heading {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: #FFA726;
  font-weight: bold;
}

/* Department sections spacing */
.department-section {
  margin-bottom: 4rem;
}

/* Department headings */
.text-2xl.font-bold.text-[#FFA726] {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

/* Department sections spacing */
.mb-12 {
  margin-bottom: 4rem;
}

.team-card .card-content h3 {
  margin-bottom: 0.25rem;
}

.team-card .card-content p {
  margin: 0;
}
