/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
}

.coming-soon-container {
  background-image: url('zilkbg.webp'); /* Reemplaza con la ruta a tu imagen */
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Optional dark overlay over the image */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  color: #A99C6D;
  padding: 20px;
}

.logo {
  max-width: 250px;
  width: 80%;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}

p {
  font-size: 1.2rem;
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 180px;
  }
}
