/* Custom Styles for E L Aesthetics & Skincare */

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #38623b;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2d4e30 0%, #6fa070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Card Effect */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 78, 48, 0.15);
}

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

.shape-square {
    border-radius: 1rem;
}

.shape-rounded {
    border-radius: 2rem;
}

/* Print Styles */
@media print {
    nav, .no-print {
        display: none;
    }
    
    body {
        background: white;
    }
}
