/* ---------- General Styles ---------- */
body {
    font-family: 'Georgia', serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
}

.header {
    background-color: #4a2c2a;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.4em;
    letter-spacing: 1px;
}

.header p {
    font-size: 1.1em;
    margin-top: 10px;
    font-style: italic;
    color: #f0e6e5;
}

/* ---------- Sections ---------- */
.section {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-radius: 10px;
}

.section h2 {
    text-align: center;
    color: #4a2c2a;
    border-bottom: 2px solid #4a2c2a;
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

/* ---------- Team Grid ---------- */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* ---------- Individual Member ---------- */
.member {
    background: #fff8f6;
    border-left: 4px solid #4a2c2a;
    padding: 15px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.member:hover {
    background: #f0e6e5;
    transform: translateY(-4px);
}

.title {
    font-weight: bold;
    color: #4a2c2a;
    margin-bottom: 5px;
}

.name {
    font-size: 1.05em;
    margin-bottom: 5px;
}

.affiliation {
    font-size: 0.95em;
    color: #555;
    font-style: italic;
}

/* ---------- Footer ---------- */
.footer {
    background: #4a2c2a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9em;
}

a {
    color: #ffd4c8;
}

a:hover {
    text-decoration: underline;
}
