/* =========================================
   COMPONENTS.CSS
   Component-specific styles for Mama AI website
   ========================================= */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #ec4899, #3b82f6);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Floating Hearts Background Container */
.floating-hearts-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Dynamic Floating Hearts */
.floating-heart {
    position: absolute;
    opacity: 0.15;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.floating-heart svg {
    fill: currentColor;
}

/* Static Center Hearts (Form Heart Shape) */
.center-heart {
    position: absolute;
    opacity: 0.3;
    animation: pulse-heart 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Parallax Wrapper */
.parallax-wrapper {
    position: relative;
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #ec4899;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #db2777;
}