/* Custom utility classes extending Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-title {
    @apply text-3xl md:text-4xl font-serif font-semibold text-secondary mb-6;
}

/* Button styles */
.btn-primary {
    @apply inline-block px-6 py-3 bg-primary text-white font-medium rounded-lg transition-all duration-300 border border-primary hover:bg-white hover:text-primary;
}

.btn-outline {
    @apply inline-block px-6 py-3 bg-transparent text-primary font-medium rounded-lg transition-all duration-300 border border-primary hover:bg-primary hover:text-white;
}

/* Custom animation classes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Hide scrollbar for clean look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdfbf9; 
}
 
::-webkit-scrollbar-thumb {
    background: #d4c5b9; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b59a85; 
}
