@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans:wght@400;500&display=swap');

header {
    background: linear-gradient(90deg, #023e8a, #0077b6, #0096c7);
    color: #f8f9fa;
    padding: 18px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Open Sans', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: #f8f9fa;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #caf0f8;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    border-bottom: 2px solid #90e0ef;
    padding-bottom: 2px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        gap: 18px;
    }
}