/* ═══════════════════════════════════════════
   Casa Christa – Főoldali Hero blokk
   ═══════════════════════════════════════════ */

.cc-home-hero {
  position: relative;
  min-height: 87vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.cc-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--cc-hero-overlay, 0.44));
}

.cc-home-hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 24px 70px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Badge pill */
.cc-home-hero__badge-wrap {
  margin-bottom: 32px;
}

.cc-home-hero__badge {
  display: inline-block;
  font-family: var(--cc-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 10px 26px;
}

/* Főcím */
.cc-home-hero__heading {
  font-family: var(--cc-font-heading);
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  color: #FFFFFF;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

/* Alcím */
.cc-home-hero__sub {
  font-family: var(--cc-font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 48px;
  line-height: 1.5;
}

/* CTA gomb */
.cc-home-hero__btn {
  display: inline-block;
  font-family: var(--cc-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background: var(--cc-taupe);
  padding: 16px 48px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-bottom: 72px;
}

.cc-home-hero__btn:hover {
  background: var(--cc-taupe-dark, #8a7a66);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Scroll indikátor */
.cc-home-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cc-home-hero__scroll-label {
  font-family: var(--cc-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.cc-home-hero__scroll-arrow {
  color: #FFFFFF;
  font-size: 20px;
  animation: ccHeroBounce 1.8s ease-in-out infinite;
  display: block;
  line-height: 1;
}

@keyframes ccHeroBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.9; }
  50%       { transform: translateY(8px); opacity: 0.45; }
}

/* Tablet */
@media (max-width: 768px) {
  .cc-home-hero {
    min-height: 100vh;
  }
  .cc-home-hero__body {
    padding: 130px 20px 50px;
  }
  .cc-home-hero__btn {
    margin-bottom: 44px;
  }
  .cc-home-hero__bg {
    background-attachment: scroll;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .cc-home-hero__heading {
    font-size: 39px;
  }
  .cc-home-hero__sub {
    font-size: 17px;
  }
  .cc-home-hero__body {
    padding-top: 120px;
  }
}
