/* Pathway Surgery - Core Styles
 * Shared styles across all pages
 */

/* Alpine.js cloak - hide elements until Alpine initializes */
[x-cloak] {
    display: none !important;
}

/* Base typography */
body {
    font-family: 'Poppins', system-ui, sans-serif;
}

/* Gradient utilities */
.gradient-navy {
    background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 100%);
}

/* Fade-in animation */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for interactive elements */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide scrollbar utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Star Rating Utility */
.stars::before {
    content: "★★★★★";
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Timeline bubble pulse animation */
.animate-pulse-subtle {
    animation: pulseSubtle 3s ease-in-out infinite;
}

@keyframes pulseSubtle {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }
}