/* Custom Animations & Utilities */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slow-zoom 20s ease-out forwards;
}

@keyframes scroll-down {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

.animate-scroll-down {
    animation: scroll-down 1.5s ease-in-out infinite;
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #83324f;
}

/* Mobile menu active state */
#mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

#menu-icon.open path:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-icon.open path:nth-child(2) {
    opacity: 0;
}

#menu-icon.open path:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Form focus styles */
input:focus,
textarea:focus {
    background-color: #fff;
}

/* Button hover effects */
button[type="submit"]:hover {
    transform: translateY(-1px);
}

button[type="submit"]:active {
    transform: translateY(0);
}
