/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    gap: 30px;
}

/* =========================================================
   LOGO
========================================================= */

.logo-image-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo-image {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}

.site-logo-image:hover {
    transform: scale(1.03);
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #F5F0E8;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #C89B63;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #C89B63;
    transition: 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    color: #F5F0E8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.header-phone:hover {
    color: #C89B63;
}

.header-button {
    padding: 14px 28px;
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px;
}

.mobile-menu a {
    color: #F5F0E8;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s ease;
}

.mobile-menu a:hover {
    color: #C89B63;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width: 1100px) {

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .site-logo-image {
        height: 90px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 900px) {

    .header-inner {
        min-height: 100px;
    }

    .main-nav,
    .header-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-logo-image {
        height: 80px;
    }
}

@media(max-width: 480px) {

    .header-inner {
        min-height: 85px;
    }

    .site-logo-image {
        height: 65px;
    }
}