/* --- savema/static/css/mission_vision.css --- */

.text-brand { color: #852248 !important; }
.bg-brand { background-color: #852248 !important; }

.btn-brand-outline {
    border: 2px solid #852248;
    color: #852248;
    background-color: transparent;
    transition: all 0.3s ease;
}
.btn-brand-outline:hover {
    background-color: #852248;
    color: white;
}

.mission-icon-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    background-color: #fff0f5;
    color: #852248;
}

.mv-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(133, 34, 72, 0.15) !important;
}

.mv-card:hover .mission-icon-box {
    transform: rotateY(180deg);
    background-color: #852248;
    color: white;
}

.bg-icon-decor {
    position: absolute;
    top: 0; right: 0;
    font-size: 10rem;
    color: #f0f0f0;
    opacity: 0.5;
    margin-right: -20px;
    margin-top: -20px;
    z-index: 0;
    pointer-events: none;
}

.divider-custom {
    width: 50px;
    height: 3px;
    background-color: #852248;
    margin: 15px auto;
    border-radius: 2px;
}

.mission-hero-img {
    height: 450px;
    width: 100%;
    object-fit: fill;
}

.mission-hero-overlay {
    background: rgba(0,0,0,0.1);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mission-hero-img {
        height: 250px;
    }
    .mission-icon-box {
        width: 70px; height: 70px; font-size: 2rem;
    }
}