/* ===== ГЕРОЙ-СЕКЦІЯ ===== */
/* Стилі для герой-секції */
.hero-section {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    background-image: url("/static/media/images/fire-1.png");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    top: 0;
    overflow: hidden;
}

/* Текст поверх зображення */
.hero-content {
    position: relative;
    width: 100%;
    text-align: left;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    font-size: clamp(2.2rem, 6vw, 3rem);
    text-shadow: 
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000;
    margin: 0;
    line-height: 1.2;
    padding: 0 15px;
    position: relative;
    top: -200px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7)0%, transparent 100%);
    z-index: 1;
}

.main-content {
    position: relative;
    background: #d6dadb;
    padding: 50px 20px 60px;
    margin-top: -1px;
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow: hidden;
}

.main-content.scrolled {
    transform: translateY(-20px);
}