/* =========================================
   Reset
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   Body
========================================= */

body {
    font-family: Arial, sans-serif;

    background: #f8f8f8;

    color: #222;

    line-height: 1.7;

    overflow-x: hidden;
}

/* =========================================
   Container
========================================= */

.header-container {
    width: 92%;
    max-width: 1600px;

    margin: auto;
}

/* =========================================
   Header
========================================= */

.main-header {
    position: sticky;

    top: 0;

    width: 100%;

    z-index: 99999;
}

/* =========================================
   Navbar
========================================= */

.main-navbar {
    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    padding: 18px 0;

    transition: 0.3s ease;
}

/* =========================================
   Navbar Layout
========================================= */

.header-container {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

/* =========================================
   Brand
========================================= */

.brand-logo {
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text h2 {
    font-size: 32px;

    line-height: 1;

    color: #111;

    margin-bottom: 6px;

    font-weight: 700;
}

.brand-text span {
    font-size: 13px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color: #777;
}

/* =========================================
   Desktop Menu
========================================= */

.nav-right {
    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-right a {
    position: relative;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    color: #222;

    transition: 0.3s ease;
}

/* =========================================
   Hover Effect
========================================= */

.nav-right a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #d4af37;

    transition: 0.3s ease;
}

.nav-right a:hover {
    color: #d4af37;
}

.nav-right a:hover::after {
    width: 100%;
}

/* =========================================
   Mobile Button
========================================= */

.mobile-menu-btn {
    width: 50px;
    height: 50px;

    border: none;

    border-radius: 12px;

    background: #111;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    display: none;

    transition: 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #d4af37;
}

/* =========================================
   Scroll Progress
========================================= */

#scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    height: 4px;

    width: 0%;

    background: #d4af37;

    z-index: 999999;
}

/* =========================================
   Back To Top
========================================= */

#backToTop {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 52px;
    height: 52px;

    border: none;

    border-radius: 50%;

    background: #111;

    color: #fff;

    cursor: pointer;

    display: none;

    font-size: 18px;

    z-index: 9999;

    transition: 0.3s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#backToTop:hover {
    background: #d4af37;

    transform: translateY(-5px);
}

/* =========================================
   Mobile Menu
========================================= */

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .nav-right {
        position: fixed;

        top: 88px;
        right: -100%;

        width: 300px;
        height: calc(100vh - 88px);

        background: #fff;

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 30px;

        gap: 25px;

        transition: 0.4s ease;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    }

    .nav-right.active {
        right: 0;
    }

    .nav-right a {
        font-size: 17px;
    }
}

/* =========================================
   Small Mobile
========================================= */

@media (max-width: 576px) {
    .brand-text h2 {
        font-size: 26px;
    }

    .brand-text span {
        font-size: 11px;
    }

    .nav-right {
        width: 100%;
    }
}
