/* Custom styles and animations */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f5f9;
}

.font-serif {
    font-family: 'Lora', serif;
}

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

/* Hero animations */
.hero-subtitle {
    transform: translateY(0);
    animation: slideUp 0.8s ease-out forwards;
}

.hero-title {
    transform: translateY(0);
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-text {
    transform: translateY(0);
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    transform: translateY(0);
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll effect */
.navbar.scrolled {
    background-color: rgba(249, 245, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(59, 31, 59, 0.1);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #5e325e;
}

/* Form focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Mobile menu animation */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

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