body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
}

.nav-link {
    @apply text-gray-600 font-medium hover:text-sage-600 transition-colors text-sm;
}

.nav-link.active {
    @apply text-sage-600 font-bold;
}

.swiper-pagination-bullet-active {
    background: #b08d5a !important;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-slide-active img {
    animation: zoom-out 10s ease-out forwards;
}

@keyframes zoom-out {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdfbf7;
}
::-webkit-scrollbar-thumb {
    background: #adbfaa;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #869e84;
}

.prose h3 {
    @apply text-sage-900 mt-10 mb-4;
}

.prose p {
    @apply mb-6 text-gray-600 leading-relaxed;
}