/* ============================================
PROMO SECTION (Секция с фоном)
============================================ */
.promo-section {
position: relative;
padding: var(--space-16) 0;
background-color: var(--color-primary-dark, #1a1a1a);
background-image: url('/images/promo-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: var(--color-text-inverted, #ffffff);
overflow: hidden;
display: flex;
align-items: center;
min-height: 500px;
}
.promo-section__overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
z-index: 1;
}
.promo-section .container {
position: relative;
z-index: 2;
}
.promo-section__content {
max-width: 750px;
text-align: center;
margin: 0 auto;
}
.promo-section__title {
font-family: var(--font-family-heading);
font-size: var(--font-size-5xl);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
margin-bottom: var(--space-6);
color: var(--color-text-inverted, #ffffff);
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.promo-section__text {
font-size: var(--font-size-lg);
line-height: var(--line-height-relaxed);
margin-bottom: var(--space-8);
opacity: 0.95;
color: var(--color-text-inverted, #ffffff);
}
.promo-section__actions {
display: flex;
gap: var(--space-4);
justify-content: center;
flex-wrap: wrap;
}
/* ============================================
АДАПТИВНОСТЬ (MOBILE-FIRST)
============================================ */
@media (max-width: 767px) {
.promo-section {
padding: var(--space-12) 0;
min-height: 400px;
}
.promo-section__title {
font-size: var(--font-size-2xl);
margin-bottom: var(--space-4);
}
.promo-section__text {
font-size: var(--font-size-base);
margin-bottom: var(--space-6);
}
.promo-section__actions {
flex-direction: column;
align-items: center;
}
.promo-section__actions .btn {
width: 100%;
max-width: 300px;
}
}