* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("hotel-bg.jpg") center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.2rem 0.5rem;
}

.brand {
  background: rgba(0, 0, 0, 0.65);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08rem;
}

.contact-btn {
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
}

.content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 1.2rem;
}

.coming-soon {
  font-size: clamp(2.4rem, 7vw, 3.2rem);
  letter-spacing: 0.35rem;
  line-height: 1.05;
}

.counters {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.counter {
  width: 230px;
  height: 260px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 35px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

.number {
  font-size: 5rem;
  font-weight: 700;
}

.label {
  letter-spacing: 0.4rem;
  font-size: 0.9rem;
}

.visitors-pill {
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 1.4rem 0.55rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .brand,
  .contact-btn {
    font-size: 0.9rem;
  }
  .counter {
    width: 205px;
    height: 240px;
  }
  .number {
    font-size: 4rem;
  }
}
