/* Government (Executive Arm tabs) page-specific styles */

.gov-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -75px;
    padding-top: 75px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)), url('/static/images/orumba-header-bakground-image2.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.gov-hero h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.gov-hero p {
    font-size: var(--text-lg);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.tabs-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.tab-btn:hover, .tab-btn.active {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gov-card {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gov-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    opacity: 0;
    transition: opacity 0.3s;
}

.gov-card:hover::before {
    opacity: 1;
}

.gov-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(22,163,74,0.15));
    border: 3px solid rgba(34,197,94,0.3);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #16a34a;

    /* for img placeholders */
    object-fit: cover;
}

.gov-card h3 {
    font-size: var(--text-xl);
    color: #111827;
    margin-bottom: 0.5rem;
}

.gov-role {
    color: #16a34a;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* Ensure tab button labels bold black */
.tabs-nav .tab-btn {
    color: #000 !important;
    font-weight: 800 !important;
    text-decoration: none;
}

.tabs-nav .tab-btn.active {
    color: #000 !important;
    font-weight: 900 !important;
}

.gov-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: var(--text-base);
}

@media (max-width: 768px) {
    .tabs-nav { margin-bottom: 2rem; }
    .tab-btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; }
}

