/* Perspective Page Specific Styles */
.perspective-main {
    background-color: #fcfcfc;
}

.perspective-banner {
    width: 100%;
    height: calc(100vh - 80px);
    min-height: calc(100vh - 80px);
    overflow: hidden;
    position: relative;
    background-color: #2b222c;
    /* Matches the dark purplish background from mockup */
}

.banner-logo-overlay {
    z-index: 10;
}

.banner-logo-overlay img {
    max-width: 150px;
    /* Mobile size */
    transition: all 0.3s ease;
}

.perspective-banner .banner-bg-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    max-height: none;
}

.section-bg-light {
    background-color: #ffffff;
}

/* Intro Section */
.perspective-intro .mockup-img {
    max-width: 90%;
    max-height: 600px;
    display: inline-block;
}

.perspective-intro .intro-content {
    max-width: 600px;
    margin: 0 auto;
}

.perspective-intro .intro-text {
    font-size: 16px;
    line-height: 2;
    color: #666666;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.connect-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #444;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    color: var(--clr-gold);
    transform: translateY(-2px);
}

/* Video Slider Section */
.perspective-video {
    padding-bottom: 80px;
    background-color: #ffffff;
}

.perspective-video .section-title {
    font-size: 20px;
    color: #444;
    font-weight: 500;
    margin-bottom: 2rem;
}

.video-link {
    display: inline-block;
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.video-link:hover {
    transform: scale(1.02);
}

/* Swiper Navigation Customization */
.perspectiveSwiper {
    padding: 0 50px;
    /* Space for arrows */
    position: static;
}

.perspectiveSwiper .swiper-wrapper {
    align-items: center;
}

.perspective-prev,
.perspective-next {
    color: #999;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.perspective-prev:after,
.perspective-next:after {
    display: none;
    /* Hide default swiper font icons */
}

.perspective-prev i,
.perspective-next i {
    font-size: 24px;
}

.perspective-prev:hover,
.perspective-next:hover {
    color: #333;
}

.perspective-prev {
    left: 10%;
}

.perspective-next {
    right: 10%;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .perspective-banner {
        height: 40vh !important;
        min-height: 40vh !important;
    }

    .perspective-intro .intro-content {
        text-align: center;
        margin-top: 2rem;
    }

    .intro-text br {
        display: none;
        /* remove manual breaks on smaller screens */
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .perspective-banner .banner-bg-img {
        min-height: 100%;
    }

    .perspectiveSwiper {
        padding: 0 10px;
    }

    .perspective-intro .intro-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .perspective-prev,
    .perspective-next {
        /* display: none; */
        /* Hide arrows on mobile maybe? Or make them smaller */
    }

    .perspective-next {
        right: 24%;
        /* bottom: 0 !important; */
        top: 94%;
    }

    .perspective-prev {
        left: 24%;
        /* bottom: 0 !important; */
        top: 94%;
    }
}

@media (min-width: 768px) {
    .banner-logo-overlay img {
        max-width: 250px;
    }

    .perspective-intro {
        padding-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .banner-logo-overlay img {
        max-width: 350px;
    }
}