:root {
    /* Main colors - updated to match live site */
    --primary-color: #6b4c3d;      /* Dark brown for header/footer */
    --secondary-color: #d2b48c;    /* Light brown for accents */
    --accent-color: #8b6e4e;       /* Medium brown for buttons */
    --text-color: #403326;         /* Dark brown for main text */
    --text-light: #fcfaf8;         /* Off-white for light text */
    --background-color: #f8f6f4;   /* Light beige for main background */
    --border-color: #d2b48c;       /* Light brown for borders */
    --header-bg: #6b4c3d;          /* Dark brown for header */
    --footer-bg: #6b4c3d;          /* Dark brown for footer */
    --section-bg: #f8f6f4;         /* Light beige for sections */
    --card-bg: #ffffff;            /* White for cards */
    
    /* Font family */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Header styling */
.header-text {
    color: var(--text-light) !important;
}

/* Section styling */
.section-bg {
    background-color: var(--section-bg) !important;
}

/* Card styling */
.card-bg {
    background-color: var(--card-bg) !important;
} 