/* Custom Styles for Maxx Dental Care */

/* Global Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(30, 58, 138, 0.85); /* indigo-900 with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #1e3a8a, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Animation for Hero Shapes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #06b6d4; /* cyan-500 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a; /* indigo-900 */
}

/* Leaflet Map Fixes if needed */
.leaflet-container {
    height: 100%;
    width: 100%;
    z-index: 1;
}
