/* Reset & Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f0f4f8; /* blu e lehtë si sfond */
  color: #333;
  line-height: 1.6;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Text on slider */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 90%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 2rem 3rem;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.overlay-text h1 {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.overlay-text p {
  font-weight: 400;
  font-size: 1.4rem;
}

/* SERVICES SECTION */
.services {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.services h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #006994;
}

.service-item {
  margin-bottom: 1.8rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.service-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: #006994;
}

.service-item p {
  font-size: 1.1rem;
  color: #555;
}

/* CONTACT SECTION */
.contact {
  max-width: 700px;
  margin: 3rem auto 4rem auto;
  padding: 2rem;
  background-color: #006994;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.contact a {
  color: #ffc107;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Kontaktformular Styles */
form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

form input,
form textarea {
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}

form input:focus,
form textarea:focus {
  outline: 2px solid #ffc107;
}

form textarea {
  min-height: 100px;
}

form button {
  padding: 0.8rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #ffc107;
  color: #006994;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #e6b600;
}

/* Map container */
.map-container {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .overlay-text h1 {
    font-size: 2rem;
  }
  .overlay-text p {
    font-size: 1rem;
  }
  .services h2 {
    font-size: 2rem;
  }
  .service-item h3 {
    font-size: 1.4rem;
  }
  .service-item p {
    font-size: 1rem;
  }
  .contact h2 {
    font-size: 1.5rem;
  }
  .contact p {
    font-size: 1rem;
  }
  form button {
    font-size: 1rem;
  }
}
