/* Custom CSS for apimeister.com */

:root {
    --primary-color: #0a2540; /* A deep, professional blue */
    --secondary-color: hsl(25deg 100% 50%); /* A vibrant orange, similar to the original but tweaked */
    --accent-color: #f2f2f2; /* A light gray for backgrounds */
    --text-color: #333;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Lato', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

.navbar {
    border-bottom: 2px solid var(--secondary-color) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 1em 2em;
    border-radius: 2em;
}

.navbar-brand {
    padding-right: 12px;
    border-radius: 1em;
}

.nav-item {
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
}

.nav-item.active {
    border-bottom: 2px solid hsl(25deg 100% 50% / 20%);;
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.card {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.card-body {
    padding: 2rem;
}

.container {
    max-width: 960px;
}

.main-content {
    flex-grow: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
}
