body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('images/nau_campus_image.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    text-align: center;
}

header {
    background-color: rgba(255, 255, 255, 0.723); 
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.subheader {
    font-style: italic;
    color: #666;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 150px;
    margin-right: 15px;
}

.team-photo {
    max-width: 500px;
    display: block;
    margin: auto;
    border-radius: 8px;

}

.welcome-text {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
    color: rgba(0, 52, 102);
}

.capstone-text {
    font-size: 1.2em;
    font-weight: bold;
    color: rgba(0, 52, 102);
    margin-left: 10px;
}

.highlight-link {
    color: #FFD700;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.highlight-link:hover {
    color: white;
}


h1 {
    margin: 0;
    font-size: 1.8em;
}

h3 {
    text-align: center;
}

.project-description {
    background-color: rgba(0, 52, 102, 0.9); 
    color: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.6;
}

.project-description p {
    margin: 15px 0;
    text-align: left;
}

.btn-warning:hover {
    background-color: #ffcc00; /* brighter yellow */
    color: #003466; /* dark blue for contrast */
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}



.team {
    background-color: rgba(255, 210, 0); 
    color: #003466;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h2 {
    color: inherit;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
    flex-wrap: wrap;
}

.member {
    background-color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33% - 14px);
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #003466;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 10px;
}

.member:hover .member-photo {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
    color: #003466;
}

.member-role {
    font-size: 1em;
    color: #666;
    text-align: center;
    font-weight: normal;
}

.member-major {
    font-size: .75em;
    color: #666;
    text-align: center;
    font-weight: normal;
    font-style: italic;
}

/* Add media query for smaller screens */
@media (max-width: 768px) {
    .team {
        padding: 20px;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .member {
        width: 100%;
        max-width: 400px;
    }

    h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
}