body {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

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

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

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

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

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

/* Performance optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Reduce paint complexity */
.card-hover,
.btn-gradient,
.floating-element {
    will-change: transform;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .card-hover,
    .floating-element,
    .whatsapp-float {
        animation: none;
        transition: none;
    }
}