/* Стили для героической секции */
.hero {
    position: relative; 
    min-height: calc(100vh - 135px); 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    color: #fff; 
    padding: 20px;
    /* Фоновое изображение через CSS для большего контроля */
    background-image: url('/wp-content/uploads/2024/02/b64.webp');
    background-size: cover; /* Изображение покрывает всю область */
    background-position: center; /* Центрируем изображение */
    background-repeat: no-repeat;
}

@media(max-width: 768px) {
    .hero {
        min-height: calc(100vh - 50px); 
    }
}

/* Затемнение фона для лучшей читаемости текста */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


.hero__content {
    position: relative; 
    z-index: 2; 
    max-width: 800px; 
}

/* Заголовок */
.hero__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
}

/* Кнопка */
.button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e30613; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    color: white;
    background-color: #c10510; 
    transform: translateY(-2px); 
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
