@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 10% !important;
    background: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    height: 70px !important;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

nav .logo a {
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 300px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

#footer-container {
    background-color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    color: #000000;
}

#footer-container a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

#footer-container a:hover {
    text-decoration: underline;
}

.burger-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        padding: 10px 5%;
    }

    .burger-menu {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 10px 0;
    }
}
