/* =========================================
   HOME PAGE (Index) STYLES
   ========================================= */

/* HERO SLIDER */

.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 30%;
    left: var(--container-padding);
    width: 80%;
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

.hero-btn-container {
    position: absolute;
    bottom: 10%;
    left: var(--container-padding);
}

/* SUB-HERO */
.sub-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sub-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    text-align: center;
    width: 90%;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* SPLIT COLLECTIONS */
.split-section {
    display: flex;
    flex-direction: column;
}

.split-img {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

.split-content {
    width: 100%;
    padding: 4rem var(--container-padding);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.split-content p {
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 2rem;
}

/* REVIEWS */
.reviews-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
}

.reviews-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.reviews-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0 var(--container-padding);
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    height: 100%;
}

.review-slide-group {
    min-width: 100%;
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    justify-content: center;
}

.review-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] .review-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.review-quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .sub-hero-text {
        font-size: 1.8rem;
    }

    .split-content {
        padding: 3rem 1rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .review-slide-group {
        display: block;
    }

    .review-card {
        margin-bottom: 2rem;
    }
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .split-section {
        flex-direction: row;
    }

    .split-img,
    .split-content {
        width: 50%;
        height: 600px;
    }

    .men-section .split-content {
        align-items: flex-end;
        text-align: right;
        padding-left: 3rem;
    }

    .men-section .split-action {
        align-self: flex-start;
    }

    .women-section {
        flex-direction: row-reverse;
    }

    .women-section .split-content {
        align-items: flex-start;
        text-align: left;
        padding-right: 3rem;
    }

    .women-section .split-action {
        align-self: flex-end;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .men-section .split-content {
        padding-left: 4rem;
    }

    .women-section .split-content {
        padding-right: 4rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .split-img,
    .split-content {
        height: 700px;
    }
}