.home-body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.home-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Slideshow */
.slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    width: 110%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: contrast(1.1) brightness(0.8);
    transform: translateX(-5%) scale(1.05);
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide[aria-hidden="false"] {
    opacity: 1;
    transform: translateX(-5%) scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 10;
}

/* Social Left */
.social-vertical {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-text {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: center;
    margin-bottom: 48px;
    white-space: nowrap;
}

.social-line {
    width: 1px;
    height: 40px;
    background-color: var(--primary);
    margin-bottom: 32px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.social-icon {
    cursor: pointer;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

/* Slider Right */
.slider-controls {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
}

.slider-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.slider-num {
    margin-right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
}

.slider-line {
    width: 12px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    transition: all 0.3s ease;
}

.slider-btn:hover .slider-num {
    opacity: 1;
    transform: translateX(0);
}

.slider-btn:hover .slider-line {
    width: 40px;
    background-color: var(--primary);
}

.slider-btn.active .slider-num {
    opacity: 1;
    color: #fff;
    transform: translateX(0);
}

.slider-btn.active .slider-line {
    width: 40px;
    background-color: var(--primary);
}

/* Content Overlay */
.content-overlay {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 150px;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.brush-tag {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.brush-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
    transform: skewX(-20deg) scaleY(1.2) scaleX(1.1);
    z-index: 0;
}

.brush-text {
    position: relative;
    z-index: 10;
    padding: 8px 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.hero-title {
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.hero-title-bold {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px;
}

.hero-title-thin {
    font-weight: 100;
    font-size: 48px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.01em;
    max-width: 500px;
    margin-bottom: 48px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 30, 60, 0.3);
    text-decoration: none;
}

.hero-cta:hover {
    background-color: #D01030;
}

.hero-cta-text {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.arrow {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
    transform: translateX(8px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .social-vertical {
        display: none;
    }

    .content-overlay {
        padding-left: 50px !important;
    }

    .hero-title-bold,
    .hero-title-thin {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .slider-controls {
        bottom: 30px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
    }

    .hero-title-bold,
    .hero-title-thin {
        font-size: 28px;
    }

    .content-overlay {
        padding-left: 20px !important;
        padding-right: 20px !important;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}