/* Clean Slider Design - No Extra Graphics */

.slideshow {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
}

.slideshow .mainSwiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .mainSwiper .swiper-slide {
    position: relative;
}

.slideshow .mainSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.slideshow .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

/* Content Container */
.slideshow .page-width {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.slideshow .title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.slideshow .title strong {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.slideshow .title h1 {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

/* Simple Navigation */
.slideshow .main-navigation {
    position: absolute;
    bottom: 60px;
    right: calc(50% - 600px);
    z-index: 4;
    display: none;
    gap: 20px;
}

.slideshow .main-navigation .main-prev,
.slideshow .main-navigation .main-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slideshow .main-navigation .main-prev::before,
.slideshow .main-navigation .main-next::before {
    content: '';
    width: 22px;
    height: 22px;
    border-top: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
    transition: all 0.3s ease;
}

.slideshow .main-navigation .main-next::before {
    transform: rotate(45deg);
    margin-left: -2px;
}

.slideshow .main-navigation .main-prev::before {
    transform: rotate(-135deg);
    margin-right: -2px;
}

.slideshow .main-navigation .main-prev:hover,
.slideshow .main-navigation .main-next:hover {
    background: rgba(77, 186, 205, 0.35);
    border-color: rgba(77, 186, 205, 0.6);
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(77, 186, 205, 0.4), 0 0 40px rgba(77, 186, 205, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.slideshow .main-navigation .main-prev:hover::before,
.slideshow .main-navigation .main-next:hover::before {
    border-color: #ffffff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

.slideshow .main-navigation .main-prev:active,
.slideshow .main-navigation .main-next:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(77, 186, 205, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Simple Social Icons */
.slideshow .top-socials {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.slideshow .top-socials p {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px 0;
}

.slideshow .top-socials .socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.slideshow .top-socials .socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.slideshow .top-socials .socials a svg {
    width: 18px;
    height: 18px;
}

.slideshow .top-socials .socials a svg circle {
    fill: transparent;
}

.slideshow .top-socials .socials a svg path {
    fill: #fff;
}

.slideshow .top-socials .socials a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 1600px) {
    .slideshow .main-navigation {
        right: 5%;
    }
    
    .slideshow .title h1 {
        font-size: 56px;
    }
}

@media screen and (max-width: 1399px) {
    .slideshow {
        min-height: 650px;
        max-height: 800px;
    }
    
    .slideshow .title h1 {
        font-size: 48px;
    }
    
    .slideshow .title strong {
        font-size: 16px;
        letter-spacing: 3px;
    }
}

@media screen and (max-width: 1200px) {
    .slideshow {
        max-height: 700px;
    }
    
    .slideshow .main-navigation {
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .slideshow .title h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 900px) {
    .slideshow {
        min-height: 600px;
        max-height: 650px;
    }
    
    .slideshow .title h1 {
        font-size: 36px;
    }
    
    .slideshow .title strong {
        font-size: 14px;
    }
    
    .slideshow .top-socials {
        display: none;
    }
    
    .slideshow .main-navigation .main-prev,
    .slideshow .main-navigation .main-next {
        width: 48px;
        height: 48px;
    }
    
    .slideshow .main-navigation .main-prev::before,
    .slideshow .main-navigation .main-next::before {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 575px) {
    .slideshow {
        min-height: 500px;
        max-height: 550px;
    }
    
    .slideshow .page-width {
        padding: 0 20px;
    }
    
    .slideshow .title h1 {
        font-size: 28px;
    }
    
    .slideshow .title strong {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
    
    .slideshow .main-navigation {
        bottom: 30px;
        gap: 12px;
    }
    
    .slideshow .main-navigation .main-prev,
    .slideshow .main-navigation .main-next {
        width: 42px;
        height: 42px;
    }
    
    .slideshow .main-navigation .main-prev::before,
    .slideshow .main-navigation .main-next::before {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
}
