@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: #3a3a3a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: #b8a088;
    border-radius: 10px;
    border: 2px solid #FAF8F5;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a6741;
}

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

/* Gradient fade for hero images */
.hero-gradient-fade {
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
