/* 1. FONT REGISTRATION */
@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* 2. GLOBAL OVERRIDES */
:root {
    --primary-bkk: #0056b3; /* Adjust to match your official logo blue */
    --kemenkes-green: #00a651; /* Adjust to match Kemenkes logo */
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 3. COMPONENT CUSTOMIZATION */
.navbar-brand img {
    height: 40px;
    width: auto;
}

.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-bkk);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(90%);
}

/* 4. UTILITIES */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-bkk), var(--kemenkes-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}