/* General container for the team members */
.team-container {
    width: 100%;
    max-width: 950px; /* Maximum width as per original .marietp1 */
    margin: 0 auto; /* Center the container */
}

.teambox1 {
    font-size: 32px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
}

.teambox2 {
    flex: 1; 
    min-width: 280px; 
    background-color: #2b2b2b;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    box-sizing: border-box;
}

.teambox3 {
    border-bottom: 2px #36413E solid;
    text-align: center;
    margin: 25px 15px 3px 15px;
	font-family: 'Grimoire',serif;
    width: calc(100% - 30px); 
    padding-bottom: 5px; 
	color: #db715b;
}

.teambox3 i {
    margin-right: 8px;
}

.teambox4 {
    width: 220px;
    height: 220px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.teambox4 img {
    max-width: 100%; 
    max-height: 100%;
    object-fit: cover;
}

.teambox5 {
    padding: 8px;
    text-align: justify;
    font-size: 12px;
    color: #d5dcd5;
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
    font-weight: 400;
    line-height: 150%;
    flex-grow: 1; 
    overflow-y: auto; 
}

/* --- Dropdown Styles --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #2b2b2b;
    color: #db715b;
    padding: 6px 12px; 
    font-size: 14px;
    border: none;
    border-left: 2px #db715b solid;
    border-right: 2px #db715b solid;
    border-top: 2px #db715b solid;
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3a3a3a; 
    color: #ffffff; 
}

.dropdown-content {
    display: none; 
    position: absolute;
    background-color: #2b2b2b;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%; 
    left: 0;
    border: 2px #db715b solid; 
    border-top: none;
    padding-top: 5px; 
	    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

.dropdown-content a {
    color: #db715b;
    padding: 8px 12px; 
    text-decoration: none;
    display: block;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.dropdown-content a:hover {
    background-color: #db715b; 
    color: #2b2b2b; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .teambox1 {
        flex-direction: column;
        align-items: center;
    }

    .teambox2 {
        width: 90%;
        max-width: 400px; 
    }
}
