/* Custom styles for Spinify Landing Page */

/* Base transitions and smooth scroll */
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    background-color: rgba(255, 235, 251, 1);
}

/* Section Title Class */
.h-title {
    font-weight: 800; /* Extra Bold */
    font-size: 40px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .h-title {
        font-size: 32px; /* Smaller on mobile for better fit */
    }
}

/* Custom shadow for cards */
.shadow-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.card-top {
    box-shadow: 0 0 40px 0 rgba(140, 0, 2, 0.1);
}

/* Swiper custom pagination colors */
.swiper-pagination-bullet-active {
    background: #F41E4D ! from-pink-500 !important;
}

/* Responsive adjustment for images */
img {
    max-width: 100%;
    height: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Ripple/Wave Effect for Button */
/* Using box-shadow for uniform expansion in all directions */
.btn-ripple-effect {
    position: relative;
    z-index: 1;
}

.btn-ripple-effect::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
}

.btn-ripple-effect:hover::after {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 30, 77, 0.6);
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0 20px rgba(244, 30, 77, 0);
        opacity: 0;
    }
}