.hero-section {
    background: var(--bg-color);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

[data-theme='dark'] .hero-section {
    background: var(--bg-color);
    color: var(--text-color);
}

/* Базовые стили для кнопок hero блока */
.hero-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme='dark'] .hero-section .btn:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Стили для наложения изображений в темной теме */
.hero-section .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-theme='dark'] .hero-section .dark-overlay {
    opacity: 1;
}
