/* about-hero.css - Remove all animation classes, keep only hero-specific styles */
.about-hero {
    height: 90vh;
    min-height: 700px;
    position: relative;
}

.about-hero-bg img {
    filter: brightness(0.65) contrast(1.1) saturate(1.15);
    object-position: center;
}

.about-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(11, 83, 148, 0.65) 100%);
    z-index: 1;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.letter-spacing-wide {
    letter-spacing: 0.35em;
    font-size: 1.35rem;
}

.text-light-blue {
    color: #c3d9ff;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.35s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #074e8c;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero {
        height: 80vh;
        min-height: 600px;
    }

    h1.display-4 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 75vh;
        min-height: 550px;
    }

    h5.letter-spacing-wide {
        font-size: 1.1rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 0.8rem 2.5rem;
    }
}

@media (max-width: 576px) {
    h1.display-4 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .about-hero-content {
        padding: 2rem 1rem;
    }
}