@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #b8952b;
    --dark: #1a1a1a;
    --white: #ffffff;
}

.navbar {
    width: 100%;
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--gold);
    font-weight: 600;
}

.btn-contact {
    background-color: var(--gold);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: var(--gold-dark);
}

.mobile-only,
.hamburger {
    display: none;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }

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

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        transition: 0.3s;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

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

    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .btn-contact-mobile {
        background-color: var(--gold);
        color: white;
        padding: 12px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
    }
}