/* Sticky Navigation Bar */
.navbar {
    width: 100%;
    background-color: #FFF2F0; /* Pale Coral */
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.logo {
    display: flex;

    .favicon {
        max-width: 30px;
    }
}
.logo a {
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    color: #FFAF9E; /* Base Color */
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

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

.nav-links ul li {
    display: inline;
}

.nav-links ul li a {
    text-decoration: none;
    color: #333333; /* Dark Gray for Text */
    font-size: 1.1em;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: #FF8F70; /* Muted Orange on Hover */
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #333333; /* Dark Gray */
}

/* Responsive Design */

/* Small devices (phones) */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #FFE2DB; /* Very Light Coral */
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
    }

    .hamburger {
        display: block;
    }
}
