/* header.css UNIFICADO Y RESPONSIVE */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* HEADER FIJO Y RESPONSIVO */
.site-header {
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.logo img {
    height: 70px;
    max-width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #d4af37;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-nav {
    display: flex;
    gap: 1.5rem;
}

.menu-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #1e1e1e;
        width: 100%;
        flex-direction: column;
        text-align: right;
        padding: 1rem;
    }

    .menu-nav.activo {
        display: flex;
    }

    .menu-nav a {
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
    }
}


.navbar-dark .navbar-nav .nav-link {
    color: #d4af37 !important;
    font-weight: bold;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff8dc !important; /* o un dorado más claro */
}
