/* Custom styles for Styland Beauty */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #8c4058;
}

/* Animation for mobile menu */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure text readability on all backgrounds */
.text-plum-200 {
    color: #e5c2cb;
}

/* Button hover effects */
button, a {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
button:focus, a:focus, input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(163, 84, 110, 0.3);
}

/* Form input styles */
input, textarea, select {
    font-family: 'Lato', sans-serif;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}
