/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    z-index: 1000;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.navbar-menu li {
    margin: 0;
    white-space: nowrap;
}

.navbar-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.navbar-menu a:hover {
    color: #bfa15a;
}

.navbar-menu .contacto-link {
    background-color: #666666;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-menu .contacto-link:hover {
    background-color: #bfa15a;
    color: #000000;
}

/* --- Mobile Navigation --- */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
        height: 60px;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #000000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 0;
        z-index: 1000;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-menu a {
        font-size: 1.1rem;
        padding: 12px 0px;
        width: 100%;
        display: block;
    }
    
    .navbar-menu .contacto-link {
        background-color: #666666;
        margin: 15px auto;
        width: 80%;
        max-width: 200px;
    }
    
    /* Hamburger animation */
    .navbar-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .navbar-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}