/* Sacraments Styles */

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 35px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.activity-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.activity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-image-placeholder {
    width: 100%;
    height: 220px;
    background-color: #f5f2e9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.activity-item:hover .activity-image-placeholder {
    height: 230px;
}

.activity-item:hover .sacrament-icon {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Sacrament backgrounds */
.sacrament-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.sacrament-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 28, 51, 0.1);
    z-index: 1;
}

.sacrament-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.krst-bg {
    background: linear-gradient(135deg, #97725a 0%, #b7906d 100%);
}

.birmovanie-bg {
    background: linear-gradient(135deg, #9a7554 0%, #ba9572 100%);
}

.eucharistia-bg {
    background: linear-gradient(135deg, #876a4d 0%, #a78862 100%);
}

.pokanie-bg {
    background: linear-gradient(135deg, #a88863 0%, #c8a77a 100%);
}

.pomazanie-bg {
    background: linear-gradient(135deg, #94775c 0%, #b59675 100%);
}

.manzelstvo-bg {
    background: linear-gradient(135deg, #957251 0%, #b58e68 100%);
}

.activity-item-content {
    padding: 20px;
    text-align: left;
    position: relative;
    z-index: 2;
    height: 100px;
}

.activity-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.activity-item-link {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #6c1c33;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.activity-item-link:hover {
    background-color: #FFD700;
    color: #6c1c33;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}