/* Sekcje z ceremoniami i transportem */
.ceremony-section,
.cremation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.ceremony-container,
.cremation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.ceremony-content,
.cremation-content {
    flex: 1;
    padding: 30px 0;
}

.ceremony-content h2,
.cremation-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1.2px;
}

.ceremony-content p,
.cremation-content p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    margin-bottom: 30px;
}

.ceremony-slider,
.cremation-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ceremony-slider-inner,
.cremation-slider-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-image {
    min-width: 100%;
    transition: opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-image.current {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.slider-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: #fff;
}

.slider-prev i,
.slider-next i {
    color: #333;
}

/* Styl dla przycisku owalnego */
.oval-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3a3a3a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid #3a3a3a;
    letter-spacing: 1px;
    text-align: center;
}

.oval-button:hover {
    background-color: transparent;
    color: #3a3a3a;
}

/* Responsywność */
@media (max-width: 992px) {

    .ceremony-container,
    .cremation-container {
        flex-direction: column;
    }

    .cremation-container {
        flex-direction: column-reverse;
    }

    .ceremony-slider,
    .cremation-slider,
    .ceremony-content,
    .cremation-content {
        width: 100%;
        max-width: 100%;
    }

    .slider-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {

    .ceremony-section,
    .cremation-section {
        padding: 50px 0;
    }

    .ceremony-content h2,
    .cremation-content h2 {
        font-size: 38px;
    }

    .slider-image img {
        height: 250px;
    }
}