/* Header styles */
#header-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-width: 320px;
}

#header-container img {
  width: 100%;
  height: 80vh;
  max-height: 800px;
  object-fit: cover;
}
#title-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#title-container h1 {
  margin-bottom: 10px; /* Add some spacing between the two titles */
  font-size: var(--large-heading);
  color: var(--light-text-color);
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

#title-container h3 {
  font-size: var(--small-heading);
  margin-top: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}

/* Services Section Styles */
#services {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#services-container {
  background-color: var(--main-bg-color);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#services-options {
  background-color: var(--main-bg-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.service {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 350px;
  width: fit-content;
  
  min-width: 300px;
  border: 5px solid var(--light-text-color);
  margin: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 2px 2px 8px 2px #ccc;
}

.service h2 {
  margin-bottom: 10px;
  color: var(--light-text-color);
  letter-spacing: 5px;
  height: auto;
}

.service p {
  margin-bottom: 40px;
  color: var(--middle-text-color);
  line-height: 25px;
}

.service a:hover {
  background-color: var(--middle-text-color);
}

#services-pictures {
  background-color: var(--main-bg-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow-x: hidden;
  border-bottom: 5px solid var(--second-accent-color);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

#services-pictures img,
#services-pictures video {
  flex: 1;
  width: 30%;
  height: auto;
  border: none;
  object-fit: scale-down;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

#services video {
  border: none;
}

/* About Section Styles */
#about-section {
  border-bottom: 5px solid var(--second-accent-color);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
#about-container {
  background-color: var(--about-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  padding: 10px;
}

#about-container h1 {
  height: 40%;
  color: var(--dark-text-color);
  font-size: var(--large-heading);
  margin-bottom: 40px;
  text-align: left;
}
#about-container p {
  background-color: var(--dark-text-color);
  padding: 10px;
  border-radius: 10px;
  color: var(--middle-text-color);
  line-height: 40px;
  text-align: left;
  width: 80%;
  font-size: var(--large-txt);
}
#about-container a {
  padding: 15px;
  margin: 15px;
}
#about-container a:hover {
  background-color: var(--light-text-color);
  color: var(--accent-color);
}
/* Portolio Section Styles */
#gallery {
  border-bottom: 5px solid var(--second-accent-color);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gallery-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  flex-wrap: wrap;
  background-color: var(--main-bg-color);
}
.img-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  margin: 10px 0;
}
.imgs {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  
}
.imgs img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  box-shadow: 4px 4px 7px #000;
  margin: 10px;
}

/* Media Queries */
@media (max-width: 480px) {
  #services-pictures {
    display: none;
  }
  #title-container h3 {
    font-size: var(--small-txt);
  }

  #title-container h1,
  #about-container h1,
  .service h2 {
    font-size: var(--extra-small-heading);
  }

  #about-container p,
  .service p {
    font-size: var(--small-txt);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  #title-container h3 {
    font-size: var(--extra-small-heading);
  }

  #title-container h1 {
    font-size: var(--small-heading);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #title-container h3 {
    font-size: var(--small-heading);
  }

  #title-container h1 {
    font-size: var(--middle-heading);
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  /* Add your styles for this breakpoint */
}

@media (min-width: 1201px) {
  /* Add your styles for this breakpoint */
}
