/* ================================================
   base.css - Overarching Settings (Colors, Fonts, Mobile Base)
   ================================================ */

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: white; 
}

/* Brand Colors */
:root {
    --primary: #9C2A2A;          /* Your logo burgundy */
    --primary-dark: #7a2121;
    --text-dark: #222222;
    --text-light: #555555;
    --border-light: #eeeeee;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: 1.9rem;
}

h2 {
    font-size: 1.7rem;
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}

/* Basic Utility */
.text-center {
    text-align: center;
}

/* Mobile First - Global */
@media (max-width: 767px) {
    h1 {
        font-size: 1.65rem;
    }
    h2 {
        font-size: 1.55rem;
    }
}

