﻿/* ABOUT PAGE STYLES */

.about-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}
@media (max-width: 480px) {
    .about-hero {
        height: 25vh;
    }

}
    .about-hero img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 119, 182, 0.6); /* Blue overlay */
        width: 100%;
        height: 100%;
        z-index: 2;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .hero-overlay h1,
        .hero-overlay p {
            z-index: 3;
            color: #fff;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
        }

    /* Circle Images */
    .bio-img-circle img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #0077b6;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Frame wrapper */
    .image-frame {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Text section style */
    .about-story p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* Button customization */
    .about-story .btn-primary {
        background-color: #2a9d8f;
        border-color: #2a9d8f;
        padding: 12px 24px;
        font-size: 1.2rem;
        border-radius: 30px;
        transition: background-color 0.3s ease;
    }

        .about-story .btn-primary:hover {
            background-color: #0077b6;
            border-color: #0077b6;
        }

    /* Responsive tweaks */
    @media (max-width: 768px) {
        .bio-img-circle img {
            width: 150px;
            height: 150px;
        }

        .hero-overlay h1 {
            font-size: 2rem;
        }

        .hero-overlay p {
            font-size: 1.1rem;
        }
    }

    .bio-img-circle {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .card {
        background: #58c8c8;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
