/* Reset & Fonts */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f2ef; /* LinkedIn background */
}

/* Banner */
.banner {
    background-color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-top: -75px;
    background-color: white;
}

.banner h1 {
    margin: 10px 0 5px;
    font-size: 24px;
}

.headline {
    font-size: 16px;
    color: gray;
}

/* Navbar */
.navbar {
    background-color: white;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    text-decoration: none;
    color: #0077b5; /* LinkedIn blue */
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Sections */
.card {
    background-color: white;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card h2 {
    color: #0077b5;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: white;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 10px;
    }
    .profile-photo {
        width: 120px;
        height: 120px;
        margin-top: -60px;
    }
}

