/* 
    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.
*/

/* Galería */
.gallery-section {
    padding: 80px 40px;
    background: linear-gradient(140deg, #ff8eff 30%, #9cf5ff 74%);
    /*background-color: rgb(172 255 250 / 70%);*/

}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ff8eff;
}

.section-title-inv {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    transition: all 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
}