

/* Start:/bitrix/templates/spartakiada_copy_copy_copy_copy/components/bitrix/news.list/photogallery/style.css?17479172733462*/
/* Основной контейнер галереи */
.gallery {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #0d47a1, #2a5298, #1e3c72);
    color: white;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

/* Заголовок галереи */
.gallery-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background: linear-gradient(45deg, #ff6b6b, #f7f7f7, #6b9cff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s infinite alternate;
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

/* Сетка галереи */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Анимация для сетки */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Карточка элемента галереи */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    transition: transform 0.5s ease;
    transform: scale(0.8);
    z-index: 1;
}

/* Контент карточки */
.gallery-item-content {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 2;
    transition: transform 0.4s ease;
    transform: scale(1.03);
    backdrop-filter: blur(8px);
}

/* Текст внутри карточки */
.gallery-item-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Эффекты наведения */
.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover::before {
    transform: scale(1);
}

.gallery-item-content:hover {
    transform: scale(1.06);
}

.gallery-item-text:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Мобильные стили */
@media (max-width: 768px) {
    .gallery {
        padding: 30px 10px;
    }

    .gallery-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .gallery-item-content {
        height: 150px;
    }

    .gallery-item-text {
        font-size: 1.2rem;
        padding: 10px;
    }
}

/* End */
/* /bitrix/templates/spartakiada_copy_copy_copy_copy/components/bitrix/news.list/photogallery/style.css?17479172733462 */
