/* =========================================
   Birdon Power Pages Theme
   ========================================= */

/* Color Variables */
:root {
    --birdon-primary: #09414e;      /* Deep Teal */
    --birdon-complementary: #f6321e;
    --birdon-dark-green: #4f5826;   /* Dark Olive */
    --birdon-yellow: #e3e249;       /* Bright Yellow */
    --birdon-blue: #216c79;         /* Ocean Blue */
    --birdon-maroon: #4d0026;       /* Deep Maroon */
    --birdon-light-blue: #7bb0d0;   /* Light Blue */
    --birdon-light-gray: #e6ebeb;   /* Light Gray */
    --birdon-purple: #998bb3;       /* Muted Purple */
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--birdon-light-gray);
    color: var(--birdon-primary);
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: var(--birdon-primary);
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation */
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}
nav a:hover {
    color: var(--birdon-yellow);
}

/* Buttons */
button, .btn {
    background-color: var(--birdon-blue);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover, .btn:hover {
    background-color: var(--birdon-complementary);
}

/* Links */
a {
    color: var(--birdon-primary);
    text-decoration: underline;
}
a:hover {
    color: var(--birdon-yellow);
}


/* Footer */
footer {
    background-color: var(--birdon-primary);
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

footer p {
    color: #fff;
    text-align: center;
}

/* Accent Sections */
.section-highlight {
    background-color: var(--birdon-light-blue);
    padding: 2rem;
    border-left: 5px solid var(--birdon-yellow);
}

.doc-section-title {
    color: var(--birdon-complementary);
    font-size: 18px;
}


/* Responsive */
@media (max-width: 768px) {
    header {
        font-size: 1.2rem;
    }
    nav a {
        display: block;
        margin: 0.5rem 0;
    }
}