/**
 * Custom Events Slider - Plugin Stylesheet
 * Designed to match luxury event & testimonial sliders with customizable options
 */

/* Container Setup */
.ces-slider-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.ces-swiper-main {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 5px; /* Prevent card shadow clipping */
}

/* Card General Styling */
.ces-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.ces-card:hover {
    transform: translateY(-4px);
}

.ces-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Image Container */
.ces-card-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.ces-card-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.ces-card:hover .ces-card-image-wrap img {
    transform: scale(1.04);
}

/* Content Banner Area */
.ces-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.ces-card-text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ces-card-title {
    font-family: "Georgia", "Playfair Display", "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.ces-card-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Arrow Action Icon */
.ces-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ces-card:hover .ces-arrow-icon {
    transform: translateY(3px);
}

/* Swiper Pagination Wrap & Dots Styling */
.ces-pagination-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 5;
}

.ces-swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.ces-swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* Pagination Shape Variants */
.ces-dots-shape-square .swiper-pagination-bullet {
    border-radius: 0px !important;
}

.ces-dots-shape-circle .swiper-pagination-bullet {
    border-radius: 50% !important;
}

.ces-dots-shape-pill .swiper-pagination-bullet {
    border-radius: 6px !important;
}

/* Swiper Navigation Arrows */
.ces-swiper-button-prev,
.ces-swiper-button-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ces-swiper-button-prev::after,
.ces-swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}
