/* Header Styling */
.shaded-header {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #1a1a25 0%, #2d1b3d 50%, #1a1a25 100%);
  padding: 1.5rem 1rem 1rem 1rem;
  text-align: center;
  overflow: hidden;
}

/* Pink Glowing Orb - Fixed in Upper Right */
.pink-orb-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pink-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #ff5fa2, #ff8fcf);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  100% {
    transform: translateY(-40px) translateX(20px) scale(1.1);
  }
}

/* Responsive Pink Orb Opacity */
@media (max-width: 640px) {
  .pink-orb {
    opacity: 0.65;
  }
}

@media (max-width: 480px) {
  .pink-orb {
    opacity: 0.45;
  }
}

@media (max-width: 375px) {
  .pink-orb {
    opacity: 0.3;
  }
}

/* Header Canvas Background */
#header-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.6;
}

/* Header Particles */
.header-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.header-particles-container .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

/* SVG Text Container */
.header-text-container {
  position: relative;
  z-index: 3;
  margin-bottom: 0.5rem;
  perspective: 1000px;
}

/* Header Link - Makes name clickable */
.header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.svg-text {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  transform: rotateX(30deg);
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

.svg-text text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 80px;
}

/* Cursive/Feminine Text Style */
.svg-text .cursive-text {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 90px;
}

/* Stroke Dash Pattern */
.svg-text__shaded__stroke {
  stroke-dasharray: 3em 0.5em;
  stroke-dashoffset: 0;
}

/* Hover Animation - Stroke Offset */
.svg-text:hover .svg-text__shaded__stroke {
  animation: offsetAnim 4.2s ease-in-out infinite;
}

@keyframes offsetAnim {
  70%, 100% {
    stroke-dashoffset: 3.5em;
  }
}

/* Navigation */
nav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 95, 162, 0.1);
  border: 1px solid rgba(255, 95, 162, 0.3);
}

nav a:hover {
  background: rgba(255, 95, 162, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 95, 162, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .svg-text {
    font-size: 2.5rem;
  }

  .svg-text text {
    font-size: 50px;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }
}
