/* =================================================
    Tailwind Custom Styles
    -------------------------------------------------
    Only styles that can't be done with Tailwind utilities
================================================= */

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

/* Apply Poppins font globally */
body {
  font-family: 'Poppins', sans-serif;
}

/* Hero gradient background */
.hero-gradient {
  background: linear-gradient(180deg, transparent 0%, rgba(233, 220, 242, 0.3) 100%);
}

/* Decorative gradient blobs */
.gradient-blob-left,
.gradient-blob-right {
  position: absolute;
  width: 300px;
  height: 300px;
  filter: blur(60px);
  pointer-events: none;
}

.gradient-blob-left {
  left: 10%;
  top: 30%;
  background: radial-gradient(circle, rgba(224, 102, 255, 0.3) 0%, transparent 70%);
}

.gradient-blob-right {
  right: 10%;
  top: 70%;
  background: radial-gradient(circle, rgba(102, 102, 255, 0.3) 0%, transparent 70%);
}

/* Mobile gradient blobs */
@media (max-width: 768px) {
  .gradient-blob-left,
  .gradient-blob-right {
    width: 200px;
    height: 200px;
  }
}

/* Navigation hover effect - gradient underline */
.nav-link-custom {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover::after {
  width: 80%;
}

/* Mobile menu styles */
@media (max-width: 1023px) {
  .mobile-menu {
    background-color: #ffffff;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link-custom::after {
    bottom: 0;
    height: 2px;
  }
}

