/* RESET */
* {
  box-sizing: border-box;
}

body.about-page {
  
 padding-top: 80px; /* такая же высота как header */
}


/* BACKGROUND */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
background: linear-gradient(to bottom, #FCE8D5, #FFF9F3);
}

/* Фон после hero (градиент + пыль поверх) */
.page-bg::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 2;            /* выше фоновой картинки, ниже контента */
  pointer-events: none;

  background-image: url("assets/gold-fone.png");
  background-repeat: no-repeat;
  background-position: center bottom; /* снизу плотнее */
  background-size: cover;

  opacity: 1;          /* регулируй 0.2–0.45 */
  mix-blend-mode: normal; /* мягкое золотое свечение */
opacity: 0.5;
  filter: blur(0.5px);    /* почти незаметно, но “дороже” */
}

.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LOGO FLOW */
.spark-flow {
  position: fixed;
  inset: 0;
  background: url("assets/logo-softflow.png");
  background-size: 420px;
  opacity: 0.06;
  z-index: -5;
}



/* HERO */
.about-hero {
  padding: 140px 0 120px;
  text-align: center;
}

.hero-subtitle {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 18px;
}

.hero-stars {
    position: fixed;
    inset: 0;
    background-image: url("assets/stars.png");
    background-size: cover;
    background-position: center;
    pointer-events: none;

    opacity: 0.85;
     filter:
        brightness(1.8)
        contrast(1.4)
        drop-shadow(0 0 10px rgba(255,255,255,0.9))
        drop-shadow(0 0 25px rgba(255,240,200,0.7));

    animation: starGlow 4s ease-in-out infinite;
}

@keyframes starGlow {
    0% {
        opacity: 0.55;
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.6))
                brightness(1.5);
        transform: scale(1);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 14px rgba(255,255,255,0.9))
                brightness(2);
        transform: scale(1.015);
    }

    100% {
        opacity: 0.55;
        filter: drop-shadow(0 0 4px rgba(255,255,255,0.4))
                brightness(1.5);
        transform: scale(1);
    }
}

.hero::before {
z-index: 1;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 12, 30, 0.15) 0%,
        rgba(20, 12, 30, 0.25) 100%
    );
    pointer-events: none;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BLOCKS */
.softflow-block {
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  padding: 40px 48px;
  margin-bottom: 40px;
}

/* TITLES */
.shimmer-title {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: #4b2f23;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 120px 0;
}

.softflow-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 40px;
  background: linear-gradient(135deg,#f5d7b0,#fff3d4);
  color: #4b2f23;
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
.footer {
  position: relative;
  z-index: 10;
  background: rgba(255, 245, 235, 0.95);

}


 
.main{
flex.1
}