/* Home Page Styles */

body {
    background: #000;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 244px);
    min-height: 700px;
    overflow: hidden;
}

/* Background Slider */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

/* Video Slide */
.hero-slide.video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlay - left side darker */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

/* Hero Content - Left aligned, vertically centered */
.hero-content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    z-index: 50;
    padding-top: 30px;
}

.hero-title {
    color: white;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 50px;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        left: 50px;
    }
    .hero-title {
        font-size: 43px;
    }
    .hero-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    .hero-content {
        left: 24px;
        right: 24px;
    }
    .hero-title {
        font-size: 29px;
    }
    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 30px;
    }
}

/* K-Beauty Highlights Section */
.highlights-section {
    background: #fff;
    padding: 200px 0 100px;
}

.highlights-header {
    text-align: center;
    margin-bottom: 40px;
}

.highlights-title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.highlights-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #666;
}

/* Rolling Images */
.highlights-rolling-container {
    width: 100%;
    overflow: hidden;
}

.highlights-rolling {
    display: flex;
    gap: 24px;
    animation: highlightsScroll 40s linear infinite;
}

.highlights-rolling img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes highlightsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-distance, -50%));
    }
}

@media (max-width: 1200px) {
    .highlights-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .highlights-section {
        padding: 60px 0 80px;
    }
    .highlights-title {
        font-size: 24px;
    }
    .highlights-subtitle {
        font-size: 12px;
    }
    .highlights-rolling img {
        width: 200px;
        height: 200px;
    }
}

/* Full Service Section */
.fullservice-section {
    background: #fff;
    padding: 100px 100px 40px;
}

.fullservice-label {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.fullservice-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    height: 1px;
    background: #D9D9D9;
}

.fullservice-text {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    max-width: 1100px;
}

.fullservice-text .highlight {
    color: #D9D9D9;
}

/* Service Cards */
.service-cards {
    background: #fff;
    padding: 20px 100px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    position: relative;
}

.service-cards::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #D9D9D9;
}

.service-cards-wrapper {
    background: #fff;
}

/* Company Rolling */
.company-rolling-container {
    background: #fff;
    padding: 30px 0 200px;
    overflow: hidden;
}

.company-rolling {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: companyScroll 30s linear infinite;
}

.company-rolling img {
    width: 230px;
    height: auto;
    flex-shrink: 0;
}

@keyframes companyScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--company-scroll-distance, -50%));
    }
}

.service-card {
    max-width: 320px;
}

.service-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .fullservice-section {
        padding: 80px 50px 30px;
    }
    .fullservice-label {
        font-size: 18px;
    }
    .fullservice-text {
        font-size: 32px;
    }
    .service-cards {
        padding: 15px 50px 60px;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .fullservice-section {
        padding: 60px 24px 20px;
    }
    .fullservice-label {
        font-size: 16px;
    }
    .fullservice-text {
        font-size: 22px;
    }
    .service-cards {
        padding: 15px 24px 50px;
        flex-direction: column;
        gap: 30px;
    }
    .service-card {
        max-width: 100%;
    }
}
