/* ===============================
  MentorTask Custom Styles (Enhanced UI/UX)
  This file contains custom, component-specific styles that extend Tailwind's utility classes.
  =============================== */


/* -------- Base Styles -------- */
body {
  line-height: 1.7; /* Smoother reading */
}

/* -------- Hero Section Customizations -------- */
.hero-content h1 {
  text-shadow: 0px 3px 6px rgba(0,0,0,0.6);
}

.hero-content p {
  text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}

/* -------- Button Base & Hover Effects -------- */
.btn {
  transition: all 0.25s ease;
  border-radius: 9999px; /* Full pill shape */
  font-weight: 600;
  padding: 0.9rem 1.7rem;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* -------- Custom Button Colors (specific variants) -------- */
.btn-learner {
  background-color: #2563eb;
  color: #fff;
}

.btn-learner:hover {
  background-color: #1d4ed8;
}

.btn-mentor {
  background-color: #f97316;
  color: #fff;
}

.btn-mentor:hover {
  background-color: #ea580c;
}

/* -------- Card Hover Effects (for all card-like elements) -------- */
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 24px rgba(0,0,0,0.1);
}

/* -------- Hero Overlay (recreated with a pseudo-element) -------- */
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.55));
}

/* -------- Responsive Adjustments for Mobile -------- */
@media (max-width: 768px) {
  /* Remove the `nav` display none rule as Tailwind's `md:flex` handles this */
}

/* -------- Animations -------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
  

}