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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b02429;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 612px) {
  nav ul {
    border-top: 2px maroon solid;
  }
}

.header-logo h1 {
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.header-logo p {
  color: #ffffff;
  font-weight: 300;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header nav a:hover {
  color: #ffcbcb; /* Lighter shade on hover */
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  background-color: #777; /* fallback color */
  overflow: hidden;
}

/*Slide show*/
.slide-wrapper {
  width: 100%;
  height: 100%;
  animation: slide 50s infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/*Slide show*/
.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-image1 {
  left: 0%;
  background: url("../images/pic1.avif") no-repeat center;
  background-size: 100%;
}

.slide-image2 {
  left: 100%;
  background: url("../images/pic2.avif") no-repeat bottom;
  background-size: 100%;
}

.slide-image3 {
  left: 200%;
  background: url("../images/pic3.avif") no-repeat center;
  background-size: 100%;
}

.slide-image4 {
  left: 300%;
  background: url("../images/pic4.avif") no-repeat bottom;
  background-size: 100%;
}

.slide-image5 {
  left: 400%;
  background: url("../images/pic5.avif") no-repeat bottom;
  background-size: 100%;
}

.contact-section .phone-nr {
  color: black;
  text-decoration: none;
}

/* center images for smaller screens nr found by testing*/
@media screen and (max-width: 1646px) {
  .slide-image1 {
    background-position: center;
  }

  .slide-image2 {
    background-position: center;
  }

  .slide-image3 {
    background-position: center;
  }

  .slide-image4 {
    background-position: center;
  }

  .slide-image5 {
    background-position: center;
  }

  .contact-section .phone-nr {
    color: #1975d1;
    text-decoration: underline;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  max-width: 600px;
  border-radius: 5px;
}

.hero-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.hero-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  8% {
    transform: translateX(0%);
  }
  16% {
    transform: translateX(-100%);
  }
  24% {
    transform: translateX(-100%);
  }
  32% {
    transform: translateX(-200%);
  }
  40% {
    transform: translateX(-200%);
  }
  48% {
    transform: translateX(-300%);
  }
  56% {
    transform: translateX(-300%);
  }
  64% {
    transform: translateX(-400%);
  }
  72% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(0%);
  }
}

.button {
  background: #ff4c4c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background: #ff2222;
}

/* SERVICES SECTION */
.services-section {
  padding: 2rem;
  background-color: #ffffff;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: #f7f7f7;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  margin-bottom: 0.5rem;
  color: #a12222;
}

/* ABOUT SECTION */
.about-section {
  padding: 2rem;
  text-align: center;
  background: #eee;
}

.about-section h2 {
  margin-bottom: 1rem;
}

/* CONTACT SECTION */
.contact-section {
  padding: 2rem;
  text-align: center;
  background: #fff;
}

.contact-us {
  text-align: center;
}

h2 {
  margin-bottom: 1rem;
}

.contact-section ul {
  list-style-type: none;
  margin: 1rem 0;
}

.contact-section li {
  margin: 0.5rem 0;
}

/* FOOTER */
.site-footer {
  background: #a12222;
  text-align: center;
  padding: 1rem;
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.fa-solid, .fa-star{
  color: #FFD43B;
}

.fa,
.sm-icons {
  text-decoration: none;
  font-size: 2rem;
}

.fa:hover,
.sm-icons:hover {
  /*want to transition to the facebook blue background which is: #0866FF*/
  color: #0866ff;
}

.whatapp-logo {
  color: #25d366;
}

.sm-icons,
a:visited {
  color: black;
}

