body { margin: 0; font-family: Arial, sans-serif; }

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  /* Bonus: modern browsers can pick the best type if both exist.
     The JS also handles missing files gracefully. */
  background-image: image-set(
    url('../images/backgroundUnified-01.png') type('image/png') 1x,
    url('../images/backgroundUnified-01.jpg') type('image/jpeg') 1x
  );
}

.main-logo {
  max-width: 500px;
  display: block;
  margin: 0 auto;
  padding-top: 50px;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 5px 0;
  margin: 0;
}
nav img { height: 50px; }

footer { display: flex; justify-content: center; gap: 15px; padding: 20px; }
footer img { height: 40px; }

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #222;
}
.coming-soon img { max-width: 420px; width: 90%; height: auto; }


.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65); /* dark overlay */
  z-index: 0;
}
.hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, calc(-50% - 30px));
  z-index: 1;
  max-width: 500px;
}

.services {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  color: white;
}
.services h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
.services p {
  margin: 6px 0;
}
.launch-note {
  font-style: italic;
  margin-top: 12px;
}

.footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer-icons img {
  height: 40px;
}
