


/* Reset basic styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Background image section */
.background {
  background: url('../Pictures/MANTruck.jpeg') no-repeat center center;
  background-size: cover;
  height: 100%;
  position: relative;
}

/* Dark overlay to improve text readability */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

/* Title style */
.overlay h1 {
  font-size: 3em;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

/* Subtitle style */
.overlay p {
  font-size: 1.2em;
  margin: 0 0 20px;
}

/* Contact info */
.overlay .contact {
  font-size: 1em;
  margin-top: 10px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

