/* Header GOL Styles - da img/style.css */

/* Header Styles */
.header {
    background: #0059b3;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.1);
    border-bottom: 1px solid #ffd700;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.logo-text span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    color: white;
}

.department-title {
    text-align: right;
}

.department-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    flex-direction: row;
}

.department-text {
    text-align: right;
}

.department-logo {
    height: 60px;
    width: auto;
}

.department-title h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: white;
}

.department-title p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
    color: white;
}

/* Responsive Design per Header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .department-title {
        text-align: center;
    }

    .department-content {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .department-text {
        text-align: center;
    }

    .department-logo {
        height: 45px;
    }

    .logo {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }

    .department-logo {
        height: 35px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }
}
