/* Hero Section */
.hero {
    aspect-ratio: 21 / 9;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    background-size: cover;
    background-position: center;

    aspect-ratio: 16 / 9;
}

.hero-bg .bg-image{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1440px;
    padding: 32px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-person {
    position: absolute;
    right: 32px;
    bottom: 32px;
    color: #FFFFFF;
}

.hero-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    color: #F2F2F2;
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #FBF5F3;
    opacity: 0.7;
}

.hero-main {
    position: absolute;
    left: 32px;
    bottom: 32px;
    width: 564px;
    color: #FFFFFF;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}


/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-main {
        width: 480px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        width: 100%;
        aspect-ratio: 3 / 4;
    }

    .hero-bg{
        aspect-ratio: 9 / 16;
    }
    
    .hero-person {
        text-align: center;
        position: static;
        margin-bottom: 24px;
        order: 1;
    }
    
    .hero-main {
        position: static;
        width: 100%;
        max-width: 400px;
        order: 2;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero-name {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
}

@media (max-width: 480px) {

    .hero {
        width: 100%;
        aspect-ratio: 3 / 5;
    }

    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-name {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
}