/* Colors 
Home, section 1 (head, background): image overlay
Home, section 2 (developers, background): #c5c8d9 
Home, section 2 (developers, boxes): #49736f
*/

/* Utilities  */
p {
  margin: 10px 0;
  font-size: 18px;
}

/* Full screen background */
.section_header_home {
  position: relative;
  width: 100%;
  min-height: 100vh;                  
  background-image: var(--hero-img);
  background-size: cover;             
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;                
  justify-content: center;
  overflow: hidden;            
}

.section_header_home:before {  
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);    
}

/* center content */
.header_home {
  position: relative;                 
  text-align: center;
  color: #fff;                       
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}


.header_home p {
  font-size: 20px;
  margin: 10px auto 20px auto;  
  text-align: center;           
  max-width: 600px;             
  line-height: 1.5;
}



/* Our mission */
.section_header_home { 
  margin-bottom: 100px; 
}

.section_mission {
  background-color: #ffffff;
} 

.mission_textbox {
  background-color: #ffffff;       
  border: 2px solid #2f5936;      
  border-radius: 12px;
  padding: 25px 30px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}



/* Section developers */
.section_developers {
  background-color: #ffffff;
  margin-top: 100px;  
}

.ourteam_text {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.developers {
  display: flex;  
  align-items: centre;
  background: #ffffff;
  margin-top: 10px; 
  flex-wrap: wrap;
  justify-content: center;
}
.developers .box {
  flex: 1;
  background: #f5f5f5;
  color: black;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align:center;
  align-items: center;
  justify-content: center;
}
.developers .box:nth-of-type(1) {
  flex-grow:4;
}
.developers .box:nth-of-type(2) {
  flex-grow:4;
}
.developers .box:nth-of-type(3) {
  flex-grow:4;
}
.developers .box2 {
  flex: 1;
  background: #f5f5f5;
  color: black;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align:center;
  align-items: center;
  justify-content: center;
  
  
}
.developers .box2:nth-of-type(1) {
  flex-grow:4;
}
.developers .box2:nth-of-type(2) {
  flex-grow:4;
}

.developers .box3 {
  flex: 1;
  background: #f5f5f5;
  color: black;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align:center;
  align-items: center;
  justify-content: center;
  max-width: 550px;
  margin: 0 auto;
}
.developers .box3:nth-of-type(1) {
  flex-grow:4;
}
.developers .box3:nth-of-type(2) {
  flex-grow:4;
}

.section_container_buttons_developers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
  padding: 0px 0px;
  margin: 0px 0px;
}
.btn_developers {
  padding: 10px 10px;
  margin: 10px 10px 10px 10px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  background-color: #ff5a00; /* Skyss-like orange */
  border: 2px solid  #ff5a00;
}
.btn_developers:hover {
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
  text-decoration: none;
}


/* Define the animation keyframes */
@keyframes slideInUp {
  0% {
    opacity: 0; 
    transform: translateY(40px); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to your home section elements */
.section_header_home .box {
  animation: slideInUp 1.5s ease-out forwards;
}

/* Simple scroll animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.8s ease-out;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width:768px) { 
  .header_home {
    flex-direction: column;
  } 
  .developers {
    flex-direction: column;
  } 
  .section_container_buttons_developers {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}
