/* ============================================================
   CSS CUSTOM PROPERTIES — edit these to theme your site!
   TODO: Try asking Copilot to suggest a color palette for you.
   ============================================================ */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-text: #1a1a2e;
  --color-text-muted: #555577;
  --color-accent: #4f46e5;
  --color-accent-hover: #4338ca;
  --color-accent-text: #ffffff;
  --color-border: #e2e8f0;
  --font-main: 'Segoe UI', system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
  --cursor-mushroom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext x='16' y='23' text-anchor='middle' font-size='22'%3E🍄%3C/text%3E%3C/svg%3E") 16 16, auto;
}

/* Dark Mode Theme */
[data-theme="dark"] {
  --color-bg: #000000;
  --color-bg-alt: #0f0f0f;
  --color-text: #f5f5f5;
  --color-text-muted: #a3a3a3;
  --color-accent: #ffffff;
  --color-accent-hover: #d4d4d4;
  --color-accent-text: #111111;
  --color-border: #262626;
}

[data-accent="neon-yellow"] {
  --color-accent: #eaff00;
  --color-accent-hover: #c8e600;
  --color-accent-text: #111111;
}

[data-accent="neon-pink"] {
  --color-accent: #ff3df2;
  --color-accent-hover: #e62ad8;
  --color-accent-text: #111111;
}

[data-accent="neon-green"] {
  --color-accent: #39ff14;
  --color-accent-hover: #2fe30f;
  --color-accent-text: #111111;
}

[data-accent="neon-teal"] {
  --color-accent: #00ffd5;
  --color-accent-hover: #00e0bb;
  --color-accent-text: #111111;
}

[data-accent="pastel"] {
  --color-accent: #f7a8c4;
  --color-accent-hover: #ef8db0;
  --color-accent-text: #1a1a2e;
}

[data-accent="black"] {
  --color-accent: #111111;
  --color-accent-hover: #000000;
  --color-accent-text: #ffffff;
}

/* Smooth transition when toggling dark mode */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
  cursor: var(--cursor-mushroom);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
  cursor: var(--cursor-mushroom);
}

button,
.btn,
[role="button"] {
  cursor: var(--cursor-mushroom);
}

a:hover {
  color: var(--color-accent-hover);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-accent);
  cursor: var(--cursor-mushroom);
  user-select: none;
}

.nav-logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  background: transparent;
  border: none;
  cursor: var(--cursor-mushroom);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  transition: background var(--transition), box-shadow var(--transition);
}

.dark-mode-toggle:hover {
  background: var(--color-bg-alt);
}

.dark-mode-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.switch-track {
  width: 48px;
  height: 26px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  transition: background var(--transition), border-color var(--transition);
}

.switch-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateX(0);
  transition: transform var(--transition), background var(--transition);
}

.switch-thumb::before {
  content: "☀️";
  font-size: 11px;
  line-height: 1;
}

.switch-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

[data-theme="dark"] .switch-track {
  background: color-mix(in srgb, var(--color-accent) 20%, var(--color-bg-alt));
}

[data-theme="dark"] .switch-thumb {
  transform: translateX(22px);
}

[data-theme="dark"] .switch-thumb::before {
  content: "🌙";
}

[data-theme="dark"] .switch-label {
  color: var(--color-accent);
}

.theme-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.accent-swatch {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: var(--cursor-mushroom);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}

.accent-swatch:hover {
  transform: scale(1.1);
  border-color: var(--color-accent);
}

.accent-swatch[data-accent="neon-yellow"] { background: #eaff00; }
.accent-swatch[data-accent="neon-pink"] { background: #ff3df2; }
.accent-swatch[data-accent="neon-green"] { background: #39ff14; }
.accent-swatch[data-accent="neon-teal"] { background: #00ffd5; }
.accent-swatch[data-accent="pastel"] { background: #f7a8c4; }
.accent-swatch[data-accent="black"] { background: #111111; }

/* TODO: The nav isn't responsive on mobile yet.
   Ask Copilot: "Make this navbar collapse into a hamburger menu on small screens" */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/IMG_7931.jpg");
  background-size: 115% 115%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: 0 auto;
  animation: hero-pan 28s ease-in-out infinite alternate;
}

.lava-lamp {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
}

.lava-lamp span {
  position: absolute;
  display: block;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.76) 7%, rgba(255, 255, 255, 0.34) 16%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 74% 82%, rgba(0, 0, 0, 0.08), color-mix(in srgb, var(--color-accent) 34%, transparent 66%) 52%, transparent 80%),
    color-mix(in srgb, var(--color-accent) 30%, rgba(255, 255, 255, 0.48) 70%);
  opacity: 0.3;
  border: 1px solid rgba(255, 255, 255, 0.5);
  mix-blend-mode: screen;
  backdrop-filter: blur(16px) saturate(1.85) brightness(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.85) brightness(1.06);
  box-shadow:
    inset 0 3px 28px rgba(255, 255, 255, 0.74),
    inset 0 -22px 26px color-mix(in srgb, var(--color-accent) 22%, transparent 78%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 6px color-mix(in srgb, var(--color-accent) 10%, transparent 90%),
    0 0 14px color-mix(in srgb, var(--color-accent) 4%, transparent 96%);
  will-change: transform, border-radius;
}

.lava-lamp span:nth-child(1) {
  width: 180px;
  height: 320px;
  top: 5%;
  left: 5%;
  border-radius: 54% 46% 66% 34% / 68% 30% 70% 32%;
  animation: lava-blob-1 34s ease-in-out infinite;
  animation-delay: -8s;
}

.lava-lamp span:nth-child(2) {
  width: 220px;
  height: 360px;
  top: 5%;
  right: 6%;
  border-radius: 58% 42% 50% 50% / 48% 52% 48% 52%;
  animation: lava-blob-2 38s ease-in-out infinite;
  animation-delay: -16s;
}

.lava-lamp span:nth-child(3) {
  width: 360px;
  height: 520px;
  top: 8%;
  left: 32%;
  border-radius: 44% 56% 38% 62% / 64% 24% 76% 36%;
  animation: lava-blob-3 44s ease-in-out infinite;
  animation-delay: -22s;
}

.lava-lamp span:nth-child(4) {
  width: 210px;
  height: 330px;
  left: 7%;
  bottom: 2%;
  border-radius: 58% 42% 54% 46% / 50% 50% 50% 50%;
  animation: lava-blob-4 36s ease-in-out infinite;
  animation-delay: -12s;
}

.lava-lamp span:nth-child(5) {
  width: 320px;
  height: 460px;
  top: 4%;
  left: 47%;
  border-radius: 50% 50% 68% 32% / 72% 22% 78% 28%;
  animation: lava-blob-5 40s ease-in-out infinite;
  animation-delay: -24s;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-content .hero-subtitle,
.hero-content .btn {
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-subtitle {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}

.hero h1 {
  color: #fff;
}

.hero .highlight {
  color: var(--color-accent);
}

html.trip-mode .hero {
  animation-duration: 9s;
}

html.trip-mode .lava-lamp {
  filter: hue-rotate(80deg) saturate(2.2) brightness(1.08);
}

html.trip-mode .lava-lamp span {
  animation-duration: 10s !important;
  opacity: 0.38;
  box-shadow:
    inset 0 4px 32px rgba(255, 255, 255, 0.88),
    inset 0 -26px 30px color-mix(in srgb, var(--color-accent) 48%, transparent 52%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 18px color-mix(in srgb, var(--color-accent) 24%, transparent 76%),
    0 0 42px color-mix(in srgb, var(--color-accent) 14%, transparent 86%);
}

html.trip-mode .hero-content h1,
html.trip-mode .hero-subtitle,
html.trip-mode .hero .btn {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.45),
    0 0 18px color-mix(in srgb, var(--color-accent) 40%, transparent 60%),
    0 0 28px color-mix(in srgb, var(--color-accent) 22%, transparent 78%);
}

html.trip-mode .hero-content {
  animation: trip-float 2.8s ease-in-out infinite;
}

html.trip-mode .nav-logo {
  color: color-mix(in srgb, var(--color-accent) 70%, #ffffff 30%);
  text-shadow: 0 0 14px color-mix(in srgb, var(--color-accent) 40%, transparent 60%);
}

html.mirror-mode .lava-lamp {
  transform: scaleX(-1) skewX(-2deg);
  filter: hue-rotate(140deg) saturate(2.1) brightness(1.06);
}

html.mirror-mode .hero-content {
  animation: mirror-waver 1.8s ease-in-out infinite;
}

html.mirror-mode .hero-content h1,
html.mirror-mode .hero-subtitle,
html.mirror-mode .hero .btn {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 24px color-mix(in srgb, var(--color-accent) 42%, transparent 58%);
}

html.static-mode .hero {
  animation-duration: 7s;
}

html.static-mode .lava-lamp {
  filter: hue-rotate(300deg) saturate(2.6) brightness(1.08) contrast(1.1);
}

html.static-mode .lava-lamp span {
  animation-duration: 8s !important;
  opacity: 0.42;
}

html.static-mode .hero-content {
  animation: static-flicker 1.6s steps(2, end) infinite;
}

html.prism-mode .lava-lamp {
  filter: hue-rotate(220deg) saturate(2.8) brightness(1.1);
}

html.prism-mode .hero,
html.prism-mode .scroll-banner {
  filter: hue-rotate(130deg) saturate(2.3);
}

html.prism-mode .hero-content h1,
html.prism-mode .hero-subtitle,
html.prism-mode .hero .btn {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.45),
    0 0 18px color-mix(in srgb, var(--color-accent) 50%, transparent 50%),
    0 0 30px color-mix(in srgb, var(--color-accent) 28%, transparent 72%);
}

html.lava-mode .hero {
  animation-duration: 12s;
  filter: saturate(1.35) hue-rotate(16deg);
}

html.lava-mode .lava-lamp {
  filter: hue-rotate(26deg) saturate(2.4) brightness(1.12);
}

html.lava-mode .lava-lamp span {
  animation-duration: 8s !important;
  opacity: 0.42;
  box-shadow:
    inset 0 4px 34px rgba(255, 255, 255, 0.82),
    inset 0 -28px 34px color-mix(in srgb, var(--color-accent) 40%, transparent 60%),
    0 0 24px color-mix(in srgb, var(--color-accent) 22%, transparent 78%);
}

html.lava-mode .hero-content h1,
html.lava-mode .hero-subtitle,
html.lava-mode .hero .btn {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 22px color-mix(in srgb, var(--color-accent) 42%, transparent 58%),
    0 0 34px color-mix(in srgb, var(--color-accent) 24%, transparent 76%);
}

html.lava-mode .hero-content {
  animation: lava-bloom 2.2s ease-in-out infinite;
}

@keyframes trip-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.01);
  }
}

@keyframes mirror-waver {
  0%,
  100% {
    transform: translateX(0) skewX(0deg);
  }
  50% {
    transform: translateX(5px) skewX(-1.5deg);
  }
}

@keyframes static-flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes lava-bloom {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.015);
  }
}

@keyframes hero-pan {
  0% {
    background-position: 50% 48%;
  }
  50% {
    background-position: 54% 52%;
  }
  100% {
    background-position: 48% 56%;
  }
}

@keyframes lava-blob-1 {
  0% {
    transform: translate(0, 92px) scale(0.9) scaleY(0.76);
    border-radius: 54% 46% 66% 34% / 70% 28% 72% 30%;
  }
  24% {
    transform: translate(14px, 4px) scale(1.02) scaleY(0.88);
  }
  50% {
    transform: translate(4px, -116px) scale(1.14) scaleY(1.28);
    border-radius: 48% 52% 42% 58% / 24% 76% 24% 76%;
  }
  76% {
    transform: translate(-8px, 16px) scale(1.01) scaleY(0.84);
  }
  100% {
    transform: translate(0, 92px) scale(0.9) scaleY(0.76);
    border-radius: 54% 46% 66% 34% / 70% 28% 72% 30%;
  }
}

@keyframes lava-blob-2 {
  0% {
    transform: translate(0, 80px) scale(0.96) scaleY(0.74);
    border-radius: 58% 42% 50% 50% / 50% 50% 50% 50%;
  }
  22% {
    transform: translate(-10px, -4px) scale(1.02) scaleY(0.84);
  }
  48% {
    transform: translate(10px, -126px) scale(1.12) scaleY(1.26);
    border-radius: 42% 58% 54% 46% / 66% 34% 66% 34%;
  }
  74% {
    transform: translate(-4px, 14px) scale(1.01) scaleY(0.84);
  }
  100% {
    transform: translate(0, 80px) scale(0.96) scaleY(0.74);
    border-radius: 58% 42% 50% 50% / 50% 50% 50% 50%;
  }
}

@keyframes lava-blob-3 {
  0% {
    transform: translate(0, 114px) scale(0.9) scaleY(0.7);
    border-radius: 44% 56% 42% 58% / 68% 20% 80% 32%;
  }
  20% {
    transform: translate(-16px, 8px) scale(1.02) scaleY(0.82);
  }
  46% {
    transform: translate(18px, -146px) scale(1.2) scaleY(1.3);
    border-radius: 58% 42% 44% 56% / 28% 72% 28% 72%;
  }
  72% {
    transform: translate(-10px, 16px) scale(1.01) scaleY(0.82);
  }
  100% {
    transform: translate(0, 114px) scale(0.9) scaleY(0.7);
    border-radius: 44% 56% 42% 58% / 68% 20% 80% 32%;
  }
}

@keyframes lava-blob-4 {
  0% {
    transform: translate(0, -22px) scale(0.9) scaleY(0.72);
    border-radius: 58% 42% 54% 46% / 50% 50% 50% 50%;
  }
  32% {
    transform: translate(14px, 20px) scale(1.04) scaleY(0.84);
  }
  56% {
    transform: translate(-12px, -122px) scale(1.12) scaleY(1.24);
    border-radius: 46% 54% 40% 60% / 70% 30% 70% 30%;
  }
  100% {
    transform: translate(0, -22px) scale(0.9) scaleY(0.72);
    border-radius: 58% 42% 54% 46% / 50% 50% 50% 50%;
  }
}

@keyframes lava-blob-5 {
  0% {
    transform: translate(0, 6px) scale(0.88) scaleY(0.68);
    border-radius: 50% 50% 68% 32% / 74% 18% 82% 26%;
  }
  30% {
    transform: translate(-16px, -14px) scale(1.02) scaleY(0.84);
  }
  55% {
    transform: translate(14px, -150px) scale(1.22) scaleY(1.32);
    border-radius: 58% 42% 38% 62% / 24% 70% 30% 76%;
  }
  80% {
    transform: translate(-10px, 14px) scale(1.01) scaleY(0.82);
  }
  100% {
    transform: translate(0, 6px) scale(0.88) scaleY(0.68);
    border-radius: 50% 50% 68% 32% / 74% 18% 82% 26%;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--color-accent);
  color: var(--color-accent-text) !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-accent-text) !important;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-alt {
  background: var(--color-bg-alt);
  max-width: 100%;
  padding: 5rem 2rem;
}

.section-alt > * {
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

/* Accent underline on section headings */
h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

   .about-text {
  max-width: 650px;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-image {
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow);
}
.avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 3px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), color-mix(in srgb, var(--color-accent) 20%, #fff));
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.project-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background: color-mix(in srgb, var(--color-accent) 10%, var(--color-bg));
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
}

.project-links {
  display: flex;
  gap: 0.75rem;
}

.project-links a {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-badge {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--color-bg) 82%, var(--color-accent) 5%);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-intro {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   RESPONSIVE
   TODO: This is a start, but there's more to do on mobile.
   Ask Copilot: "Improve the responsive styles for screens under 600px"
   ============================================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .hero {
    min-height: 70vh;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .avatar-placeholder {
    width: 100px;
    height: 100px;
  }

} 

.scroll-banner {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.scroll-track span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
  padding-right: 50px;
  opacity: 0.85;
}

/* makes the text glide forever */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.scroll-track span {
  color: var(--color-accent);
} 


