/* Custom Styles for Madame Mim's */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Clip Path */
.clip-path-hero {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Geometric Shapes */
.shape-circle {
    border-radius: 50%;
}

.shape-blob {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #34D399;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Mobile Menu Transitions */
#bar1 {
    transform-origin: center;
}
#bar2 {
    transform-origin: center;
}

.menu-open #bar1 {
    transform: translateY(8px) rotate(45deg);
}
.menu-open #bar2 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Service Card Hover Effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Text Selection */
::selection {
    background: #34D399;
    color: #0F172A;
}
