@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

body {
    font-family: 'Playfair Display', serif;
    background-color: #faf9f6;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-cinzel {
    font-family: 'Cinzel', serif;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #c3a343;
}
::-webkit-scrollbar-thumb:hover {
    background: #a38323; 
}

.quote-box {
    background: #fff;
    border-left: 4px solid #c3a343;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.text-gold {
    color: #c3a343;
}
.bg-gold {
    background-color: #c3a343;
}
.border-gold {
    border-color: #c3a343;
}
.hover\:text-gold:hover {
    color: #c3a343;
}
.hover\:bg-gold:hover {
    background-color: #c3a343;
}

