/* Member page styles */
html {
    scroll-behavior: smooth; /* Enables smooth scrolling when anchor links are clicked */
}

/* Logo styling with width and height constraints */
.logo img {
    width: 150px;  /* Sets the width of the logo */
    height: 100px; /* Sets the height of the logo */
    object-fit: contain; /* Ensures the logo fits within the bounds without distorting */
    display: block;
    margin: 0 auto; /* Centers the logo within its container */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #222;
    color: white;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.member-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.member-profile-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
}

.member-image img {
    border-radius: 50%;
    object-fit: cover;
}

.member-details h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.member-details h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.member-details p {
    font-size: 1.1em;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.member-projects {
    padding: 40px;
    background: #444;
}

.member-projects h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project {
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.project h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.project p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f04;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #d03;
}

footer {
    padding: 20px;
    background: #333;
    color: white;
}

footer p {
    margin: 0;
}
