/* Custom styles that extend Tailwind */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title Animation */
.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title span {
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 100px;
}

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

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

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

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