/* Custom styles for Euphoria Salon */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #A04230;
}

/* Selection color */
::selection {
    background: #C05640;
    color: white;
}

/* Input focus styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #C05640 !important;
    box-shadow: 0 0 0 2px rgba(192, 86, 64, 0.1);
}

/* Image placeholder fallback */
img {
    background: linear-gradient(135deg, #F5F0E8 0%, #e8e0d0 100%);
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Gallery grid adjustments */
@media (max-width: 767px) {
    .row-span-2 {
        grid-row: span 1 !important;
    }
}
