
    .hamburger {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    transition: all 0.25s;
    position: relative;
  }

  .hamburger-top,
  .hamburger-middle,
  .hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #9d174d;
    transform: rotate(0);
    transition: all 0.5s;
  }

  .hamburger-middle {
    transform: translateY(7px);
  }

  .hamburger-bottom {
    transform: translateY(14px);
  }

  .open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translate(6px);
  }

  .open .hamburger-middle {
    display: none;
  }

  .open .hamburger-bottom {
    transform: rotate(-45deg) translateY(6px) translate(-6px);
  }

   .mobile-menu {
    display: none;
    position: absolute;
    top: 100%; /* Changed from 70px to stick to header bottom */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }

    nav {
      display: none;
    }
  }
    .animate-fade-in-up {
        animation: fadeInUp 1s ease-out forwards;
    }

    @keyframes fadeInUp {
        from {
        opacity: 0;
        transform: translateY(20px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
     .heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(236, 72, 153, 0.3);
    transform: rotate(45deg);
    animation: float 15s linear infinite;
  }

  .heart:before,
  .heart:after {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    position: absolute;
  }

  .heart:before {
    top: -10px;
    left: 0;
  }

  .heart:after {
    top: 0;
    left: -10px;
  }

  @keyframes float {
    0% {
      top: 100%;
      left: 10%;
      opacity: 0;
    }
    10% {
      opacity: 0.3;
    }
    100% {
      top: -10%;
      left: 80%;
      opacity: 0;
    }
  }

  /* Random positioning for hearts */
  .heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
  }

  .heart:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 18s;
  }

  .heart:nth-child(3) {
    left: 60%;
    animation-delay: 6s;
    animation-duration: 15s;
  }

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

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 15s ease-in-out infinite;
}

/* Enhance existing heart animation */
.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(236, 72, 153, 0.3);
  transform: rotate(45deg);
  animation: float-heart 15s linear infinite;
  z-index: 1;
}

@keyframes float-heart {
  0% {
    top: 100%;
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
  }
  10% {
    opacity: 0.3;
  }
  100% {
    top: -10%;
    opacity: 0;
    transform: rotate(45deg) scale(1.2);
  }
}

/* Typing animation container */
#typed-text {
  min-height: 2.5rem;
}
