

/* GENRAL STYLE */
body {
    width: 100dvw;
    height: 100dvh;
    padding:0;
    margin:0;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    font-family: 'Montserrat', sans-serif; /* Montserrat Light for body */
    text-align: center;
}
.page-banner {
    margin-top: 200px; /* Match navbar height */
    text-align: center;
    width: 100%;
    height: auto;
    display: block;
}
p {
    font-size: 1.2rem;
    font-weight: 300; /* Montserrat Light for body */
    font-family: 'Courier Prime', monospace;
}
.home-content {
    max-width: 1200px;
    margin: 80px auto 60px auto; /* top, sides, bottom */
    padding: 0 40px;
    color: white;
    text-align: center;
}



/* NAVIGATION BAR */
.navbar-container {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;
}
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.navbar-logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}
.navbar-links {
    display: flex;
    gap: 20px;
}
.navbar-links a {
    text-decoration: none;
    color: white;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}
.navbar-links a:hover {
    background-color: #ff6b00;
    color: black;
    border-color: #ff6b00;
}
.navbar-fade {
    position: fixed;
    top: calc(100px + 70px); /* Adjust based on logo + padding size */
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0,0,0,0));
    z-index: 999;
    pointer-events: none;
}



/* TEAM PAGE */
.team-title {
    padding-top: 200px; /* adjust based on your navbar height */
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}
.team-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* margin between team members */
    padding: 40px;
    max-width: 1600px;
    margin: 20px auto;
}
.team-member{
    text-align: center;
    color: white;
    max-width: 450px; /* limit card width */
}
.team-member .profile-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}
.social-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: inline-block;
}
.team-member h3 {
    margin-top: 10px;
    color: white;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}
.team-member p {
    font-size: 1rem;
    color: #ff6b00;
}
