/****************************************
GLOBAL STYLES
****************************************/

html *{
    font-family: 'Inter', sans-serif;
}

body{
    background-color: #252327;
    color: white;
}

h2{
    font-size: 36px;
}

/****************************************
1. HEADER STYLES
****************************************/


    /* Add styles for the hero image and overlay */
.hero-image {
    position: relative;
    height: 900px;
    background-image: url('../img/anna-seeley-bS1b9gUxj74-unsplash.jpg'); /* Replace 'your-image.jpg' with the path to your image */
    background-size: cover;
    background-position: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Center the content vertically and horizontally within the hero image */
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .content img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
  }
  
  .content h1 {
    text-transform: uppercase;
    font-size: 5rem; /* Adjust the font size as needed */
    letter-spacing: 0.4em; /* Add letter spacing */
    margin: 0;
  }

  .larger-text {
    font-size: 8rem; /* Adjust the size as desired */
  }
  
  /* Media queries for responsiveness */
  @media(max-width: 1220px){
    .we-build{
      flex-direction: row;
    }
    .we-build .first-line,
    .we-build .second-line,
    .we-build .third-line{
      order: 1;
      width: 30%;
      font-size: 60px;
    }
    .we-build div{
      order: 2;
      width: 80%;
      margin: 0 auto;
    }
  }
  @media (max-width: 1000px) {
    .hero-image {
      height: 600px; /* Adjust the height as needed */
    }
  
    .content img {
      max-width: 100px;
    }
  
    .content h1 {
      font-size: 3rem;
    }

    .larger-text {
        font-size: 6rem; /* Adjust the size as desired */
      }
  }
  
  @media (max-width: 750px) {
    .hero-image {
      height: 400px; /* Adjust the height as needed */
    }
  
    .content img {
      max-width: 70px;
      margin-bottom: 0px;
    }
  
    .content h1 {
          font-size: 40px; /* Adjust the font size as needed */
    	margin-top: 20px; /* Adjust the margin as needed */
    	letter-spacing: 0.4em; /* Add letter spacing */
    }

    .larger-text {
        font-size: 60px; /* Adjust the size as desired */
      }

      .we-build p,
      .gallery p,
      .about-us p{
        font-size: 14px;
        line-height: 35px;
      }
  }

  @media (max-width: 480px) {
    .hero-image {
      height: 300px; /* Adjust the height as needed */
    }
  
    .content img {
      max-width: 50px;
      margin-bottom: 0px;
    }
  
    .content h1 {
        font-size: 30px; /* Adjust the font size as needed */
    	margin-top: 20px; /* Adjust the margin as needed */
    	letter-spacing: 0.4em; /* Add letter spacing */
    }

    .larger-text {
        font-size: 40px; /* Adjust the size as desired */
      }
  }

  @media (max-width: 340px){
    .hero-image {
        height: 300px; /* Adjust the height as needed */
      }
    
      .content img {
        max-width: 30px;
        margin-bottom: 0px;
      }
    
      .content h1 {
          font-size: 20px; /* Adjust the font size as needed */
          margin-top: 10px; /* Adjust the margin as needed */
          letter-spacing: 0.4em; /* Add letter spacing */
      }
  
      .larger-text {
          font-size: 20px; /* Adjust the size as desired */
        }

  }

/****************************************
2. NAVIGATION STYLES
****************************************/
.navbar{
    color: white;
    margin: 0 10%;
}

.nav-link{
    color: white;
}

.nav-separator {
    border: none;
    height: 10px;
    background-color: #0c0b0c;
    margin: 0;
  }

  hr:not([size]) {
    height: 10px;
}

.navbar-toggler{
    border: none;
}

.dropdown-menu{
    background-color: rgba(0, 0, 0, 0.233);
}

.dropdown-item{
    color: white;
    text-align: left;
}

.navbarDropdown{
    text-align: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
  }

  .navbar-dark .navbar-nav .nav-link:hover {
    color: #863B21;
  }

.nav-link{
    color:white;
    letter-spacing: 0.5em;
}

.nav-link:focus{
    color: white;
}

.nav-link:visited{
    color: white;
}

.nav-link:hover{
    color: #863B21;
}

.nav-link:active{
    color: white;
}

.nav-container{
    max-width: 100%;
    margin: 0 10%;
}

/****************************************
3. HEADING STYLES
****************************************/

/****************************************
4. BODY STYLES
****************************************/

section p{
    font-size: 16px;
    line-height: 50px;
}

section h2{
    font-size: 36px;
    font-weight: bold;
}

.second-line{
  color: #863B21;
}

/*About Section*/
.about-us{
    text-align: center;
    padding: 200px 0px;
}

.about-us p{
    margin-left: 10%;
    margin-right: 10%;
}


.about-us img{
    max-width: 80px; /* Adjust the size of the logo as needed */
    padding-bottom: 50px;
}

/*Gallery Section*/
.gallery{
    padding: 200px 0px;
    width: 100%;
    background-color: #201F22;
}

.container {
    max-width: 100%;
    margin: 0 auto;
  }

.gallery h2{
    padding-bottom: 20px;
    text-align: center;
}

.gallery p{
    padding-top: 0px;
    margin-left: 10%;
    margin-right: 10%;
    padding-bottom: 50px;
    text-align: center;
}

.viewmorebutton{
  text-decoration: none;
  color: #929292;
}

.viewmorebutton:hover{
  color: #863B21;
}

.viewmorebutton:visited{
  color: #929292;
}


/*Carousel Section*/
#slider {
    position: relative;
    width: 30%;
    height: 28vw;
    margin: 0px auto;
    font-family: 'Helvetica Neue', sans-serif;
    perspective: 1400px;
    transform-style: preserve-3d;
}

#slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }



.slider{
    margin-top: 0px;
}

input[type=radio] {
    position: relative;
    top: 108%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: 0 15px 0 0;
    opacity: 0.4;
    transform: translateX(-83px);
    cursor: pointer;
}

input[type=radio]{
  display: none;
}

  input[type=radio]:nth-child(5) {
    margin-right: 0px;
  }

  input[type=radio]:checked {
    opacity: 1;
    background-color: #863B21;
  }

#slider label, #slider label img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: white;
    font-size: 70px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 400ms ease;
}

@media(max-width: 1000px){
   #slider{
    width: 50%;
    height: 46vw;
   }

   input[type=radio]{
    width: 15px;
    height: 15px;
   }
}

.slider{
margin-bottom: 100px;
}

#s1:checked ~ #slide1,
 #s2:checked ~ #slide2,
  #s3:checked ~ #slide3,
   #s4:checked ~ #slide4,
    #s5:checked ~ #slide5 {
  box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
  transform: translate3d(0%, 0, 0px);
}

#s1:checked ~ #slide2,
 #s2:checked ~ #slide3,
  #s3:checked ~ #slide4,
   #s4:checked ~ #slide5,
    #s5:checked ~ #slide1 {
  box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
  transform: translate3d(20%, 0, -100px);
}

#s1:checked ~ #slide3,
 #s2:checked ~ #slide4,
  #s3:checked ~ #slide5,
   #s4:checked ~ #slide1,
    #s5:checked ~ #slide2 {
  box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
  transform: translate3d(40%, 0, -250px);
}

#s1:checked ~ #slide5,
 #s2:checked ~ #slide1,
  #s3:checked ~ #slide2,
   #s4:checked ~ #slide3,
    #s5:checked ~ #slide4 {
  box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
  transform: translate3d(-20%, 0, -100px);
}

#s1:checked ~ #slide4,
 #s2:checked ~ #slide5,
  #s3:checked ~ #slide1,
   #s4:checked ~ #slide2,
    #s5:checked ~ #slide3 {
  box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
  transform: translate3d(-40%, 0, -250px);
}

.galleryBtn{
    text-align: center;
    margin: 0 auto;
}


.galleryButton{
  background-color: #252327;
}
/* We-Build Section */
.we-build {
    padding: 200px 0;
    display: flex;
    flex-wrap: wrap;
  }
  
  .we-build span {
    font-size: 96px;
    font-weight: bold;
  }
  
  .we-build .first-line {
    display: block;
    width: 80%;
    margin-left: 10%;
    transform: translateX(10%);
    margin-bottom: 1%;
  }
  
 .second-line {
    display: block;
    width: 10%;
    margin-left: 5%;
  }
  
  .we-build .third-line {
    display: block;
    width: 70%;
    margin-left: 10%;
    margin-right: 10%;
    transform: translateX(10%);
    margin-bottom: 1%;
  }

  .left-paragraph p{
    width: 65%;
    margin-left: 10%;
  }
  .we-build-title{
    size: 0;
    display: none;
  }
  
  .left-paragraph,
  .right-paragraph {
    width: 80%;
    margin: 0 auto;
  }
  
  .left-paragraph p,
  .right-paragraph p {
    background: linear-gradient(to right, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0));
    border-radius: 10px;
    padding: 20px;
  }

  @media(max-width: 1220px){
    .we-build{
      flex-direction: row;
    }
    .we-build .first-line,
    .we-build .second-line,
    .we-build .third-line{
      display: none;
    }
    .we-build-title{
      size: 80%;
      display: block;
      margin: 0 auto;
      font-size: 60px;
      margin-bottom: 28px;
    }
    .we-build div{
      order: 2;
      width: 80%;
      margin: 0 auto;
    }
    h2 .while{
      font-size: 60px;
      color: #863B21;
    }
    .we-build div p{
      width: 100%;
      margin: 0 auto;
      margin-bottom: 28px;
    }
    .left-paragraph p {
      background: linear-gradient(to left, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0));
    }
  }

  @media(max-width: 750px) {
    .we-build-title{
      font-size: 45px;
    }
    h2 .while{
      font-size: 45px;
    }
  }
  @media(max-width: 530px){
    .we-build-title{
      width: 90%;
      text-align: center;
      overflow-wrap: break-word;
    }
  }
  @media(max-width: 600px){
    .card{
      width: 90%;
    }
    footer section div{
      font-size: 12px;
    }
    .footer-logo{
      max-width: 100px;
      width: 30px;
    }
  }
  
  
/*Contact Section*/
.contact{
    background-color: #201F22;
    text-align: center;
    padding: 200px 0px;
    padding-bottom: 0px;
}
.contact h2{
  font-size: 300%;
}
.contact .phone-email{
  font-size: 200%;
}

.container.contact h2 {
    margin-bottom: 30px; /* Add space below the heading */
  }

.contact a{
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.contact a:hover{
    color: #863B21;
}

.contact img{
    max-width: 100px; /* Adjust the size of the logo as needed */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 2px;
}

.container.contact h2 {
    margin-bottom: 30px; /* Add space below the heading */
  }

.contact hr{
    color:#863B21;
    height: 7px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.contact p {
    font-size: 10px;
    padding-bottom: 0px;
    letter-spacing: .35rem;  
}

.contact-link{
    margin-bottom: 0px;
    margin-top: 200px;
}

.contact article{
  margin: 0 auto;
}

.top{
    width: 20%;
}

.bottom{
    width: 35%;
}

  
/****************************************
5. FOOTER STYLES
****************************************/

.footer {
    font-size: 12px;
    background-color: #ffffff;
    font-weight: bold;
}

.footer-bg{
    background-color: #252327;
}

.footer a{
    color:#863B21;

    text-decoration: none;
}

.footer a:hover{
    text-decoration: underline;
}

.footer img{
    max-width: 18px; /* Adjust the size of the logo as needed */
    padding-bottom: 0px;
    margin-bottom: 3px;
}

@media (max-width: 606px){
    .footer {
        font-size: 8px;
        background-color: #ffffff;
        font-weight: bold;
    }
    
    .footer-bg{
        background-color: #252327;
    }
    
    .footer a{
        color:#863B21;
    
        text-decoration: none;
    }
    
    .footer a:hover{
        text-decoration: underline;
    }
    
    .footer img{
        max-width: 14px; /* Adjust the size of the logo as needed */
        padding-bottom: 0px;
        margin-bottom: 3px;
    }
}