/* Custom styles for the static version */

/* Revolving Glow Ball Animation - Subtle Version */
.revolving-glow-ball {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(
    circle,
    #f8bbd9 0%,
    #ec4899 50%,
    #be185d 80%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(236, 72, 153, 0.4), 0 0 8px rgba(236, 72, 153, 0.2);
  animation: revolve-constant 5s linear infinite;
  opacity: 0.8;
  z-index: 10;
}

/* Subtle halo-like glow effect around the ball */
.revolving-glow-ball::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.15) 0%,
    rgba(236, 72, 153, 0.05) 60%,
    transparent 100%
  );
  border-radius: 50%;
  animation: pulse-halo-subtle 3s ease-in-out infinite alternate;
}

@keyframes revolve-constant {
  /* Start at top center */
  0% {
    top: -5px;
    left: calc(50% - 3px);
  }
  /* Top edge to top-right corner: ~18% of total distance */
  18% {
    top: -5px;
    left: calc(100% - 3px);
  }
  /* Right edge (top to bottom): ~14% of total distance */
  32% {
    top: calc(100% - 3px);
    left: calc(100% + 1px);
  }
  /* Bottom edge (right to left): ~36% of total distance */
  68% {
    top: calc(100% + 1px);
    left: -9px;
  }
  /* Left edge (bottom to top): ~14% of total distance */
  82% {
    top: -5px;
    left: -9px;
  }
  /* Top edge back to center: ~18% of total distance */
  100% {
    top: -5px;
    left: calc(50% - 3px);
  }
}

@keyframes pulse-halo-subtle {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

/* Loading animation */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* Custom font family */
.font-sans {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Gradient text support */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Smooth transitions */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors.duration-200 {
  transition-duration: 200ms;
}

.transition-colors.duration-300 {
  transition-duration: 300ms;
}

/* Hover effects */
.hover\:from-pink-700:hover {
  --tw-gradient-from: #be185d;
  --tw-gradient-to: rgba(190, 24, 93, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-rose-700:hover {
  --tw-gradient-to: #be123c;
}

.hover\:from-pink-600:hover {
  --tw-gradient-from: #db2777;
  --tw-gradient-to: rgba(219, 39, 119, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-rose-600:hover {
  --tw-gradient-to: #e11d48;
}

.hover\:text-pink-600:hover {
  color: #db2777;
}

.hover\:text-pink-700:hover {
  color: #be185d;
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-pink-50:hover {
  background-color: #fdf2f8;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile menu functionality */
.mobile-menu-hidden {
  display: none;
}

/* Focus states */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.focus\:ring-inset:focus {
  box-shadow: inset 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.focus\:ring-pink-500:focus {
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.5);
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:text-center {
    text-align: center;
  }
  
  .sm\:text-left {
    text-align: left;
  }
  
  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  
  .sm\:mt-5 {
    margin-top: 1.25rem;
  }
  
  .sm\:mt-8 {
    margin-top: 2rem;
  }
  
  .sm\:mt-12 {
    margin-top: 3rem;
  }
  
  .sm\:flex {
    display: flex;
  }
  
  .sm\:justify-center {
    justify-content: center;
  }
  
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:max-w-xl {
    max-width: 36rem;
  }
  
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  
  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  
  .md\:mt-5 {
    margin-top: 1.25rem;
  }
  
  .md\:mt-16 {
    margin-top: 4rem;
  }
  
  .md\:grid {
    display: grid;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:gap-x-8 {
    column-gap: 2rem;
  }
  
  .md\:gap-y-10 {
    row-gap: 2.5rem;
  }
  
  .md\:space-y-0 > * + * {
    margin-top: 0px;
  }
  
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  
  .lg\:text-left {
    text-align: left;
  }
  
  .lg\:text-center {
    text-align: center;
  }
  
  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .lg\:justify-start {
    justify-content: flex-start;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:mt-20 {
    margin-top: 5rem;
  }
  
  .lg\:mt-28 {
    margin-top: 7rem;
  }
  
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .lg\:max-w-2xl {
    max-width: 42rem;
  }
  
  .lg\:max-w-3xl {
    max-width: 48rem;
  }
  
  .lg\:max-w-4xl {
    max-width: 56rem;
  }
  
  .lg\:max-w-7xl {
    max-width: 80rem;
  }
  
  .lg\:pb-28 {
    padding-bottom: 7rem;
  }
  
  .lg\:pb-32 {
    padding-bottom: 8rem;
  }
}

@media (min-width: 1280px) {
  .xl\:inline {
    display: inline;
  }
  
  .xl\:pb-32 {
    padding-bottom: 8rem;
  }
  
  .xl\:mt-28 {
    margin-top: 7rem;
  }
} 