header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
    background: #0D1B2A;
    color: #FFFFFF;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
}

.logo {
    margin-left: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 12px;
}

.nav-links li {
    margin: 0 8px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Albert Sans', Serif;
    font-size: 14px;
}

.nav-links a[aria-current="page"] {
    color: #FF6B35;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #FFFFFF;
    cursor: pointer;
}

.btn-reservation {
    background: #FF6B35;
    color: #FFFFFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: auto;
    font-family: 'Albert Sans', Serif;
}

.btn-reservation:hover {
    background: #FFFFFF;
    color: #FF6B35;
}

.btn-insta,
.btn-fb {
    align: right;
}

.btn-insta img {
    margin-left: 20px;
    margin-right: 4px;
    height: 34px;
}

.btn-fb img {
    margin-left: 10px;
    margin-right: 10px;
    height: 34px;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 12px;
        left: 12px;
        width: auto;
        margin: 0;
        padding: 8px 0;
        background: #0D1B2A;
        text-align: left;
        line-height: 2;
        font-size: 24px;
        font-family: 'Albert Sans', serif;
        font-weight: 300;
        border-radius: 8px;
    }

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

    .burger-menu {
        display: block;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .btn-reservation {
        display: inline-flex;
        align-items: center;
        padding: 8px 10px;
        margin-left: auto;
        font-size: 13px;
        white-space: nowrap;
    }

    .burger-menu {
        margin-left: 8px;
        flex-shrink: 0;
    }
}
