/* ========================================= */
/* ABOUT US PAGE STYLES                      */
/* ========================================= */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);

    /* Premium Banner Image */
    background-image: url('public/images/about-hero.png.jfif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax scrolling effect */
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient taaki text clearly padha ja sake */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 80px 20px;
}

.about-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ========================================= */
/* MOBILE RESPONSIVE                         */
/* ========================================= */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        border-radius: 0 0 24px 24px;
        margin-bottom: 40px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ========================================= */
/* LANDSCAPE RESPONSIVE                      */
/* ========================================= */
@media (max-width: 926px) and (orientation: landscape) {
    .about-hero {
        min-height: 50vh;
        border-radius: 0 0 20px 20px;
        margin-bottom: 30px;
        background-attachment: scroll; /* Parallax off on mobile landscape */
    }

    .about-hero-content {
        padding: 60px 20px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-height: 420px) and (orientation: landscape) {
    .about-hero {
        min-height: 60vh;
        margin-bottom: 20px;
    }

    .about-hero-content {
        padding: 50px 16px;
    }

    .about-hero-title {
        font-size: 1.6rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }
}

/* ========================================= */
/* HIDE OLD ABOUT US HEADER                  */
/* ========================================= */
/* User requested to hide the 'About Us' section header below the new banner using CSS */
.about .section-header {
    display: none !important;
}