/* About Page Specific Styles */

/* About Banner Section - Hero Banner */
.bwf-banner{
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/banners/about-banner.jpg');
}


/* Banner Breadcrumbs - Bottom Right Position */
.about-banner .banner-breadcrumbs {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-banner .breadcrumb-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.about-banner .breadcrumb-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-banner .breadcrumb-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-banner .breadcrumb-links a:hover {
    color: white;
}

.about-banner .breadcrumb-links .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.about-banner .breadcrumb-links li:last-child {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* About Hero Section (Legacy) */
.about-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(rgba(0, 86, 166, 0.9), rgba(0, 61, 122, 0.95)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
    text-align: center;
}

.about-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 400px;
}

.content-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: var(--transition);
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Founder Section */
.founder-section {
    background-color: var(--light);
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.founder-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 450px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.founder-info .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.founder-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.team-info .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-info p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Advisory Section */
.advisory-section {
    padding: 80px 0;
    background-color: white;
}

.supporter-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.supporter-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.supporter-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.supporter-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-image,
    .founder-image {
        height: 350px;
        order: -1;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-banner:before {
        width: 40%;
    }

    .about-banner .banner-text h1 {
        font-size: 2.8rem;
    }

    .about-banner .banner-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-info h3 {
        font-size: 1.6rem;
    }

    .about-banner {
        padding: 120px 0 50px;
        min-height: 400px;
    }

    .about-banner:before {
        display: none;
    }

    .about-banner .banner-text h1 {
        font-size: 2.3rem;
    }

    .about-banner .banner-text p {
        font-size: 1.1rem;
    }

    .about-banner .banner-breadcrumbs {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 40px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .supporter-logos {
        gap: 20px;
    }

    .supporter-logo {
        height: 60px;
        padding: 15px;
    }

    .about-banner {
        padding: 100px 0 40px;
        min-height: 350px;
    }

    .about-banner .banner-text h1 {
        font-size: 2rem;
    }

    .about-banner .banner-breadcrumbs {
        padding: 10px 20px;
        width: 100%;
    }

    .about-banner .breadcrumb-links {
        justify-content: center;
    }
}
