/* Base Styles - Fonts, Colors, and Global Styles */

/* Custom Font Pairing */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FCFAF8; /* Creamy off-white */
    color: #3D3A38; /* Warm dark gray */
}

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

/* CSS Custom Properties for Theme */
:root {
    --color-brand-cream: #FCFAF8;
    --color-brand-text: #3D3A38;
    --color-brand-accent: #B5651D; /* Earthy terracotta/rust */

    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

/* Base Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

