html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  background-color: black;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-title {
  font-family: 'Logo', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  margin: 0;
  z-index: 10;
  text-align: center;
}

.hero-logo {
  position: absolute;
  width: clamp(60px, 8vw, 120px);
  height: auto;
  opacity: 0.8;
  z-index: 5;
}

.hero-logo-top-left {
  top: clamp(20px, 5vh, 80px);
  left: clamp(20px, 3vw, 60px);
}

.hero-logo-mid-left {
  top: 50%;
  left: clamp(20px, 3vw, 60px);
  transform: translateY(-50%);
  width: 166px;
  height: 264px;
}

.hero-logo-bottom-left {
  bottom: clamp(80px, 12vh, 150px);
  left: clamp(20px, 3vw, 60px);
}

.hero-logo-top-right {
  top: clamp(20px, 5vh, 80px);
  right: clamp(20px, 3vw, 60px);
  transform: scaleX(-1);
}

.hero-logo-bottom-right {
  bottom: clamp(80px, 12vh, 150px);
  right: clamp(20px, 3vw, 60px);
  transform: scaleX(-1);
  width: 166px;
  height: 264px;
}

/* Decorative rectangles */
.hero-rect {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.hero-rect-1 {
  width: clamp(15px, 2vw, 25px);
  height: clamp(15px, 2vw, 25px);
  background-color: rgba(200, 200, 200, 0.3);
  top: 15%;
  left: 12%;
}

.hero-rect-2 {
  width: clamp(20px, 2.5vw, 30px);
  height: clamp(20px, 2.5vw, 30px);
  background-color: rgba(220, 50, 50, 0.4);
  top: 25%;
  left: 8%;
}

.hero-rect-3 {
  width: clamp(18px, 2.2vw, 28px);
  height: clamp(18px, 2.2vw, 28px);
  background-color: rgba(180, 180, 180, 0.25);
  bottom: 20%;
  left: 10%;
}

.hero-rect-4 {
  width: clamp(22px, 2.8vw, 32px);
  height: clamp(22px, 2.8vw, 32px);
  background-color: rgba(200, 200, 200, 0.3);
  top: 18%;
  right: 10%;
}

.hero-rect-5 {
  width: clamp(16px, 2vw, 26px);
  height: clamp(16px, 2vw, 26px);
  background-color: rgba(160, 160, 160, 0.2);
  bottom: 25%;
  right: 12%;
}

.hero-footer {
  position: absolute;
  bottom: clamp(20px, 4vh, 50px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  font-family: 'Basic text', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  color: white;
  z-index: 10;
}

.hero-footer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: clamp(20px, 5vw, 80px);
  right: clamp(20px, 5vw, 80px);
  height: 1px;
  background-color: white;
}

@media (max-width: 768px) {
  .hero-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
}
