/* UPDS Main Stylesheet */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Configuration - Palatino throughout the system */
body, 
html,
h1, h2, h3, h4, h5, h6,
p, span, div, a, button,
input, textarea, select,
.form-control, .btn, .nav-link,
.card, .alert, .badge {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif !important;
}

/* UPDS Color Variables */
:root {
    --upds-green: #00BF63;
    --upds-blue: #053A8F;
    --upds-light-blue: #9FDCFF;
    --upds-dark-blue: #173C57;
    --upds-gray: #D7DCDE;
}

/* Base Typography */
body {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
    margin-bottom: 1rem;
}

/* Links */
a {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
    color: var(--upds-blue);
    text-decoration: none;
}

a:hover {
    color: var(--upds-green);
}

/* Form Elements */
.form-control,
input, textarea, select {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif !important;
}

/* Buttons */
.btn {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif !important;
    font-weight: 600;
}

/* Navigation */
.nav-link {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif !important;
}

/* Cards and Components */
.card {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
}

.alert {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
}

.badge {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
}

/* Utility Classes */
.font-palatino {
    font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    body { font-size: 14px; }
}
