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

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

body {
  position: relative;
  background: url("/assets/img/Website_.png") no-repeat center center / cover;
  min-height: 100vh;
}

/* Breathing fading overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(94, 30, 43, 0.45);
  animation: breathingFade 1.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes breathingFade {
  0% {
    background: rgba(94, 30, 43, 0.40);
  }
  50% {
    background: rgba(94, 30, 43, 0.75);
  }
  100% {
    background: rgba(94, 30, 43, 0.40);
  }
}

/* Logo top center */
.logo {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: clamp(120px, 20vw, 220px);
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Coming soon center lower area */
.coming-soon {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  width: 90%;
  color: #fff;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.5vw, 4px);
  text-align: center;
  line-height: 1.1;

  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media (max-width: 992px) {
  .logo {
    top: 10%;
    width: clamp(110px, 24vw, 180px);
  }

  .coming-soon {
    bottom: 16%;
    font-size: clamp(1.8rem, 7vw, 4rem);
    letter-spacing: 2px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    top: 8%;
    width: 140px;
  }

  .coming-soon {
    bottom: 14%;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    width: 88%;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .logo {
    top: 7%;
    width: 120px;
  }

  .coming-soon {
    bottom: 12%;
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    width: 90%;
  }
}

/* Short screens */
@media (max-height: 700px) {
  .logo {
    top: 6%;
  }

  .coming-soon {
    bottom: 10%;
    font-size: clamp(1.5rem, 5vw, 2.8rem);
  }
}