/*=== CabinetShop Model 42 Hero Section Styles ===*/

.hero-section-container {
    background-color: #222;
}

.hero-section {
    position: relative;
    background: url('https://www.thermwood.com/images/2017_site/machines/3_axis/multipurpose_42/model-42-gantry.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    z-index: 2;
    background: rgba(15, 15, 15, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    color: #F8CA00;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-title {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    border-bottom: 3px solid #F8CA00;
    border-top: 3px solid #F8CA00;
    display: inline-block;
    padding: 12px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-description {
    color: #F8F9FA;
    font-size: 20px;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

.hero-buttons .btn-hero {
    background-color: #c0392b;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn-hero:hover {
    background-color: #a93226;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons .btn-hero {
        padding: 10px 20px;
        font-size: 14px;
    }
}