/**
 * Hero Section Block Component Styles
 */

.hero-section-block {
    width: 100%;
    position: relative;
    margin: 60px 0;
}

.hero-section-container {
    position: relative;
    width: 100%;
    /* max-width: 1440px; */
    /* margin: 0 auto; */
    /* min-height: 720px; */
    overflow: hidden;
}

/* Background Image */
.hero-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.64;
}

.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 5.29%,
        rgba(0, 0, 0, 0) 96.15%,
        rgba(0, 0, 0, 1) 100%
    );
}

/* Content */
.hero-section-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 720px;
    padding: 80px 40px;
    text-align: center;
}

.hero-section-icon {
    margin-bottom: 20px;
}

.hero-section-icon img {
    width: 38px;
    height: 30px;
    display: block;
}

.hero-section-title {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: normal;
    text-transform: uppercase;
    color: #ffba00;
    margin: 0 0 20px 0;
    max-width: 900px;
}

.hero-section-description {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.44;
    color: #ffffff;
    margin: 0;
    max-width: 587px;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-section-container {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-section-container {
        min-height: 600px;
    }
    
    .hero-section-content {
        min-height: 600px;
        padding: 60px 30px;
    }
    
    .hero-section-title {
        font-size: 48px;
    }
    
    .hero-section-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section-block {
        margin: 40px 0;
    }
    
    .hero-section-container {
        min-height: 500px;
    }
    
    .hero-section-content {
        min-height: 500px;
        padding: 50px 20px;
    }
    
    .hero-section-icon img {
        width: 30px;
        height: 24px;
    }
    
    .hero-section-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-section-description {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section-block {
        margin: 30px 0;
    }
    
    .hero-section-container {
        min-height: 400px;
        border: none !important;
    }
    
    .hero-section-content {
        min-height: 400px;
        padding: 40px 15px;
    }
    
    .hero-section-icon {
        margin-bottom: 15px;
    }
    
    .hero-section-icon img {
        width: 24px;
        height: 19px;
    }
    
    .hero-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-section-description {
        font-size: 13px;
        line-height: 1.5;
    }
}
