/*
    styles.css - TechHive Solutions User Management API Web UI
    ---------------------------------------------------------
    This file contains the global and component styles for the User Management API web interface.

    Main Features:
    - Provides consistent layout, colors, and typography for the application.
    - Styles header banner, footer, containers, buttons, and lists for clarity and branding.
    - Uses a modern, responsive design for accessibility and usability.
    - Supports company branding with custom colors and logo placement.
    - Enhances user experience for HR and IT users interacting with the API UI.

    This stylesheet is loaded by index.html and applies to all pages served from wwwroot.
*/

/* Global Styles */
body {
    margin: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

/* Header Banner */

.banner, .site-footer {
    background-color: #083d3d;
    /* Deep teal for contrast */
    padding: 40px 0 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.logo {
    height: 80px;
    width: auto;
    margin-bottom: 0;
}

.slogan {
    color: #ff6f00;
    /* Vibrant orange */
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.footer-text {
    color: #ff6f00;
    /* Vibrant orange */
    font-size: 1rem;
    font-weight: 600;
    margin: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    body {
        margin: 1rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .slogan {
        font-size: 1.5rem;
    }

    .logo {
        height: 60px;
    }
}