/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: -1px; /* Прижимаем к хедеру */
}

.hero-section__imgwrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-section__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section__textwrap {
    max-width: 700px;
}

.hero-section__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section__desc {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-section__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-section__btn-main {
    display: inline-block;
    background-color: #e60000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-section__btn-main:hover {
    background-color: #cc0000;
    color: #fff;
}

.hero-section__btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-section__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-section__title {
        font-size: 36px;
    }
    
    .hero-section__desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-section__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-section__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-section__btn-main,
    .hero-section__btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}
