/* ============================================
   GALERIE CAROUSEL - Styles
   ============================================ */

.galerie-section {
    background: #FAFAF8;
    padding: 60px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
}

/* ============================================
   CAROUSEL CONTAINER
   ============================================ */

.gallery-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Carousel Wrapper & Track */
.carousel-wrapper {
    overflow: hidden;
    max-height: 800px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ============================================
   CAROUSEL SLIDE
   ============================================ */

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-image-container {
    width: 100%;
    height: 900px;
    overflow: hidden;
    background: #F5EFE6;
}

.carousel-image {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    display: block;
}

.carousel-info {
    padding: 30px;
    text-align: center;
    background: white;
}

.carousel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1C1C1C;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.carousel-info p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   NAVIGATION ARROWS
   ============================================ */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #C4856A;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: #A07850;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(196, 133, 106, 0.3);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-prev {
    left: 0;
}

.carousel-nav-next {
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   DOTS NAVIGATION
   ============================================ */

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #C4856A;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    transform: scale(1.2);
    background: rgba(196, 133, 106, 0.3);
}

.carousel-dot.active {
    background: #C4856A;
    box-shadow: 0 0 0 4px rgba(196, 133, 106, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .gallery-carousel {
        padding: 0 20px;
    }

    .carousel-image-container {
      /*  height: 350px;*/
    }

    .carousel-nav {
        width: 38px;
        height: 38px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .carousel-info {
        padding: 20px;
    }

    .carousel-info h3 {
        font-size: 1.25rem;
    }

    .carousel-info p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        padding: 0 10px;
    }

    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .carousel-image-container {
        max-height: 500px;
    }

    .carousel-nav {
        width: 34px;
        height: 34px;
    }

    .carousel-nav {
        top: 30%;
    }

    .carousel-info {
        padding: 15px;
    }

    .carousel-info h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .carousel-info p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-dots {
        margin-top: 15px;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}
