body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.header-bar {
    background-color: #000; 
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding: 10px 0;
}

.nav-menu {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 10px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ccc;
}

#home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px); 
    text-align: center;
}

#home-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#home-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.profile-container {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%; 
    object-fit: cover;
    border: 5px solid #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.job-title {
    color: #000;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 500;
    background-color: transparent;
}

#about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 15px;
    border-left: 5px solid #000;
    background-color: #f9f9f9;
}

.experiences-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.experiences-table caption {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.experiences-table th, .experiences-table td {
    border: 2px solid #000;
    padding: 15px;
    text-align: center;
    height: 100px; 
}

.experiences-table th {
    background-color: #333;
    color: white;
    font-size: 1.1rem;
    vertical-align: top;
}

.experiences-table td {
    background-color: #eee;
    font-style: italic;
    font-size: 1rem;
    vertical-align: middle;
}


#map-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 86px); 
}

#map {
    width: 100%;
    height: 100%;
}
