/* master.css - Includes scrollbar + common styles */
:root {
    --bg-color: #F8F6F1;
    --text-color: #383E38;
    --accent-color: #9A8265;
    --accent-dark: #7A6245;
    --line-color: #d1cbc1;
    --section-bg: #E78841;
    --footer-bg: #29443D;
    --footer-text: #F4F2EB;
    --footer-line: #52675d;
    --light-accent: #A89276;
    --heading-font: 'Open Sans', sans-serif;
    --body-font: 'Playfair Display', serif;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-color);
}

/* Other common styles can go here too */