/* INTERESTS SECTION STYLES */

.interests-section {
  min-height: 80vh;
  background: linear-gradient(135deg, #0a0f1a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.interests-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(80, 200, 120, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(34, 139, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(50, 205, 50, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.interests-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #50c878, #32cd32, #90ee90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(80, 200, 120, 0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.interest-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.interest-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(80, 200, 120, 0.1) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.interest-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(80, 200, 120, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(80, 200, 120, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.interest-card:hover::before {
  opacity: 1;
}

.interest-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #50c878, #32cd32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.interest-card:hover .interest-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(80, 200, 120, 0.5));
}

.interest-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.interest-description {
  color: #b8b8b8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tag {
  background: rgba(80, 200, 120, 0.2);
  color: #50c878;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(80, 200, 120, 0.3);
  transition: all 0.3s ease;
}

.interest-card:hover .tag {
  background: rgba(80, 200, 120, 0.3);
  border-color: rgba(80, 200, 120, 0.5);
  transform: translateY(-2px);
  color: #90ee90;
}

/* Professional Goals - Compact Section */
.professional-goals-compact {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.goals-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #50c878, #32cd32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.goals-inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.goal-compact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(80, 200, 120, 0.1);
  border: 1px solid rgba(80, 200, 120, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: left;
}

.goal-compact:hover {
  background: rgba(80, 200, 120, 0.2);
  border-color: rgba(80, 200, 120, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(80, 200, 120, 0.2);
}

.goal-compact .goal-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.goal-compact .goal-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive adjustments for goals */
@media (max-width: 768px) {
  .professional-goals-compact {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .goals-inline-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .goal-compact {
    padding: 0.8rem 1.2rem;
  }

  .goal-compact .goal-text {
    font-size: 0.9rem;
  }
}

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

  .goal-compact {
    padding: 0.7rem 1rem;
    gap: 0.6rem;
  }

  .goal-compact .goal-icon {
    font-size: 1.3rem;
  }

  .goal-compact .goal-text {
    font-size: 0.85rem;
  }
} /* Responsive Design */
@media (max-width: 1024px) {
  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .interest-card {
    min-height: 380px;
  }
}
@media (max-width: 768px) {
  .interests-section {
    padding: 6rem 1rem 4rem;
  }

  .interests-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 1.5rem;
  }

  .interest-card {
    padding: 1.5rem;
    height: auto;
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .interest-card {
    padding: 1.2rem;
    min-height: 260px;
  }

  .interest-icon {
    font-size: 2.5rem;
  }
}

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

.interest-card {
  animation: fadeInUp 0.6s ease-out;
}

.interest-card:nth-child(1) {
  animation-delay: 0.1s;
}
.interest-card:nth-child(2) {
  animation-delay: 0.2s;
}
.interest-card:nth-child(3) {
  animation-delay: 0.3s;
}
.interest-card:nth-child(4) {
  animation-delay: 0.4s;
}
.interest-card:nth-child(5) {
  animation-delay: 0.5s;
}
.interest-card:nth-child(6) {
  animation-delay: 0.6s;
}
