/* ── Base ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.7;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* ── Header ── */
header {
    background-color: #1c1c1c;
    color: #fff;
    padding: 20px 0;
    position: relative;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

header .logo a img {
    height: 32px;
    width: auto;
    display: block;
}

header .logo a span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #f9a825;
}

/* ── Biography Section ── */
#biography {
    padding: 60px 0;
}

/* Top block: photo left, summary right */
.bio-intro {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.bio-image {
    flex-shrink: 0;
}

.bio-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;        /* circular portrait */
    border: 4px solid #f9a825;
}

.bio-summary h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.bio-tagline {
    color: #f9a825;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.bio-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bio-facts li {
    font-size: 15px;
    color: #555;
}

.bio-facts li strong {
    color: #333;
}

/* Body text blocks */
.bio-body {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bio-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1c;
    border-left: 4px solid #f9a825;
    padding-left: 12px;
    margin-top: 10px;
}

.bio-body p {
    font-size: 15px;
    color: #555;
}

/* ── Footer ── */
footer {
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
}