/* ======================================================
   BILLY PAGÁN · SITIO OFICIAL
   hamburguesa.css
   COMPONENTE · MENÚ HAMBURGUESA
====================================================== */


/* ======================================================
   01. BASE
====================================================== */

.hamburguesa {

    display: none;

    position: absolute;

    top: 1.5rem;
    right: 1.5rem;

    z-index: 50;

    width: 30px;
    height: 22px;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;

}


/* ======================================================
   02. LÍNEAS
====================================================== */

.hamburguesa span {

    display: block;

    width: 100%;
    height: 2px;

    background: #111;

    border-radius: 4px;

    transform-origin: center;

    transition:
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.25s ease;

}


/* ======================================================
   03. ESTADO INICIAL
====================================================== */

.hamburguesa span:nth-child(1) {

    width: 100%;

}


.hamburguesa span:nth-child(2) {

    width: 70%;

}


.hamburguesa span:nth-child(3) {

    width: 40%;

}


/* ======================================================
   04. MENÚ ABIERTO
====================================================== */

.hamburguesa.abierta span:nth-child(1) {

    width: 100%;

    transform:
        translateY(10px)
        rotate(45deg);

}


.hamburguesa.abierta span:nth-child(2) {

    width: 70%;

    opacity: 0;

    transform: translateX(12px);

}


.hamburguesa.abierta span:nth-child(3) {

    width: 100%;

    transform:
        translateY(-10px)
        rotate(-45deg);

}


/* ======================================================
   05. ACCESIBILIDAD
====================================================== */

.hamburguesa:focus-visible {

    outline: 1px solid rgba(17, 17, 17, 0.6);

    outline-offset: 0.5rem;

}


/* ======================================================
   06. REDUCCIÓN DE MOVIMIENTO
====================================================== */

@media (prefers-reduced-motion: reduce) {

    .hamburguesa span {

        transition: none;

    }

}


/* ======================================================
   FIN · hamburguesa.css
====================================================== */

