/* Valiant Hero Slider - front-end styles */

.vhs-hero-slider {
    position: relative;
    width: 100%;
    min-height: 80vh;
    color: #ffffff;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vhs-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.vhs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.vhs-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.vhs-hero-left {
    flex: 1 1 45%;
}

.vhs-hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
}

.vhs-hero-subtitle::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin-right: 8px;
    vertical-align: middle;
}

.vhs-hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1;
    margin: 0 0 1rem;
    font-weight: 800;
}

.vhs-hero-description {
    font-size: 0.98rem;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vhs-hero-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background-color: #008060;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.vhs-hero-button:hover {
    background-color: #00a676;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Right side: Swiper cards */

.vhs-hero-right {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vhs-choose-style {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.vhs-swiper-wrapper {
    position: relative;
}

.vhs-swiper {
    padding: 1.5rem 0 2.5rem;
}

.vhs-card {
    height: 280px;
    display: flex;
    align-items: stretch;
}

.vhs-card-inner {
    background: rgba(20, 20, 25, 0.9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vhs-card-image {
    position: relative;
    overflow: hidden;
    height: 55%;
}

.vhs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.vhs-card-content {
    padding: 0.85rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.15rem;
}

.vhs-card-region {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.85;
}

.vhs-card-title {
    font-size: 1.1rem;
    margin: 0.1rem 0 0.25rem;
    font-weight: 700;
}

.vhs-card-description {
    font-size: 0.8rem;
    opacity: 0.95;
    max-height: 3em;
    overflow: hidden;
}

.vhs-card-button {
    margin-top: 0.4rem;
    align-self: flex-start;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vhs-card:hover .vhs-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.7);
}

.vhs-card:hover .vhs-card-image img {
    transform: scale(1.1);
}

.vhs-card:hover .vhs-card-button {
    background-color: #ffffff;
    color: #111827;
    border-color: #ffffff;
}

/* Swiper navigation */

.vhs-swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.vhs-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.vhs-swiper .swiper-pagination-bullet-active {
    background: #ffffff;
}

.vhs-swiper-nav {
    position: absolute;
    top: 50%;
    right: -0.75rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vhs-swiper-button-prev,
.vhs-swiper-button-next {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(15,15,20,0.9);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.vhs-swiper-button-prev:hover,
.vhs-swiper-button-next:hover {
    background-color: #ffffff;
    color: #111827;
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.75);
}

/* Responsive */

@media (max-width: 960px) {
    .vhs-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .vhs-hero-right {
        width: 100%;
    }

    .vhs-hero-slider {
        min-height: 90vh;
    }

    .vhs-swiper-nav {
        right: 0.5rem;
        flex-direction: row;
        top: auto;
        bottom: 0.4rem;
        transform: none;
    }
}

@media (max-width: 640px) {
    .vhs-hero-inner {
        padding: 3.5rem 1rem 2.5rem;
    }

    .vhs-hero-title {
        font-size: 2.3rem;
    }

    .vhs-card {
        height: 240px;
    }

    .vhs-swiper {
        padding-bottom: 3rem;
    }
}
