/*This is a placeholder background gradient. We will add the background image once the content team makes it!*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.our-team {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.team-banner {
    width: 950px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #bfa034;
    display: block;
    margin: 0 auto 15px;
}

.our-team h1 {
    color: #333;
}

.team-description{
    font-size: 16px;
    line-height: 1.7;
    color: #0c1e3d;
    max-width: 600px;
    margin: 10px auto 30px;
    font-family: 'Roboto', sans-serif;
}

body {
    height: 100%;
    background-image: url('../assets/Background-4.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    color: #0c1e3d; 
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', serif;
    color: #bfa034;
}

footer{
    background-color: #0c1e3d;
    color: white;
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
}

footer a {
    color: #bfa034;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.developer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 50px 20px;
}

.developer {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.developer h1 {
    font-family: 'Playfair Display', serif;
    color: #0c1e3d;
}
.developer p{
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.developer-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 15%;
    margin-bottom: 15px;
    border: 3px solid #bfa034;

}

.adjust-img {
    object-position: center 10%;
}

button {
    background-color: #bfa034;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
button:hover {
    background-color: #99802f;
}