@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.8;
}

nav {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    border-bottom: 4px solid #e67e22; /* Professional orange bottom border for bar look */
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 960px;
    list-style: none;
}

nav ul li {
    margin: 0 55px; /* Wide spacing for horizontal, balanced spread */
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.25em;
    padding: 12px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 4px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: #e67e22;
    border-bottom: 4px solid #e67e22; /* Orange underline on hover/active */
}

/* Mobile: Reduce spacing but keep horizontal row */
@media (max-width: 768px) {
    nav ul li {
        margin: 0 30px;
    }
    nav ul {
        padding: 15px 0;
    }
}

header {
    text-align: center;
    padding: 200px 20px 140px;
    background-color: #f9f9f9;
}

.hero-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 25px rgba(230,126,34,0.15);
    margin-bottom: 30px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin: 0;
    color: #2c3e50;
}

.tagline {
    font-size: 1.6em;
    color: #555;
    margin: 15px 0;
}

section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #e67e22;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.8;
}

nav {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    border-bottom: 4px solid #e67e22;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 960px;
    list-style: none;
}

nav ul li {
    margin: 0 55px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.25em;
    padding: 12px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 4px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: #e67e22;
    border-bottom: 4px solid #e67e22;
}

header {
    text-align: center;
    padding: 220px 20px 140px;
    background-color: #f9f9f9;
}

.hero-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(230,126,34,0.2);
    margin-bottom: 35px;
}

.about-photo {
    width: 320px;
    max-width: 100%;
    border-radius: 12px;
    display: block;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin: 0;
    color: #2c3e50;
}

.tagline {
    font-size: 1.6em;
    color: #555;
    margin: 15px 0;
}

section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #e67e22;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    width: 70px;
    height: 3px;
    background: #e67e22;
    display: block;
    margin: 15px auto 0;
}

.job h3 {
    color: #e67e22;
    font-size: 1.7em;
    margin-bottom: 10px;
}

.job .date {
    color: #777;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 12px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #555;
    margin-top: 60px;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    h1 { font-size: 3em; }
    nav ul li { margin: 0 30px; }
    .hero-photo { width: 200px; height: 200px; }
}