/* ================================
   SDAS Unified Stylesheet
   /wp-content/sd_org/style.css
   ================================ */

/* Brand Colors */
:root {
    --sdas-blue: #003366;
    --sdas-gold: #F3C131;
    --sdas-aqua: #27E4F5;
    --sdas-green: #4CAF50;
}

/* Global */
body {
    margin: 0;
    background-color: var(--sdas-aqua);
    font-family: Arial, sans-serif;
    color: #222;
}

/* Header */
.header-container {
    display: flex;
    align-items: center;
    padding: 20px;
}

.logo {
    height: 200px;
    width: 200px;
    margin-left: 80px;
}

.banner {
    flex-grow: 1;
    margin-left: 40px;
    padding: 10px 20px;
    background-color: orange;
    border: 10px solid var(--sdas-gold);
    border-radius: 5rem;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

/* Navigation */
nav {
    text-align: center;
    margin-top: 10px;
}

.nav-button {
    border: none;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px;
    cursor: pointer;
    background-color: var(--sdas-green);
    border-radius: 6px;
}

/* Content */
.content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

/* Image Layout */
.image-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.image-row img {
    width: 100%;
    border-radius: 6px;
}

.caption {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: var(--sdas-blue);
    color: white;
}

/* Responsive */
@media (max-width: 700px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-left: 0;
    }

    .banner {
        margin-left: 0;
        margin-top: 20px;
        font-size: 22px;
    }

    .image-row {
        flex-direction: column;
    }
}
