
html, body {
  scroll-behavior: smooth;
  background: black;
  color: white;
  font-family: 'Work Sans', sans-serif !important;
}


/* Section Titles (default italic) */
.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; /* Bold */
  font-style: italic; /* Italic by default */
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;

}
/* Override: About Me not italic */
.section-title[data-title="About Me"] {
  font-style: normal;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}

nav a {
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #14b8a6;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Fixed Motion section initial offset */
.motion-video {
  transform: translateX(-100px);
  opacity: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.motion-video:hover {
  transform: translateX(-100px) scale(1.02);
}

.motion-text {
  transform: translateX(100px);
  opacity: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #cbd5e1; /* Tailwind slate-300 */
}

/* Other images hover */
img {
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
}
