/* General page styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #D8ECFF;
    color: black;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 15px 30px;
}

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Homepage main text */
.main-content {
    padding: 60px 30px;
    font-size: 1.8rem;
    text-align: center;
}

/* PEOPLE PAGE */
.container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

.profile-image img {
    width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}

.role {
    font-weight: bold;
    margin: 8px 0 16px 0;
}

h1 {
    margin: 0;
    font-size: 2rem;
}

h2 {
    margin-top: 30px;
    text-decoration: underline;
}

/* LINKS */
a {
    color: blue;
}

a:hover {
    text-decoration: underline;
}

/* ---------------------- */
/*  RESPONSIVENESS        */
/* ---------------------- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 10px;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 70%;
        max-width: 260px;
        margin: 0 auto;
    }

    .profile-info {
        text-align: left;
    }
}
