/* feature gallery, upcoming-event->gallery */


.gallary-section {
    background-size: cover;
    background-position: top center;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.gallary-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.gallary-content {
    position: relative;
    z-index: 2;
}

.gallary-content h1 {
    font-size: 3rem;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.3;
}

.gallary-icons {
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallary-icons div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 500;
}

.gallary-icons i {
    color: #fff;
}

.gallary-play-btn {
    position: absolute;
    right: 50px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.gallary-play-btn .circle {
    background: #fff;
    color: #000;
    border-radius: 50%;
    padding: 12px;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallary-play-btn a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallary-play-btn span {
    color: white;
    font-weight: 400;
    font-size: 1.2rem;
    text-decoration: none;
}


@media (max-width: 992px) {
    .gallary-content {
        padding-left: 40px;
    }

    .gallary-content h1 {
        font-size: 2.2rem;
        max-width: 90%;
    }

    .gallary-icons div {
        font-size: 1.1rem;
    }

    .gallary-play-btn {
        right: 30px;
        top: 65%;
    }

    .gallary-play-btn .circle {
        font-size: 1.5rem;
        padding: 10px;
    }

    .gallary-play-btn span {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .gallary-content {
        padding: 20px;
    }

    .gallary-content h1 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .gallary-icons {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallary-icons div {
        font-size: 1rem;
    }

    .gallary-play-btn {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }

    .gallary-play-btn .circle {
        font-size: 1.2rem;
        padding: 10px;
    }

    .gallary-play-btn span {
        font-size: 1rem;
    }

    .gallary-section {
        height: auto;
        padding: 60px 0;
        text-align: center;
    }
}