/* ====================================================== */
/* ARCHIVO: style.css - LIMPIEZA TOTAL PARA EL ROSEDAL   */
/* ====================================================== */

/* 1. REGLAS BASE PARA PC (Se oculta lo del móvil) */
.mobile-only,
.mobile-nav-links,
.nav-queque {
    display: none !important;
}

/* 2. REGLAS EXCLUSIVAS PARA MÓVIL (Menos de 768px) */
@media (max-width: 768px) {

    /* Escondemos el header original de la PC */
    .pc-only {
        display: none !important;
    }

    /* Activamos el nuevo Header Móvil */
    .mobile-only {
        display: flex !important;
        background-color: #004080;
        height: 75px;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        width: 100%;
        position: relative;
        z-index: 1001;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    /* Botón de las 3 rayitas (☰) */
    .nav-toggle-queque {
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
    }

    /* Logo "WebOeba" y "Palermo" Centrados */
    .logo-central-queque {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex-grow: 1;
    }

    .main-logo-text {
        color: white;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1;
    }

    .sub-logo-text {
        color: #ffd700;
        /* Dorado para Palermo */
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 5px;
    }

    /* Espacio para equilibrar el centro */
    .placeholder-derecho {
        width: 35px;
    }

    /* Menú desplegable que aparece al tocar las rayitas */
    .mobile-nav-links {
        background-color: #003366;
        /* Azul más oscuro para el menú */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* Esta clase es la que activa el JavaScript */
    .mobile-nav-links.active {
        display: flex !important;
    }

    .mobile-nav-links a {
        color: white;
        padding: 18px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 1.1rem;
    }
}