body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8F9FA;
    color: #343A40;
}

/* Navbar Styles */
header {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.navbar-backdrop {
    opacity: 0;
    background-color: rgba(255, 255, 255);
    transition: opacity 0.5s ease-in-out;
    position: fixed;
    top: 60px;
    height: 100vh;
    width: 100vw;
    z-index: 50;
    pointer-events: none;
}

.show .navbar-backdrop {
    opacity: 0.8;
    pointer-events: auto;
}

.navbar {
    display: flex;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #dfd0c3;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-outside-spacer {
    width: 60px;
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-button {
    margin-left: 18px;
}

.navbar-spacer {
    width: 30px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #343A40;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s, color 0.3s;
}

.branding-title {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.navbar-a {
    display: flex;
    align-self: stretch;
    flex-grow: 0.5;
    width: 0;
    padding: 8px;
}

.navbar-links-mobile-close-button {
    display: none;
}

.navbar-line {
    display: none;

}

.nav-div {
    font-size: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.nav-contact a {
    background: #2f4858;
}

.nav-prices a {
    background: #c88127;
}



/* Responsive Design */
@media (max-width: 991px) {

    .navbar-a {
        flex-grow: 1;
        margin-left: 24px;

    }

    .navbar {
        flex-direction: row;
    }

    .nav-item a {
        padding: 8px;
        padding-left: 24px;
                display: flex;
        align-items: center;
    }


    .nav-div {
        color: white;
    }

    .nav-link {
        padding: 0;
    }

    .nav-link div {
        margin: 0;
    }

    .nav-links {
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        gap: 5px;
        z-index: 100;
        position: relative;
    }

    .navbar-links-container {
        position: relative;
        background-color: #241F1C;
        height: 100vh;
        width: 100%;
        padding-top: 16px;
        overflow-y: auto;
    }

    .navbar-line {
        display: block;
        border-bottom: 2px solid white;
        opacity: 0.5;
        width: calc(100% - 48px);
        margin: 4px auto;
    }

    .navbar-links-mobile-close-button {
        position: absolute;
        top: 14px;
        left: 14px;
        width: 48px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: white;
        border-radius: 4px;
        border: 0;
    }

    .nav-links a:hover {
        background-color: #483E37;
        color: white;
    }

    .navbar-collapse {
        position: fixed;
        z-index: 100;
        width: 100%;
        left: 0;
        top: 0;
    }

    .navbar::backdrop {
        background-color: black;
    }

    .navbar-toggler {
        border-radius: 10px;
        padding: 5px;
    }

    .nav-link.active {
        background-color: #816e60;
    }

    .navbar-spacer {
        width: 8px;
    }


    .nav-prices a {
        border-radius: 8px;
        margin: 0 8px;
    }


    .nav-contact a {
        border-radius: 8px;
        margin: 0 8px;
    }
}


@media (min-width: 992px) {
    .navbar {
        flex-direction: row;
    }

    .navbar-collapse {
        width: 0;
        flex-grow: 1;
        height: 100%;
    }

    .nav-links {
        height: 100%;
        width: 100%;
        margin-left: 15px;
        justify-content: flex-end;
        flex-direction: row;
    }

    .nav-item a:hover {
        background-color: #483E37;
        color: #ffffff !important;
    }


    .nav-item {
        background: none;
        height: auto;
        width: 0;
        flex-grow: 1;
        max-width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-contact, .nav-prices {
        flex-grow: 1.5;
    }

    .nav-link.active {
        background-color: #816e60;
        color: #ffffff !important;
    }

    .navbar-links-container {
        width: 100%;
        align-self: stretch;
        /*display: flex;*/
        /*align-items: center;*/
    }

    .nav-link {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-div {
        font-size: clamp(12px, 1.2vw, 24px);
    }

    .nav-prices a {
        border-radius: 16px;
        margin: 0 8px;
        height: calc(100% - 24px);
        color: #f0f0f0;
    }


    .nav-contact a {
        border-radius: 16px;
        margin: 0 8px;
        height: calc(100% - 24px);
        color: #f0f0f0;

    }
}

.nav-contact a:hover, .nav-contact a.active  {
    background: #33668a;
}

.nav-prices a:hover, .nav-prices a.active {
    background: #cc944f;
}
