*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
div.nav-logos {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between logos */
    padding: 20px;
    background-color: rgba(158, 172, 156, 0.473); /* Light background for contrast */
}

/* Circle container */
.person-logo {
  width: 100px;          /* Circle size */
  height: 100px;
  border-radius: 50%;     /* Makes it a perfect circle */
  overflow: hidden;       /* Ensures image stays inside */
  border: 3px solid #4CAF50; /* Optional border */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd; /* Background color when no image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.person-logo:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  background-color: #ccc;
}


/* Image inside circle */
.person-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure the image fills the circle nicely */
}

section.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 85vh;
    text-align: center;
    padding: 50px 20px;
    background-color: rgb(178, 176, 201);
}

section.hero h1 {
    font-weight: bold;
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #333;
}

section.hero p {
    font-size: 2em;
    line-height: 1.6em;
    white-space: pre-line;
    margin-bottom: 20px;
    color: #666;
    
}

section.hero a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.8em;
    background-color: #14af1b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

section.hero a:hover {
    background-color: #07420b;
}

section.team-section {
    text-align: center;
    padding: 40px 20px 0 20px;
    background-color: #334434;
}

section.team-section h1 {
    font-size: 3em;
    color: #eeeeee;
    margin-bottom: 20px;
}

article.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding: 6em 20px;

}

.member-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 20px;
    transition: transform 0.3s ease;
}
.member-card:hover {
    transform: translateY(-10px);
}
.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.member-card h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #333;
}
.member-card p {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 15px;
}

.member-card a {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.2em;
    background-color: #14af1b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.member-card a:hover {
    background-color: #07420b;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

div.members-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 10px;
}
div.members-socials h3 {
    margin: 0 10px;
    color: white;
    font-weight: bold;
    padding: 10px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.social-links a {
    transition: transform 0.3s ease;
}
.social-links a:hover {
    transform: scale(1.1);
}

.social-links a img{
    width: 48px;
    height: 48px;
}
div.members-socials a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 2rem;
    font-size: 0.9em;
    color: #ccc;
}

@media (max-width: 768px) {
    section.hero h1 {
        font-size: 3.5em;
    }
    section.hero p {
        font-size: 1.6em;
    }
    .member-card {
        width: 95%;
    }

    .members-socials {
        flex-direction: column;
        align-items: center;
    }
}