.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #FF8383;
    color: white;
}
.navbar a, .dropdown:hover .dropbtn {
    text-decoration: none;
    color: white;
    padding: 14px 16px;
    display: block;
}
.navbar a:hover, .dropdown:hover .dropbtn {
    color: black;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.gallery img {
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-intro {
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 18px;
    text-align: center;
    margin: 40px 180px;
}

.team-members {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 40;
    width: 100%;
    /* flex-wrap: nowrap; Prevents wrapping to a new line */
    /* overflow-x: auto;  Allows horizontal scrolling if there are many members */
}

.team-member {
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    flex: 0 0 auto; /* Prevents shrinking */
    width: 240px; /* Fixed width for each team member */
}

.team-member img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%; /* Makes images circular */
    margin-bottom: 10px;
}

.team-member.horizontal {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
}
.team-member.horizontal img {
    margin-right: 24px;
    flex-shrink: 0;
}
.team-member .about-member {
    flex: 1;
}

.index-container {
    padding: 20px;
}
.index-container table {
    width: 100%;
    table-layout: fixed;
}
.index-container td {
    padding: 10px;
}
.index-container img {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    object-fit: cover;
}



.image-container {
    position: relative;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.image-container:hover .overlay {
    opacity: 1;
}


.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    color: white;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #FF8383;
    color: black;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.logo {
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
}

h1{
    font-family: 'Courier New', monospace;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

.index-container p {
    font-size: 15pt;
}

.socials {
    display: block;
    margin: 10px;
}

