/* ========================= */
/* RESET */
/* ========================= */

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

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

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
    width: 100%;
    background: #111;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================= */
/* LOGO */
/* ========================= */

.logo {
    display: flex;
    align-items: center;
    height: 70px;       
    margin-top: 10px;       /* controls navbar height */
}

.logo img {
    height: 100%;
    width: auto;
    transform: scale(2.4);     /* adjust between 2.2 – 2.8 */
    transform-origin: left center;
    display: block;
}

/* ========================= */
/* NAV MENU */
/* ========================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #d4a017;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline {
    border: 1px solid #d4a017;
    color: #d4a017;
    background: transparent;
}

.btn-outline:hover {
    background: #d4a017;
    color: white;
}

.btn-primary {
    background: #d4a017;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #b8860b;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) { 
    .logo_hamburgerGap{
        display: flex;
        gap: 150px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        display: none;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 18px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 85%;
        margin-top: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}