
/* Custom CSS for Serenity Haven Spa */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
body {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #8B5FBF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a4da8;
}

/* Animation for buttons */
.btn-animate {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-animate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Hero section overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(139, 95, 191, 0.2), rgba(255, 169, 135, 0.2));
}
