/* =============================================
   HERO.CSS – Full-screen hero section
   ============================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image – luxury salon interior */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero/hero_background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  z-index: 0;
}

.hero__bg.is-loaded {
  transform: scale(1);
}

/* Warm brown overlay matching the screenshot */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 17, 10, 0.55) 0%,
    rgba(40, 22, 12, 0.50) 50%,
    rgba(20, 10, 5, 0.70) 100%
  );
  z-index: 1;
}

/* Container: full width, centered */
.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 24px;
    padding-top: 140px;
    padding-bottom: 80px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.hero__content{

    backdrop-filter: blur(18px);
    background: rgba(45,28,18,.22);

    border:1px solid rgba(255,255,255,.12);

    border-radius:28px;

    padding:60px;

    box-shadow:
    0 25px 80px rgba(0,0,0,.35);

}
/* Content block: centered */
.hero__content {

    animation: heroFadeIn 1.2s ease both;
    max-width:640px;
    text-align:left;
    margin-left:80px;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* "WELKOM BIJ" */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  display: block;
  justify-content: center;
}

/* "THE HAIR POINT" */
.hero__title {
    font-family: var(--font-title);

    font-size:clamp(4rem,7vw,6rem);

    font-weight:300;

    line-height:.95;

    letter-spacing:.04em;

    text-transform:uppercase;

    text-shadow:

    0 4px 18px rgba(0,0,0,.35);
    color: var(--color-white);

    letter-spacing: 0.04em;

    margin-bottom: 14px;
}

/* "DAMES & HEREN" */
.hero__title-sub {
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  display: block;
}

/* Thin divider line between title and description */
.hero__divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 24px;
}

.hero__description {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
  margin-inline: auto;
}

/* ---- CTA buttons ---- */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero__actions .btn--primary {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 14px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.hero__actions .btn--primary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.hero__actions .btn--secondary {
  background-color: transparent;
  border-color: rgba(255,255,255,0.50);
  color: var(--color-white);
  padding: 14px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.hero__actions .btn--secondary:hover {
  background-color: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.80);
  transform: translateY(-2px);
}

/* ---- Feature badges ---- */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero__feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #a8c98a; /* soft green checkmark like screenshot */
  flex-shrink: 0;
}

/* ---- Scroll indicator ---- */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll i { font-size: 0.85rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  .hero__container {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
    letter-spacing: 0.02em;
  }

  .hero__title-sub {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero__features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}


/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero/hero_background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  z-index: 0;
}

.hero__bg.is-loaded {
  transform: scale(1);
}

/* Overlay – dark at bottom, semi-transparent beige warmth */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 16, 0.72) 0%,
    rgba(62, 33, 18, 0.55) 50%,
    rgba(111, 61, 37, 0.30) 100%
  );
  z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 24px;
    padding-top: 120px;
    padding-bottom: 80px;

}

.hero__content {
    animation: heroFadeIn 1.2s ease both;
    max-width:640px;
    text-align:left;
    margin-left:0;
    text-align:center;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before, 
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background-color: var(--color-accent);
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.hero__title-sub {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--color-accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.hero__description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

/* ---- CTA buttons ---- */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* ---- Features strip ---- */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero__feature-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ---- Scroll indicator ---- */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll i {
  font-size: 1rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
