:root {
  /* Light theme (default) */
  --bg: #ffffff;
  --text: #0b0c0f;
  --muted: #4b5563;
  --card: #ffffff;
  --border: #e5e7eb;
  --border-hover: #cbd5e1;
  --shadow: 0 12px 50px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 25px 70px rgba(0, 0, 0, 0.15);
  --accent: #e33403; /* orange highlight to match avatar bg */
  --accent-soft: rgba(227, 52, 3, 0.18);
  --panel: rgba(0, 0, 0, 0.04);
  --panel-hover: rgba(0, 0, 0, 0.08);
  --image-bg: #f3f4f6;
  --radius: 16px;
}

/* Dark theme overrides (disabled)
.theme-dark {
  --bg: #0b0c0f;
  --text: #e5e7eb;
  --muted: #a1a1aa;
  --card: #14161a;
  --border: #23262d;
  --border-hover: #2f343d;
  --shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 25px 70px rgba(0, 0, 0, 0.6);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-hover: rgba(255, 255, 255, 0.12);
  --image-bg: #0f1115;
}
*/

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 800px at 80% -10%, rgba(227, 52, 3, 0.06), transparent 50%),
    radial-gradient(900px 700px at -10% 20%, rgba(227, 52, 3, 0.04), transparent 60%),
    radial-gradient(700px 700px at 50% 120%, rgba(227, 52, 3, 0.03), transparent 60%);
  background-size: auto, auto, auto;
  background-position: center, center, center;
  color: var(--text);
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}
/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, rgba(227,52,3,0.9), rgba(255,149,110,0.9));
  box-shadow: 0 1px 6px rgba(227, 52, 3, 0.4);
  z-index: 9999;
  transition: width 100ms linear, opacity 200ms ease;
}

/* WebGL background canvas */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  display: block;
}

/* If user prefers reduced motion, keep things subtle */
@media (prefers-reduced-motion: reduce) {
  #bg-canvas { display: none; }
}
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  z-index: 50;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  display: none; /* Hidden for visual preference, kept for SEO */
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.nav-bar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #fafafa);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.2s, transform 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}
.nav-links a:hover::after {
  width: 100%;
}
.hero {
  max-width: 1200px;
  margin: 5rem auto 4rem auto;
  padding: 0 2rem;
}
.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 100%;
  padding: 2rem 0;
}
.hero-content {
  flex: 1;
  max-width: 500px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  line-height: 1.15;
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--text);
}
.hero-name {
  color: var(--accent);
  font-weight: 900;
  /*background: linear-gradient(90deg, var(--accent-soft), transparent 70%); */
  padding: 0 0.2rem;
  border-radius: 6px;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}
.hero-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hero-avatar-container {
  flex: 0 0 auto;
  position: relative;
}
/* Avatar blob backdrop disabled for minimal aesthetic */
.hero-avatar-container .blob-wrap, .hero-avatar-container .blob { display: none; }
@keyframes blobMorph {}
.hero-avatar {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: var(--image-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-avatar:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.hero-left-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
}
.hero-socials-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  margin: 0;
  flex: 0 0 auto;
  align-self: center;
}
.hero-socials-column a {
  font-size: 1.5rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-socials-column a:hover {
  color: var(--accent);
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  color: var(--muted);
  transition: all 0.3s ease;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.icon-link.magnetic { transition: box-shadow 0.25s ease; }
.icon-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  transition: all 0.3s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.icon-link:hover::before {
  width: 0;
  height: 0;
}
.icon-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: none;
  background: transparent;
  border-color: var(--border);
}
.about-section {
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.about-card {
  background: none;
  border-radius: 0;
  padding: 0 0 0 1.25em;
  border: 0;
  border-left: 3px solid var(--border);
  transition: border-color 0.25s ease;
  position: relative;
  overflow: visible;
}
.about-card::before { display: none; }
.about-card:hover {
  transform: none;
  box-shadow: none;
  border-left-color: var(--accent);
}
.about-card:hover::before { display: none; }
.about-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.7em 0;
  color: var(--text);
}
.about-card h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 0.6em;
}
.about-card p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.7;
}
.projects-section {
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}
.projects-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 2.2em;
  color: var(--text);
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  letter-spacing: 0.2px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.project-card {
  background: none;
  border-radius: 0;
  padding: 1.1em 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.25s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
}
.project-card, .about-card { transform-style: flat; perspective: none; }
.project-card::after, .about-card::after { display: none; }
.project-card::before { display: none; content: none; }
.project-card:hover {
  transform: none;
  box-shadow: none;
  border-bottom-color: var(--border-hover);
}

.tilt { will-change: auto; transition: none; }
.project-card:hover::before { width: 0; }

.project-card h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  display: flex;
  align-items: center;
}
.project-card .icon {
  font-size: 1.1em;
  margin-right: 0.4em;
}
.project-card a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}
.project-card a:hover {
  color: var(--accent);
}
.project-card p {
  color: var(--muted);
  font-size: 1.03rem;
  margin: 0 0 0.6em 0;
  line-height: 1.6;
}
.tech-stack {
  color: var(--muted);
  font-size: 0.95em;
  margin-top: 0.4em;
  font-weight: 500;
}

/* Focus styles for full-card click accessibility */
.project-card:focus-visible {
  outline: 2px solid rgba(227, 52, 3, 0.6);
  outline-offset: 2px;
}

/* Enhanced focus for icon links */
.icon-link:focus-visible {
  outline: 2px solid rgba(227, 52, 3, 0.6);
  outline-offset: 2px;
  border-color: var(--border-hover);
  color: var(--accent);
}

/* Visually hidden utility for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: var(--muted);
  font-size: 1em;
  background: none;
}

/* Theme toggle button */
.theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.theme-toggle:hover {
  box-shadow: var(--shadow-strong);
}
@media (max-width: 900px) {
  .about-grid, .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero {
    padding: 0 1.5rem;
    margin: 2rem auto 2.5rem auto;
  }
  .hero-row {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title { 
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  .hero-desc { 
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
  }
  .hero-socials {
    justify-content: center;
    gap: 1.2rem;
  }
  .icon-link {
    padding: 0.9rem;
    /* Larger touch targets for mobile */
    min-width: 48px;
    min-height: 48px;
  }
  .hero-avatar {
    width: 240px;
    height: 240px;
  }
  .projects-section, .about-section {
    padding: 0 1.5rem;
  }
  .about-card {
    padding: 0 0 0 1rem;
  }
  .about-card h2 {
    font-size: 1.25rem;
  }
  .about-card p {
    font-size: 1.02rem;
    line-height: 1.75;
  }
  .projects-title {
    font-size: 1.25rem;
    margin-bottom: 1.8em;
  }
  .project-card {
    padding: 1.2em 0;
  }
  .project-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .project-card p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .tech-stack {
    font-size: 0.92em;
  }
  footer {
    font-size: 0.95em;
    padding: 1.5rem 0 1rem 0;
  }
}

/* Extra small screens (phones < 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 0 1rem;
    margin: 1.5rem auto 2rem auto;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-avatar {
    width: 200px;
    height: 200px;
  }
  .projects-section, .about-section {
    padding: 0 1rem;
  }
  .about-card h2 {
    font-size: 1.15rem;
  }
  .about-card p {
    font-size: 0.98rem;
  }
  .projects-title {
    font-size: 1.15rem;
  }
  .project-card h3 {
    font-size: 1.05rem;
  }
  .project-card p {
    font-size: 0.96rem;
  }
  .icon-link svg {
    width: 1.6em;
    height: 1.6em;
  }
}
.wrap {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  transform-style: preserve-3d;
  perspective: 800px;
}

/* Light mode gradient blobs */
.light-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0; /* hidden by default, toggled in JS for light mode */
  transition: opacity 300ms ease;
}
.light-blob {
  position: absolute;
  filter: blur(80px) saturate(120%);
  border-radius: 50% / 45%;
  opacity: 0.28;
  mix-blend-mode: multiply;
}
.light-blob.orange {
  background: radial-gradient(circle at 40% 40%, rgba(255, 168, 122, 0.9), rgba(255, 168, 122, 0.0) 65%);
}
.light-blob.soft {
  background: radial-gradient(circle at 60% 60%, rgba(255, 214, 191, 0.9), rgba(255, 214, 191, 0.0) 65%);
}
.tri {
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  filter: grayscale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}
.tri:hover {
  filter: grayscale(0);
  opacity: 0.3 !important;
  transform: scale(1.2);
}
@keyframes anim1 { 0% { opacity: 0.18; transform: rotate(45deg) translate3d(200px, 300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim2 { 0% { opacity: 0.18; transform: rotate(90deg) translate3d(-400px, 100px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim3 { 0% { opacity: 0.18; transform: rotate(180deg) translate3d(500px, -200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim4 { 0% { opacity: 0.18; transform: rotate(270deg) translate3d(-300px, -400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim5 { 0% { opacity: 0.18; transform: rotate(120deg) translate3d(100px, 500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim6 { 0% { opacity: 0.18; transform: rotate(60deg) translate3d(-200px, 400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim7 { 0% { opacity: 0.18; transform: rotate(210deg) translate3d(300px, -500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim8 { 0% { opacity: 0.18; transform: rotate(330deg) translate3d(-500px, 200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim9 { 0% { opacity: 0.18; transform: rotate(75deg) translate3d(400px, 400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim10 { 0% { opacity: 0.18; transform: rotate(150deg) translate3d(-300px, 300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim11 { 0% { opacity: 0.18; transform: rotate(240deg) translate3d(200px, -300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim12 { 0% { opacity: 0.18; transform: rotate(300deg) translate3d(-100px, -500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim13 { 0% { opacity: 0.18; transform: rotate(30deg) translate3d(500px, 100px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim14 { 0% { opacity: 0.18; transform: rotate(60deg) translate3d(-400px, 500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim15 { 0% { opacity: 0.18; transform: rotate(90deg) translate3d(300px, -400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim16 { 0% { opacity: 0.18; transform: rotate(120deg) translate3d(-500px, -200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim17 { 0% { opacity: 0.18; transform: rotate(150deg) translate3d(400px, -300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim18 { 0% { opacity: 0.18; transform: rotate(180deg) translate3d(-200px, 200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim19 { 0% { opacity: 0.18; transform: rotate(210deg) translate3d(100px, -500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim20 { 0% { opacity: 0.18; transform: rotate(240deg) translate3d(-300px, 400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim21 { 0% { opacity: 0.18; transform: rotate(270deg) translate3d(200px, 500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim22 { 0% { opacity: 0.18; transform: rotate(300deg) translate3d(-400px, -100px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim23 { 0% { opacity: 0.18; transform: rotate(330deg) translate3d(500px, -400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim24 { 0% { opacity: 0.18; transform: rotate(45deg) translate3d(-100px, 300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim25 { 0% { opacity: 0.18; transform: rotate(75deg) translate3d(300px, 100px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim26 { 0% { opacity: 0.18; transform: rotate(105deg) translate3d(-500px, 500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim27 { 0% { opacity: 0.18; transform: rotate(135deg) translate3d(400px, -100px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim28 { 0% { opacity: 0.18; transform: rotate(165deg) translate3d(-200px, -400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim29 { 0% { opacity: 0.18; transform: rotate(195deg) translate3d(100px, 400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim30 { 0% { opacity: 0.18; transform: rotate(225deg) translate3d(-300px, -500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim31 { 0% { opacity: 0.18; transform: rotate(255deg) translate3d(200px, -200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim32 { 0% { opacity: 0.18; transform: rotate(285deg) translate3d(-400px, 200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim33 { 0% { opacity: 0.18; transform: rotate(315deg) translate3d(500px, 300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim34 { 0% { opacity: 0.18; transform: rotate(345deg) translate3d(-100px, -300px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim35 { 0% { opacity: 0.18; transform: rotate(60deg) translate3d(200px, -500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim36 { 0% { opacity: 0.18; transform: rotate(120deg) translate3d(-300px, 100px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim37 { 0% { opacity: 0.18; transform: rotate(180deg) translate3d(400px, 500px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim38 { 0% { opacity: 0.18; transform: rotate(240deg) translate3d(-500px, -400px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim39 { 0% { opacity: 0.18; transform: rotate(300deg) translate3d(100px, 200px, 1000px) scale(1); } 100% { opacity: 0; } }
@keyframes anim40 { 0% { opacity: 0.18; transform: rotate(360deg) translate3d(-200px, -100px, 1000px) scale(1); } 100% { opacity: 0; } }



/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Fade in animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Floating animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

/* Enhanced typing animation */
.typing-cursor {
  border-right: 2px solid var(--accent);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { border-color: var(--accent); }
  51%, 100% { border-color: transparent; }
}

/* Smooth section transitions */
section {
  transition: all 0.3s ease;
}

/* Enhanced particle system */
.tri {
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  filter: grayscale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.tri:hover {
  filter: grayscale(0);
  opacity: 0.3 !important;
  transform: scale(1.2);
}



/* Parallax container for background elements */
.parallax-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.parallax-element {
  position: absolute;
  opacity: 0.03;
  animation: parallaxFloat 20s linear infinite;
}

.parallax-element:nth-child(1) { animation-delay: 0s; }
.parallax-element:nth-child(2) { animation-delay: -5s; }
.parallax-element:nth-child(3) { animation-delay: -10s; }
.parallax-element:nth-child(4) { animation-delay: -15s; }

@keyframes parallaxFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .hero-avatar:hover {
    transform: none;
  }
  
  .icon-link:hover {
    transform: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

