p, h1, h2, h3, h4, h5, h6, button {
    font-family: "Manrope", sans-serif;
}

body {
    background-color: #f5f5f9;
    background-size: cover;
    width: auto;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    margin: 0px;
}

.nav-bar {
    width: 100%;
    background-color: #1C539F;
    font-family: "Manrope", sans-serif;
    font-weight: 700 !important;
    padding: 10px 24px;
    box-sizing: border-box;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
}

.nav-content .logo-touch-target {
    display: inline-flex;
    height: 60%;
    width: 350px;
}

.nav-content .nav-logo {
    height: 60px;
    margin: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    width: 200px;
}

.nav-content nav,
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    text-decoration: underline;
}

.profile {
    background-color: #1d539f !important;
    text-align: center;
    padding: 40px 20px 50px;
    margin-bottom: 0;
}

.profile h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.profile .profile-picture {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.profile .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

/* ── Content sections ── */

section {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.about {
    padding-top: 48px;
}

.education {
    padding-top: 48px;
    padding-bottom: 8px;
}

.experience {
    padding-top: 8px;
    padding-bottom: 8px;
}

.hobbies {
    padding-top: 8px;
    padding-bottom: 8px;
}

.travel-map-section {
    padding-top: 8px;
    padding-bottom: 48px;
}

#travel-map {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(28, 83, 159, 0.1);
    z-index: 0;
}

.hobby-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1C539F;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1C539F;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    margin: 0;
}


.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 14px rgba(28, 83, 159, 0.1);
}


.card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.card .dates {
    font-size: 0.875rem;
    color: #1C539F;
    font-weight: 500;
    margin-top: 4px;
}

.banner {
    padding: 20px 0 50px;
    height: 150px;
    background-color: #1d539f;
}

.banner .logo {
    max-width:180px;
    max-height:60px;
    width: auto;
    height: auto;
}

.banner .title {
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.page-header {
    background-color: #1d539f;
    text-align: center;
    padding: 48px 24px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.hobbies-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.travel-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px;
}

#travel-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(28, 83, 159, 0.1);
    z-index: 0;
}