/* ============================================
   GLOBAL CLEANUP FOR THIS PAGE ONLY
   ============================================ */

body.creativity-page {
    background: transparent !important;
}

/* Убираем любые затемнения */
body.creativity-page .overlay-dark {
    display: none !important;
}

/* ============================================
   PARALLAX BACKGROUNDS
   ============================================ */

.creativity-section {
    position: relative;
    padding: 90px 20px;
    z-index: 1;
    min-height: 60vh;
}

/* Фоновые изображения — полностью видимые */
.creativity-section .layer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 1 !important;
    z-index: -2;
}

/* ============================================
   BACKGROUND IMAGES
   ============================================ */

.layer-1 .layer-bg {
    background-image: url('/templates/creativity/images/IMG_1434.webp');
}

.layer-2 .layer-bg {
    background-image: url('/templates/creativity/images/IMG_1423.webp');
}

.layer-3 .layer-bg {
    background-image: url('/templates/creativity/images/IMG_1415.webp');
}

/* ============================================
   MAKE FIRST PARALLAX GO UNDER HEADER
   ============================================ */

/* Хедер у тебя стабильно ~100px — используем это */
.creativity-section.layer-1 {
    margin-top: -270px; /* уводим секцию вверх под хедер */
    min-height: calc(100vh + 100px); /* увеличиваем высоту, чтобы фон покрывал весь экран */
    padding-top: 100px; /* чтобы текст не прятался под хедером */
}

/* ============================================
   GLASS CARD
   ============================================ */

.glass-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px 35px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);

    color: #e3e7eb;
}

.glass-card .title {
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 26px;
    color: #ffeacc;
}

.glass-card p {
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .glass-card {
        padding: 35px 25px;
    }
    .glass-card .title {
        font-size: 2.2rem;
    }
}

@media (max-width: 700px) {
    .glass-card .title {
        font-size: 1.8rem;
    }
}