/* Hero Section */
.hero-section{
    background-color: rgba(0, 0, 0, 0.8);
}

.hero-section .section-content{
    display:flex;
    position: relative;
    padding: 100px;
    color: var(--white-color);
    align-items: center;
    justify-content: space-between;
}

.hero-section .hero-details{
    margin-left: 30px;
}

.hero-section .hero-details .title{
    font-family: "Tangerine", cursive;
    font-size: var(--font-size-xxl);
}

.hero-section .hero-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-l);
}

.hero-section .hero-details .description{
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-n);
}

.hero-section .hero-details .buttons{
    display: flex;
}

.hero-section .hero-details .button{
    padding: 10px 26px;
    border: 1px solid transparent;
    color: var(--dark-color);
    border-radius: var(--border-radius-m);
    background-color: var(--white-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover{
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

/* slideshow swiper hero section */

.slideshow-container {
    position: relative;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
}

.slideshow-container .slideshow-list{
    display: flex;
    transition: transform   0.6s ease;
    will-change: transform;
}
.slideshow-container .slideshow-list .slideshow {
    min-width: 100%;
    display: block;
    user-select: none;
}
.slideshow-container .slideshow-list .slideshow .cover-image img {
    border-radius: var(--border-radius-s);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

.slideshow-container .slideshow-wrapper :where(.swiper-button-prev, .swiper-button-next){
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color:var(--white-color);
    padding: 10px;
    border-radius: var(--border-radius-circle);
    backdrop-filter: blur(5px);
    transition: background 0.3s, transform 0.2s;
}

.slideshow-container .slideshow-wrapper :where(.swiper-button-prev, .swiper-button-next):hover{
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color:var(--white-color);
}

/* hero slideshow */
.hero-slideshow{
    position: relative;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
}

.hero-slideshow .slide-list{
    display: flex;
    transition: transform   0.6s ease;
    will-change: transform;
}


.hero-slideshow .slide-list .slide{
    min-width: 100%;
    display: block;
    user-select: none;
    
}

.hero-slideshow .slide-list .slide img{
    border-radius: var(--border-radius-s);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slideshow .slide-arrows{
    position: absolute;
    inset: 0;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

.hero-slideshow .slide-arrows button{
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color:var(--white-color);
    font-size: 24px;
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-circle);
    backdrop-filter: blur(5px);
    transition: background 0.3s, transform 0.2s;
}

.hero-slideshow .slide-arrows button:hover{
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color:var(--white-color);
}

.hero-slideshow .slide-dots{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-slideshow .slide-dots li{
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
}

.hero-slideshow .slide-dots li.active{
    width: 30px;
    background: var(--white-color);
}

/* Section Heading */
.section-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    color: var(--white-color);
}

/* card swiper */

.card-wrapper{
    justify-content: center;
    max-width: 100%;
    padding: 10px;
    margin: 0 60px 35px;
    overflow: hidden;
}

.card-wrapper .swiper-pagination-bullet{
    background-color: white;
}

.card-wrapper :where(.swiper-button-prev, .swiper-button-next) {
    color: var(--white-color) !important;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: var(--border-radius-s);
    border: 1px solid #ff14b8cb;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}


.card-wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
    color: var(--white-color);
    background: linear-gradient(135deg,  #ff14b8cb, #4b4bd6);
    padding: 10px;
    border-radius: var(--border-radius-s);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-wrapper .card{
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    flex-direction: column;
    height: auto;
    border: 1px solid #ff14b8cb;
    border-radius: var(--border-radius-s);
    transition: 0.3s ease;
}

.card-wrapper .card:hover{
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.2);
}


.card .card-content .card-title{
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 10px;
}

.card .card-content .card-buttons{
    display: flex;
    justify-content: center;
    padding: 10px;
}

.card .card-content .card-buttons .button{
    background: var(--white-color);
    color: var(--dark-color);
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.card .card-content .card-buttons .button:hover{
    background: linear-gradient(135deg,  #ff14b8cb, #4b4bd6);
    color: var(--white-color);
}

.card .card-image{
    position: relative;
}

.card .card-image img{
    width: 100%;
    border-radius: var(--border-radius-s);
}

.card .card-image .card-tag{
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--white-color);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    padding: 5px;
    border-radius: 15px;
}

.card-slider-mb{
    display: none;
}

/* coverflow swiper */
.coverflow-container .swiper{
    width: 100%;
    padding: 60px 0 95px 0;
}

.coverflow-list .cover-image  {
    border-radius: var(--border-radius-m);
}

.cover .cover-image img{
    width: 100%;
    border-radius: var(--border-radius-m);
}

.coverflow-wrapper :where(.swiper-button-prev, .swiper-button-next) {
    color: var(--white-color) !important;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: var(--border-radius-s);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}


.coverflow-wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
    color: var(--white-color);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: var(--border-radius-s);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive max-width 900px */
@media screen and (max-width:900px) {
    /* hero-section */
    .hero-section .section-content{
        gap: 50px;
        text-align: center;
        padding: 50px 20px 50px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details{
        margin-left: 0;
    }

    .hero-section .hero-details :is(.subtitle, .description){
        max-width: 100%;
    }

    .hero-section .hero-details .title{
        font-size: var(--font-size-xxxl);
    }

    .hero-section .hero-images{
        margin-right: 0;
    }

    .hero-section .hero-details .buttons{
        justify-content: center;
    }

    /* hero-slideshow */
    .slideshow-container{
        max-width: 100%;
        display: block;
    }

    .slideshow-container .slideshow-wrapper :where(.swiper-button-prev, .swiper-button-next){
        display: none !important;
    }

    /* carousel card */
    .story-carousel{
        gap: 0;
        scroll-behavior: smooth;
        touch-action: pan-x;
    }

    .story-card {
        flex: 0 0 100%;
    }

    .story-slider{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .card-slider-mb{
        display: block;
    }

    .card-wrapper :where(.swiper-button-prev, .swiper-button-next) {
        display: none !important;
    }

    .card-wrapper{
        margin: 0 30px 35px;
        overflow: hidden;
    }

}
