/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --navbar-height: 72px;
  --accent: #1DB954;
  --accent-2: #00e0ff;
  --bg-deep: #050b1f;
  --bg-mid: #0E2148;
  --bg-light: #112b58;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-deep);
  color: white;
  transition: background-color 0.4s ease-in-out;
  padding-top: var(--navbar-height);
  perspective: 1500px;
  overflow-x: hidden;
}


/* Bunge Spice Regular*/
.bungee-spice-regular {
  font-family: "Bungee Spice", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.cabin-sketch-regular {
  font-family: "Cabin Sketch", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.cabin-sketch-bold {
  font-family: "Cabin Sketch", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bungee-shade-regular {
  font-family: "Bungee Shade", sans-serif;
  font-weight: 400;
  font-style: normal;
}



html {
  scroll-behavior: smooth;
  scroll-padding-top: 8px;
}

/* ===== 3D Background Canvas ===== */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(ellipse at center, #0a1838 0%, #03060f 100%);
}

/* ===== Floating 3D Shapes (CSS-only) ===== */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.18;
  transform-style: preserve-3d;
  will-change: transform;
}

.shape-cube {
  top: 18%;
  left: 8%;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #1DB954, #00e0ff);
  border-radius: 12px;
  animation: floatCube 14s ease-in-out infinite, spin3d 12s linear infinite;
  box-shadow: 0 0 40px rgba(29, 185, 84, 0.45);
}

.shape-ring {
  top: 60%;
  right: 10%;
  width: 130px;
  height: 130px;
  border: 6px solid #00e0ff;
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: floatRing 18s ease-in-out infinite, spin3d 20s linear infinite;
  box-shadow: 0 0 60px rgba(0, 224, 255, 0.35);
}

.shape-pyramid {
  bottom: 12%;
  left: 35%;
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 95px solid rgba(255, 99, 71, 0.55);
  filter: drop-shadow(0 0 30px rgba(255, 99, 71, 0.4));
  animation: floatPyramid 16s ease-in-out infinite, spin3d 24s linear infinite;
}

@keyframes floatCube {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(20px); }
}

@keyframes floatRing {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(40px) translateX(-25px); }
}

@keyframes floatPyramid {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes spin3d {
  0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* ===== 3D Sections (parallax) ===== */
.scene-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.layer {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* ===== 3D Card Styling ===== */
.card-3d {
  background: linear-gradient(145deg, rgba(14, 33, 72, 0.85), rgba(17, 43, 88, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(29, 185, 84, 0.25);
  border-radius: 18px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(29, 185, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.5s ease,
              border-color 0.3s ease;
}

.card-3d:hover {
  border-color: rgba(0, 224, 255, 0.5);
  box-shadow:
    0 35px 70px -12px rgba(0, 0, 0, 0.75),
    0 0 70px rgba(0, 224, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Tilt effect on project cards */
.tilt-3d {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateZ(0);
}

.tilt-3d:hover {
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(20px);
}

/* ===== 3D Floating Profile Pic ===== */
.float-3d {
  display: inline-block;
  transform-style: preserve-3d;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-14px) rotateY(8deg); }
}

/* ===== 3D Title ===== */
.title-3d {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow:
    0 1px 0 #c0c0c0,
    0 2px 0 #a8a8a8,
    0 3px 0 #909090,
    0 4px 0 #787878,
    0 5px 0 #606060,
    0 6px 1px rgba(0,0,0,.1),
    0 0 5px rgba(0,0,0,.1),
    0 1px 3px rgba(0,0,0,.3),
    0 3px 5px rgba(0,0,0,.2),
    0 5px 10px rgba(0,0,0,.25),
    0 10px 10px rgba(0,0,0,.2),
    0 20px 20px rgba(0,0,0,.15);
  transform: translateZ(80px);
  animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
  0%, 100% { transform: translateZ(80px) translateY(0); }
  50% { transform: translateZ(100px) translateY(-8px); }
}

/* navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background-color: rgba(5, 11, 31, 0.85);
  z-index: 9999;
  transition: background-color 0.35s ease, transform 0.2s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 2px 10px rgba(0,0,0,0.18),
    0 1px 0 rgba(29, 185, 84, 0.3);
  border-bottom: 1px solid rgba(29, 185, 84, 0.2);
}

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

.logo a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  user-select: none;
  outline: none;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-block;
  padding: 6px 8px;
  border-radius: 6px;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--accent);
  transform: translateY(-2px) translateZ(5px);
  outline: none;
  text-shadow: 0 0 12px rgba(29, 185, 84, 0.6);
}

.section-heading, h1, h2 {
  scroll-margin-top: calc(var(--navbar-height) + 12px);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--accent);
}

/* Home Section */
.home-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  position: relative;
  transform-style: preserve-3d;
}

.home-content {
  transform-style: preserve-3d;
  max-width: 900px;
  padding: 3rem 2rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(14, 33, 72, 0.5), rgba(17, 43, 88, 0.35));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 224, 255, 0.15);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.home-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #f0f0f0;
  transition: color 0.3s ease 0.1s;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #FF9900, #FF4500);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    background 0.4s ease,
    transform 0.3s ease 0.1s,
    box-shadow 0.3s ease,
    text-shadow 0.3s ease;
  box-shadow:
    0 4px 0 #b33000,
    0 6px 18px rgba(0,0,0,0.4);
}

.btn:hover {
  background: linear-gradient(45deg, #FFB347, #FF6347);
  transform: scale(1.08) translateY(-3px) translateZ(20px);
  box-shadow:
    0 7px 0 #b33000,
    0 12px 25px rgba(0,0,0,0.5);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn:active {
  transform: scale(1.05) translateY(2px) translateZ(10px);
  box-shadow:
    0 1px 0 #b33000,
    0 2px 8px rgba(0,0,0,0.4);
}



/* Font class */
.btn-font {
  font-family: 'Bungee Shade', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
}

/* Animation */
.btn-animate {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-animate:hover {
  animation: pop 0.3s forwards;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1.1); }
}





.project-preview {
  width: 100%;
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  border-radius: 12px;
  background: linear-gradient(147deg, #2e3a59 0%, #1a2b46 74%);
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #4a6fa1 #1a2b46;
  margin-bottom: 1.5rem;
  transform: translateZ(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Custom scrollbar */
.project-preview::-webkit-scrollbar {
  width: 8px;
}
.project-preview::-webkit-scrollbar-track {
  background: #1a2b46;
  border-radius: 8px;
}
.project-preview::-webkit-scrollbar-thumb {
  background: #4a6fa1;
  border-radius: 8px;
}
.project-preview::-webkit-scrollbar-thumb:hover {
  background: #6b8fc7;
}

.project-preview img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  background-color: #0f1a2d;
  border-radius: 12px;
  scroll-snap-align: start;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.project-card .btn {
  display: inline-block;
  margin-top: 1rem;
  transform: translateZ(30px);
}

.project-preview img:first-child {
  opacity: 1;
  transform: scale();
  transition: none;
}

/* Fade-in when visible */
.project-preview img.visible {
  opacity: 1;
  transform: scale(1);
}


.project-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 10000;
}

.lightbox.active {
  display: flex;
}

.lightbox-images {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.lightbox-images img {
  flex: 0 0 auto;
  max-width: 90%;
  max-height: 70vh;
  border-radius: 8px;
  scroll-snap-align: center;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10001;
}


/* Only show lightbox on small devices */
@media (min-width: 769px) {
  .lightbox { display: none !important; }
}


/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(5,11,31,0) 0%, rgba(5,11,31,0.9) 100%);
  color: #ffffffcc;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(29, 185, 84, 0.2);
  margin-top: 2rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}


/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    background-color: rgba(5, 11, 31, 0.95);
    padding: 1rem;
    border-radius: 8px;
    gap: 1rem;
    transition: background-color 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(12px);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    color: var(--accent);
  }
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  color: white;
  transition: background-color 0.4s ease;
  transform-style: preserve-3d;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  transform-style: preserve-3d;
}

.about-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: color 0.3s ease;
  transform: translateZ(40px);
  text-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #ffffffd8;
  transition: color 0.3s ease 0.1s;
  transform: translateZ(20px);
}

/* Projects Section */
.projects-section {
  padding: 4rem 2rem;
  background-color: rgba(17, 43, 88, 0.4);
  color: white;
  transition: background-color 0.4s ease;
  transform-style: preserve-3d;
}

.projects-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.projects-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent);
  transition: color 0.3s ease;
  text-shadow: 0 0 25px rgba(29, 185, 84, 0.4);
}

.project-card {
  background: linear-gradient(145deg, rgba(14, 33, 72, 0.9), rgba(17, 43, 88, 0.7));
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(29, 185, 84, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              background-color 0.4s ease 0.1s,
              border-color 0.3s ease;
  box-shadow:
    0 15px 35px -10px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-card:hover {
  transform: translateY(-8px) translateZ(30px);
  border-color: rgba(0, 224, 255, 0.5);
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(0, 224, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Flip card effect */
.project-card.flip {
  transform: rotateY(180deg);
  transition: transform 0.6s;
  backface-visibility: hidden;
}


.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: color 0.3s ease;
  transform: translateZ(25px);
}

.project-card p {
  font-size: 1rem;
  color: #ffffffd0;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease 0.1s;
  transform: translateZ(15px);
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  color: white;
  transition: background-color 0.4s ease;
  transform-style: preserve-3d;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  text-align: center;
  padding: 3rem 2rem;
  transform-style: preserve-3d;
}

.contact-container h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  transform: translateZ(40px);
  text-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

.contact-container p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #ffffffd5;
  transform: translateZ(20px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform-style: preserve-3d;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 224, 255, 0.15);
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(17, 43, 88, 0.6);
  color: white;
  resize: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateZ(15px);
  backdrop-filter: blur(6px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  background-color: rgba(17, 43, 88, 0.9);
  transform: translateZ(25px);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ffffffa5;
  transition: color 0.3s ease;
}

.contact-form button {
  background-color: var(--accent);
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateZ(30px);
}

.contact-form button:hover {
  background-color: #17a143;
  transform: translateZ(45px) scale(1.05);
  box-shadow: 0 0 25px rgba(29, 185, 84, 0.5);
}

/* Contact Info */
.contact-info {
  margin-top: 2rem;
  text-align: left;
  background-color: rgba(17, 43, 88, 0.6);
  padding: 1.5rem;
  border-radius: 10px;
  color: #ffffffcc;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  transition: background-color 0.4s ease;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease 0.1s;
}

.contact-info a:hover {
  color: #17a143;
  transform: scale(1.1);
}

/* Scroll-to-top button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 1.5rem;
  background: linear-gradient(145deg, var(--accent), #17a143);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 100;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.4),
    0 0 20px rgba(29, 185, 84, 0.4);
  transition: background-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

#scrollTopBtn:hover {
  background-color: #17a143;
  transform: scale(1.15) translateZ(10px);
  box-shadow:
    0 6px 15px rgba(0,0,0,0.5),
    0 0 30px rgba(29, 185, 84, 0.6);
}

/* Active link styling */
.nav-links a.active {
  color: var(--accent);
  font-weight: bold;
  text-shadow: 0 0 12px rgba(29, 185, 84, 0.5);
}

/* Profile Pic */
.profile-pic {
  margin-bottom: 1.5rem;
  transform-style: preserve-3d;
}

.profile-pic img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 35px rgba(29, 185, 84, 0.4);
  transform: translateZ(60px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-pic img:hover {
  transform: translateZ(80px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(29, 185, 84, 0.6);
}

/* ===== Parallax tilt on mouse-move for 3D scenes ===== */
.tilt-wrap {
  transform-style: preserve-3d;
}

/* ===== Reduce motion for users who prefer it ===== */
@media (prefers-reduced-motion: reduce) {
  .shape,
  .float-3d,
  .title-3d,
  .home-content h1 {
    animation: none !important;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding: 2rem 1rem;
    font-size: 1.2rem;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .profile-pic img {
    width: 140px;
    height: 140px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .project-preview {
    height: auto;
    max-height: 150px;
    overflow-y: auto;
  }

  .project-preview img {
    height: auto;
    max-height: 250px;
    margin-top: 5px;

  }

  .project-card {
    padding: 1rem;
  }

  .project-card .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .contact-container {
    padding: 2rem 1rem;
  }

  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }

  .shape-cube { width: 60px; height: 60px; }
  .shape-ring { width: 90px; height: 90px; }
  .shape-pyramid { border-left-width: 35px; border-right-width: 35px; border-bottom-width: 60px; }
}

/* Responsive Font Sizes */
h1, h2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
}

p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Subtle pulse animation for header text */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.home-content h1 {
  animation: pulse 3s infinite ease-in-out;
}
