/* Modern Tour Carousel - Professional Design */

.embla {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    --slide-height: 400px;
    --slide-spacing: 20px;
    --slide-size: 33.333%; /* Default: 3 slides per view */
}

/* Dynamic slides per view configurations */
.embla[data-slides-per-view="1"] {
    --slide-size: 100%;
}

.embla[data-slides-per-view="2"] {
    --slide-size: 50%;
}

.embla[data-slides-per-view="3"] {
    --slide-size: 33.333%;
}

.embla[data-slides-per-view="4"] {
    --slide-size: 25%;
}

.embla[data-slides-per-view="5"] {
    --slide-size: 20%;
}

.embla[data-slides-per-view="6"] {
    --slide-size: 16.666%;
}

.embla__viewport {
    overflow: hidden;
    border-radius: 0;
}

.embla__container {
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
    align-items: stretch;
}

.embla__slide {
    transform: translate3d(0, 0, 0);
    flex: 0 0 var(--slide-size);
    min-width: 0;
    padding-left: var(--slide-spacing);
    position: relative;
}

/* Tour Card Styling */
.tour-card {
    position: relative;
    height: var(--slide-height);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

/* Image Container */
.tour-card__image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.tour-card__image img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Image Placeholder */
.tour-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    color: #6c757d;
}

.tour-card__placeholder svg {
    opacity: 0.6;
}

/* Content Overlay */
.tour-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 30px 24px 24px;
    z-index: 2;
}

/* Category Badge */
.tour-card__category {
    display: inline-block;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

/* Title */
h3.tour-card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price */
.tour-card__price {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Link Overlay */
.tour-card__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    text-decoration: none;
    display: block;
}

/* Navigation Buttons */
.embla__button {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid #f5f5f5;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #333;
}

.embla__button:disabled {
    display: none;
}

.embla__button--prev {
    left: -80px;
}

.embla__button--next {
    right: -80px;
}

.embla__button svg {
    width: 10px;
    height: 10px;
}

/* Responsive Design */
@media (max-width: 1315px) {
    .embla__button--prev {
        left: -8px;
    }

    .embla__button--next {
        right: -8px;
    }
}

@media (max-width: 1024px) {
    .embla {
        --slide-spacing: 16px;
        padding: 0 20px;
    }

    /* Reduce slides per view on tablets */
    .embla[data-slides-per-view="4"] {
        --slide-size: 33.333%; /* Show 3 instead of 4 */
    }

    .embla[data-slides-per-view="5"] {
        --slide-size: 33.333%; /* Show 3 instead of 5 */
    }

    .embla[data-slides-per-view="6"] {
        --slide-size: 33.333%; /* Show 3 instead of 6 */
    }
}

@media (max-width: 768px) {
    .embla {
        --slide-height: 350px;
        --slide-spacing: 12px;
        padding: 0 16px;
    }

    .embla__button {
        width: 40px;
        height: 40px;
    }

    .embla__button svg {
        width: 16px;
        height: 16px;
    }

    .embla__button--prev {
        left: 0;
    }

    .embla__button--next {
        right: 0;
    }

    /* Tablet: force 2 slides per view for better readability */
    .embla[data-slides-per-view="3"],
    .embla[data-slides-per-view="4"],
    .embla[data-slides-per-view="5"],
    .embla[data-slides-per-view="6"] {
        --slide-size: 50%;
    }

    .tour-card__title {
        font-size: 18px;
    }

    .tour-card__price {
        font-size: 20px;
    }

    .tour-card__overlay {
        padding: 20px 18px 18px;
    }
}

@media (max-width: 480px) {
    .embla {
        --slide-height: 300px;
        --slide-spacing: 10px;
        padding: 0 12px;
    }

    /* Mobile: always show 1 slide per view */
    .embla[data-slides-per-view="1"],
    .embla[data-slides-per-view="2"],
    .embla[data-slides-per-view="3"],
    .embla[data-slides-per-view="4"],
    .embla[data-slides-per-view="5"],
    .embla[data-slides-per-view="6"] {
        --slide-size: 90%;
    }

    .tour-card__title {
        font-size: 16px;
    }

    .tour-card__price {
        font-size: 18px;
    }

    .tour-card__overlay {
        padding: 16px 16px 16px;
    }

    .tour-card__category {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 8px;
    }
}

/* Focus states for accessibility */
.embla__button:focus {
    outline-offset: 2px;
}

.tour-card__link:focus {
    outline-offset: 2px;
}
