html,
body {
  height: 100%;
  color: #ffffff;
  background: #ffffff;
}

body {
  overflow-x: hidden;
}

.hero-slider {
  position: relative;
  /* min-height: 100vh; */
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

/* NAVBAR */
.hero-header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 60px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #f5b55f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-logo-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-nav {
  display: flex;
  gap: 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-nav a {
  text-decoration: none;
  color: #ffffff;
  position: relative;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #f5b55f;
  transition: width 0.3s ease;
}

.hero-nav a:hover::after {
  width: 100%;
}

/* SLIDES */
.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
}

.hero-slide::before {
  /* overlay for readibility */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.hero-text-block {
  max-width: 580px;
}

.hero-kicker {
  font-size: 40px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 70px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title span {
  display: block;
}

.hero-body {
  font-size: 13px;
  line-height: 1.7;
  max-width: 470px;
  color: #f4f4f4;
  margin-bottom: 26px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 20px;
  border: 1px solid #f5b55f;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  background: #f5b55f;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* CONTROLS */
.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 3;
}

.hero-arrow {
  border: none;
  background: rgba(0, 0, 0, 0.4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.hero-dot.active {
  background: #f5b55f;
  border-color: #f5b55f;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-header {
    padding: 14px 24px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-nav {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .hero-header {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-nav {
    display: none; /* simple: hide nav on small screens */
  }

  .hero-content {
    justify-content: center;
    text-align: left;
  }

  .hero-text-block {
    max-width: 100%;
  }
  .hero-slider {
    height: 600px;
  }
  .hero-slide {
    height: 600px;
  }

  .hero-kicker {
    font-size: 30px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-body {
    font-size: 15px;
  }

  .page-frame {
    border-left-width: 5px;
    border-right-width: 5px;
  }
}

@media (max-width: 480px) {
  .hero-header {
    top: 10px;
  }
  .hero-slider {
    height: 600px ;
  }
  .hero-logo-circle {
    width: 46px;
    height: 46px;
  }
  .hero-title {
    font-size: 50px;
  }
  .hero-kicker {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .hero-body {
    font-size: 15px;
  }
  .hero-controls {
    bottom: 16px;
  }
}


