﻿.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
    box-sizing: border-box;
    background: rgba(12,12,12,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212,175,55,.25);
    z-index: 9999;
}

.logo{
    display:flex;
    align-items:center;
}

.logo-full{

    height:72px;
    width:auto;

    object-fit:contain;

    transition:.3s;

}
.logo img{
    height:100px;
    width:auto;
    display:block;
}

.logo-full:hover{

    transform:scale(1.03);

}

.menu {
    display: flex;
    gap: 45px;
    margin-left: auto;
}

.navbar-mobile {
    display: none;
    position: relative;
}

.navbar-mobile__toggle {
    list-style: none;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.85);
    cursor: pointer;
}

.navbar-mobile__toggle::-webkit-details-marker {
    display: none;
}

.navbar-mobile__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.2s, opacity 0.2s;
}

.navbar-mobile[open] .navbar-mobile__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-mobile[open] .navbar-mobile__toggle span:nth-child(2) {
    opacity: 0;
}

.navbar-mobile[open] .navbar-mobile__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-mobile__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    display: grid;
    gap: 4px;
}

.navbar-mobile__panel a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color .25s, background .25s;
}

.navbar-mobile__panel a:hover,
.navbar-mobile__panel a.active {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.12);
}

    .menu a,
    .menu a.nav-link {
        color: white;
        text-decoration: none;
        font-size: 17px;
        transition: .25s;
    }

        .menu a:hover,
        .menu a.nav-link:hover {
            color: #D4AF37;
        }

        .menu a.active,
        .menu a.nav-link.active {
            color: #D4AF37;
        }

/* offer-btn removed from site navbar */
/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .navbar {
        padding: 0 30px;
    }

    .menu {
        gap: 25px;
    }

    .logo img {
        height: 60px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .navbar {

        height: 75px;
        padding: 0 20px;

    }

    .menu {

        display: none;

    }

    .navbar-mobile {
        display: block;
        margin-left: auto;
    }

    .logo img {

        height: 60px;

    }

}

@media (max-width: 480px) {

    .navbar {
        height: 68px;
        padding: 0 14px;
    }

    .logo img {
        height: 52px;
    }

}
