body {
    background-image: url('images/auBack.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment:fixed;
}

.nav-link.active {
    text-decoration: underline;
}


/* 3. Main Page Layout */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: calc(100vh - 64px); /* Pushes page content to fill display height minus navbar */
}

.section-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Forces all cards to have the exact same height */
    gap: 30px; /* Space between the cards */
    width: 100%;
    max-width: 1100px;
    flex-wrap: wrap; /* Wraps cards neatly to a new line on smaller mobile screens */
}

.person {
    background-color: rgba(30,30,30,0.65);
    border: none; /* Dark slate outline border from your sketch */
    border-radius: 40px; /* Large pill-like rounded corners */
    width: 280px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3);
}

.image-container {
    width: 100%;
    aspect-ratio: 1 / 1; 
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 4px;
}

.image-box {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the photo neatly to fit the square without squishing or distortion */
}

.desc {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: left;
    width: 100%; /* Keeps text left-aligned with the left edge of the square picture */
    padding-left: 5px;
}