/* 
 * Ace Beauty - Custom Styles
 * Palette: Terracotta (#C05838) & Sand (#F4EFEA)
 */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F4EFEA;
}
::-webkit-scrollbar-thumb {
    background: #C05838;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9E4226;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for Cards */
.group:hover .group-hover\:text-white {
    color: white;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Navbar Glass Effect on Scroll */
.nav-scrolled {
    background-color: rgba(244, 239, 234, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
