html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('../images/home.webp');
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1f5c3fde;
  z-index: 1;
}

.coming-logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.coming-logo img {
  width: 120px;
  height: auto;
  display: block;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 1.1;
  color: #e1d19d;
  margin: 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 90px;
  }
}

@media (max-width: 767px) {
  .coming-logo img {
    width: 130px;
  }

  .hero-title {
    font-size: 52px;
  }
}