/* ================================================================
   PERSPECTIVE SLIDER (Cosaincek Style - Aysan Colors)
   ================================================================ */

.perspective-slider {
    width: 100%;
    overflow: hidden;
    padding: 4vw 3vw 0;
    box-sizing: border-box;
    background: #0a1929;
}

.perspective-slider .slide {
    width: 100%;
    height: 90vh;
    margin-top: 0vh;
    position: relative;
}

.perspective-slider .slide .slider-content {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.perspective-slider .slide .slider-content h1 {
    font-size: calc(1rem + 5.5vw);
    line-height: calc(1rem + 3.4vw);
    color: #fff;
    font-family: 'Denton', 'Butler', serif;
    font-weight: 100;
    font-style: normal;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.perspective-slider .slide .slider-content .category {
    color: #ffffff;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 45px;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(26, 54, 93, 0.25);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.perspective-slider .slide .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: inline-block;
}

.perspective-slider .slide .image:before {
    content: '';
    width: 40px;
    height: 103%;
    background: #0a1929;
    position: absolute;
    left: -20px;
    top: -1.5%;
    z-index: 10;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.perspective-slider .slide .image:after {
    content: '';
    width: 40px;
    height: 103%;
    background: #0a1929;
    position: absolute;
    right: -20px;
    top: -1.5%;
    z-index: 10;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .perspective-slider {
        padding: 6vw 3vw 0;
    }

    .perspective-slider .slide {
        height: 85vh;
    }

    .perspective-slider .slide .image:after,
    .perspective-slider .slide .image:before {
        width: 30px;
        left: -15px;
    }

    .perspective-slider .slide .image:after {
        right: -15px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .perspective-slider {
        padding: 8vw 2vw 0;
    }

    .perspective-slider .slide {
        height: 70vh;
    }

    .perspective-slider .slide .slider-content .category {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .perspective-slider .slide .slider-content h1 {
        font-size: calc(1rem + 4vw);
        line-height: calc(1rem + 2.5vw);
    }
}

@media (max-width: 576px) {
    .perspective-slider .slide {
        height: 52vh;
    }

    .perspective-slider .slide .slider-content .category {
        font-size: 24px;
        margin-bottom: 20px;
        letter-spacing: 2px;
        background: rgba(26, 54, 93, 0.45);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    .perspective-slider .slide .slider-content h1 {
        font-size: calc(1rem + 3.5vw);
        line-height: calc(1rem + 2vw);
    }
}

/* Spacer Utility */
.spacer-30 {
    height: 30px;
}

.spacer-60 {
    height: 60px;
}

.spacer-90 {
    height: 90px;
}
