/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

main {
    padding: 20px;
}

/* Header Styles */
.header-bar {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.header-bar .logo {
    width: 150px;
}

/* Desktop Navigation Styles */
.desktop-nav {
    display: none;
    background-color: #444;
    position: relative;
    padding: 10px;
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.desktop-nav ul li {
    margin: 0 15px;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
}

/* Sticky Navigation */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background-color: #333;
}

#hamburger-btn {
    font-size: 30px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

#mobile-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

#mobile-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
}

#mobile-menu a:hover {
    background-color: #575757;
}

#mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .mobile-nav {
        display: none;
    }
}
