/* assets/css/global.css */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Brand Colors */
    --color-primary: #3a8528; /* Safari Green */
    --color-secondary: #b48e0f; /* Premium Gold */
    
    /* Neutral Colors for text and backgrounds */
    --color-text-main: #1f2937;
    --color-bg-light: #f9fafb;
}

/* Base styles for smooth scrolling and font rendering */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}