/* Brand Variables */
:root {
    --primary: #FF2F2F;
    --secondary: #FCC21B;
    --border: #E5E5E5;
    --bg-light: #F9F9F9;
}

/* Global Typography */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3, h4, h5, .font-display {
    font-family: 'Playfair Display', serif !important;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #d61c1c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 47, 47, 0.2);
}

.form-control:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 0.25rem rgba(252, 194, 27, 0.2) !important;
}