/* 
    Créditos: Cristhian Yalle 
    Descripción: Estilos responsivos para el sitio web de la comunidad de desarrolladores Grupo Yalle.
    Fecha: 2025-06-15
    Licencia: MIT License
    Este archivo contiene estilos CSS para hacer que el sitio web sea responsivo y se adapte a diferentes tamaños de pantalla.
*/

.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    border-top: 1px solid #ccc;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.menu-toggle {
    width: 50px;
    height: 50px;
    background: #ffffff00;
    /*border-radius: 50%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);*/
}

.mobile-navbar:hover {
    background: #420098;
}

.menu-toggle i {
    color: #ff8eff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.menu-items {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #420098;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.menu-items.active {
    width: 250px;
    height: 250px;
    opacity: 1;
}

.menu-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(140deg, #ee50ff 30%, #00e6ff 74%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(0, 0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



.menu-item i {
    color: white;
    font-size: 1.2rem;
}

.menu-items.active .menu-item {
    opacity: 1;
}

.menu-items.active .menu-item:nth-child(1) {
    transform: translate(-89px, -20px);
}

.menu-items.active .menu-item:nth-child(2) {
    transform: translate(0, -90px);
}

.menu-items.active .menu-item:nth-child(3) {
    transform: translate(89px, -20px);
}

.menu-items.active .menu-item:nth-child(4) {
    /*transform: translate(-50px, 30px);*/
    transform: translate(-50px, 75px);
}

.menu-items.active .menu-item:nth-child(5) {
    transform: translate(50px, 75px);
}