/* Custom Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 4s ease-in-out infinite;
    animation-delay: 2s;
}

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

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

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

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

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

/* Input Focus Styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 1px #fbbf24;
}

/* Selection Color */
::selection {
    background: #fde68a;
    color: #681f33;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .animate-float,
    .animate-float-delayed {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .animate-float,
    .animate-float-delayed {
        animation: none;
    }
    
    nav,
    button {
        display: none;
    }
}
