/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F2;
}

/* Button Styles */
.btn-primary {
    @apply bg-coral-500 text-white px-8 py-3 rounded-full font-semibold shadow-lg hover:bg-coral-600 hover:shadow-xl hover:-translate-y-1 transition-all duration-300 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-coral-500;
}

.btn-secondary {
    @apply bg-white text-charcoal-900 border-2 border-charcoal-900 px-8 py-3 rounded-full font-semibold hover:bg-charcoal-900 hover:text-white transition-all duration-300 focus:outline-none;
}

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

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

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

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

/* Scroll Reveal Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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