/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric decorations */
.geometric-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* Hero pattern overlay */
.hero-pattern {
    background-image: radial-gradient(#800020 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}
