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

html,
body {
    height: 100%;
    width: 100%;
    background-color: #000000;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    overflow-y: auto;
    scroll-behavior: smooth;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 940px;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 16px;
    z-index: 1000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b0b0b;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #0b0b0b;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 3px;
    background-color: #d4af37;
    border-radius: 4px;
    transition: width 0.25s ease;
}

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

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b0b0b;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.contact-btn {
    background: linear-gradient(145deg, #e2c55a, #c9a82e);
    border: 2px solid #0b0b0b;
    color: #0b0b0b;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 60px;
    cursor: pointer;
    letter-spacing: 0.8px;
    font-weight: 500;
    transition: 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
}

.contact-btn:hover {
    cursor: pointer;
    transform: scale(0.97);
    background: #dbb53e;
    box-shadow: 0 0 0 2px #d4af37;
}

@media (max-width: 750px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 18px 20px;
        border-radius: 40px;
        max-width: 96%;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 1.1rem;
        justify-content: center;
    }

    .brand-name {
        font-size: 2rem;
        margin: 4px 0;
    }

    .contact-btn {
        font-size: 1.1rem;
        padding: 6px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 12px;
        max-width: 98%;
    }

    .nav-links {
        gap: 0.9rem;
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.6rem;
    }

    .contact-btn {
        font-size: 0.9rem;
        padding: 4px 16px;
    }
}