/*
    about-us.css
    Created on : Dec 3, 2025
    Author     : Justin
*/

body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #142133; /* Navy blue */
}

/* ===========================
   PAGE BANNER
=========================== */

.page-header {
    background-image: url("../images/banners/banner-about-us.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

/* ===========================
   WHO WE ARE SECTION
=========================== */

.who-we-are {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.who-we-are h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #D3A417;
}

.who-we-are p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===========================
   MEET THE TEAM SECTION
=========================== */

.team-section {
    margin: 80px auto;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 20px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #D3A417;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEAM CARD */
.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 22px;
    border-radius: 14px;
    width: 260px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* PHOTO CONTAINER */
.team-photo {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0f1e33, #254169);
}

/* ACTUAL IMAGE */
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT */
.team-member h3 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #D3A417;
}

.team-member p {
    margin: 0;
    font-size: 16px;
    opacity: 0.85;
    font-style: italic;
}

/* ===========================
   PAGE FADE ANIMATION
=========================== */

.page-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPage 1.1s ease forwards;
}

@keyframes fadeUpPage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   MOBILE ADJUSTMENTS
=========================== */

@media (max-width: 600px) {
    .team-member {
        width: 100%;
        max-width: 320px;
    }

    .team-photo {
        height: 200px;
    }

    .who-we-are h2,
    .team-section h2 {
        font-size: 30px;
    }
}