/**
 * Page header
 */
header#page-header {
    margin-top: 30px;
    color: black;
    padding: 25px;
}
header#page-header .content {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
}
@media screen and (max-width: 992px) {
    header#page-header .content {
        align-items: flex-start;
    }
}
header#page-header #logo {
    margin-right: 50px;
    width: 150px;
}
@media screen and (max-width: 992px) {
    header#page-header #logo {
        margin-right: 20px;
        width: 120px;
    }
}
header#page-header menu {
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header#page-header menu li {
    margin: 0 10px;
    padding: 0;
}
header#page-header menu li a {
    display: inline-block;
    padding: 4px 0;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}
header#page-header menu li a:hover {
    border-bottom-color: #df0326;
}
header#page-header menu li a.active {
    border-bottom-color: white;
}

/* Burger menu button for small screens */
.burger-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 10px;
}

/* Close button for small screens */
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    header#page-header .content {
        position: relative;
    }
    header#page-header menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    header#page-header menu.open {
        display: flex;
    }
    header#page-header menu li {
        margin: 20px 0;
    }
    header#page-header menu li a {
        font-size: 18px;
        padding: 10px;
        color: white;
    }
    .burger-btn {
        display: block;
    }
    .close-btn {
        display: block;
    }
}