/* ===================================================================
   TEAM PAGE — team.php
   =================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────── */
.team-hero {
    overflow: hidden;
}

.team-hero .hero-img-float {
    transition: none;
}

.team-hero .hero-img-float:hover {
    transform: none;
}

.team-hero-overlay {
    z-index: 1;
    pointer-events: none;
}

/* ── Team Cards ───────────────────────────────────────────────────── */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--card-radius);
    border: 1px solid rgba(184, 74, 90, 0.1);
    box-shadow: 0 15px 35px rgba(100, 32, 39, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(100, 32, 39, 0.12);
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-img-wrapper {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-light);
}

.team-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.team-overlay {
    background: linear-gradient(transparent 0%, rgba(100,32,39,0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-social .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card hierarchy borders */
.ceo-card { 
    box-shadow: 0 15px 35px rgba(100, 32, 39, 0.15);
    border: 1px solid rgba(184, 74, 90, 0.3);
}

.director-card { 
    box-shadow: 0 15px 35px rgba(100, 32, 39, 0.10);
    border: 1px solid rgba(184, 74, 90, 0.2);
}

/* Typography & Colors */
.text-brand-primary {
    color: #642027 !important;
}

.text-brand-muted {
    color: #8a3b45 !important;
}

.bg-brand-gradient {
    background: linear-gradient(120deg, rgba(100,32,39,0.92) 60%, rgba(184,74,90,0.85) 100%) !important;
}
