/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&display=swap');

body {
    font-family: 'Heebo', sans-serif;
    background: white;
    color: black;
    text-align: center;
 

h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #0b3d91;
}

.director-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-frame {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.director-card {
    background: #acda4d;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease-in-out;
}

.director-card:hover {
    transform: scale(1.05);
}

.director-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.description-box {
    background: #0b3d91;
    color: white;
    padding: 10px;
    border-radius: 18px;
    margin-top: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .main-frame {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .director-card {
        width: 90%;
    }
}
