* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.full-image {
  width: 100%;
  height: 100vh;
  background: url('images/construction-banner.png') no-repeat center center/cover;
  position: relative;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
}

.overlay-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.countdown div {
  background: #ffc107;
  color: #000;
  padding: 10px;
  border-radius: 5px;
  min-width: 60px;
}

.countdown span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.countdown small {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .overlay-content h1 {
    font-size: 1.5rem;
  }

  .overlay-content p {
    font-size: 0.9rem;
  }

  .countdown {
    gap: 10px;
  }

  .countdown div {
    padding: 8px;
    min-width: 50px;
  }

  .countdown span {
    font-size: 1.2rem;
  }
}
