/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* PAGE BACKGROUND */
body {
  height: 100vh;
  background-image: url("images/DetailingTruck");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  text-align: center;
}

/* TOP-LEFT LOGO */
.header {
  top:-100px;
  position: fixed;
  left: 10px;
  z-index: 999;
}

.logo {
  width: 140px;
  height: auto;
}

/* DARK OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* MAIN CONTENT */
.content {
  position: relative;
  z-index: 2;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.2rem;
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 15px;
  width: 100%;
  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-logo {
  width: 60px;
  height: auto;
}

