/* Story Carousel Section */
.story-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-content {
    text-align: center;
}

.gallery-content h2 {
    margin-bottom: 1rem;
}

.gallery-content p {
    margin-bottom: 3rem;
    color: #666;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}

.carousel-slide {
    min-width: calc((100% - 30px) / 3);
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(105deg, var(--bride-color), var(--groom-color));
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: radial-gradient(var(--bride-color), var(--groom-color));
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: radial-gradient(var(--bride-color), var(--groom-color));
}

/* Tablet: 2 photos */
@media (max-width: 992px) {
    .carousel-slide {
        min-width: calc((100% - 15px) / 2);
    }

    .carousel-slide {
        min-width: 100%;
        width: 100%;
    }

    .carousel-slide img {
        height: 600px;
    }

    .carousel-track {
        gap: 0px;
    }
}

/* Mobile: 1 photo */
@media (max-width: 768px) {


    /* .carousel-slide img {
        height: 300px;
    } */

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-container {
        padding: 0;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {


    /* .carousel-slide img {
        height: 250px;
    } */

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}