/* Minimal custom CSS kept intentionally small to avoid conflicts with Tailwind */

/* Smooth scroll behavior for navigation links */
html {
  scroll-behavior: smooth;
}

/* Basit scroll animasyonu */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CV Dropdown behavior (visuals are handled by Tailwind classes on elements) */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; min-width: 160px; z-index: 30; top: 100%; left: 0; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown:focus-within .dropdown-content { display: block; }
.dropdown-content:hover { display: block; }

