/*
 * Brand Override CSS
 * This file overrides the default theme styles
 * Add your custom brand colors and styles here
 */

:root {
    /* Override default brand colors */
    --brand-primary: #ffd200;        /* Van Dorp yellow */
    --brand-secondary: #EB6012;      /* Van Dorp orange */
    --brand-accent: #2385C8;         /* Van Dorp blue */
    
    /* Override other colors if needed */
    --color-navy: #2a1449;          /* Van Dorp navy */
    
    /* Override button radius - makes all buttons rounded */
    --button-radius: 5px;
    --border-radius-sm: 5px;
    --border-radius-md: 5px;
}

/* Additional brand-specific styles */
.brand-override #masthead {
    background: var(--brand-primary);
}

.brand-override .secondary-header {
    background-color: var(--brand-secondary);
}

/* Add more overrides as needed */