/* Master Styles */

 body{
    margin: 0px;
    background-color:black;
    font-family: 'Playfair Display';
    min-width: 800px;
  
}

 .container{
    display: grid;
    grid-template-columns: 1fr;

}
@keyframes transitionIn{
    from{ 
        opacity: 0;
        transform: rotateX(-10deg);
    }
    to{
        opacity: 1;
        transform: rotateX(0);
    }
}
/*scrollbar*/

::-webkit-scrollbar{
    width: 12px;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(transparent, rgb(103, 100, 100));
    border-radius: 4px;
}

/*---------------------------------------------------------NAVIGATION-----------------------------------------------------------*/
.nav-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 38px;
}

 .left-side{
    display: flex;
    color: whitesmoke;
}

.nav-wrapper > .left-side > div {
    margin-right: 20px;
    font-size: 0.9em;
    text-transform: uppercase;  
}

.nav-link-wrapper {
    font-size: large;
    letter-spacing: 5px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
  }

.nav-link-wrapper a{
    color: #fff;
    text-decoration: none;
    transition: color 0.5s;
}

 .nav-link-wrapper:hover {
    border-bottom: 1px solid #fff;

}

 .nav-link-wrapper a:hover {
    color:white;
}

 .brand {
    color: #8a8a8a;
    font-size: medium;
    letter-spacing: 5px;
}


 .nav-wrapper > .right-side > div {
    margin-right: 20px;
    font-size: 0.9em;
    text-transform: uppercase;  
}

a:is(:link, :active, :visited).active{
    border-bottom: 1px solid #fff;
}


/*footer*/

.sticky-footer{
    position: sticky;
}

.footer-content{
    color: white;
    text-align: center;
    justify-content: center;
}


/*-----------------------------------------------------------HOME PAGE----------------------------------------------------------*/


.home-img img{
    width: 50%;
    float: left;
    padding-top: 10%;
    padding-left: 5%;
    opacity: 70%;
    animation: transitionIn 0.75s;
}
.welcome-container{
    color: white;
    font-size: 70%;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    padding-top: 15%;
    letter-spacing: 3px;
    padding-bottom: 25%;
    animation: transitionIn 0.75s;
}

.title-wrapper{
    color:#8a8a8a;
    font-size: 55%;
    animation: transitionIn 0.75s;
}
.title-wrapper-two{
    color: white;
    font-size: 65%;
    animation: transitionIn 0.75s;
}
/*scroll animation*/


/*------------------------------------------  ABOUT PAGE ----------------------------------------------------------------------*/

/* top home header qoute */

.text-center{
    color: white;
    text-align: center;
    justify-content: center;
    margin-top: 5%;
    text-transform: uppercase;
    animation: transitionIn 0.75s;
    margin-bottom: 10%;
}
.text-center p{
    color: white;
    font-size: 15px;   
} 
.blockquote-footer{
    color: #8a8a8a;
}


/*  about top header qoute */
#about-page{
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url(images/ferriswheel.jpg);
    background-size: cover ;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    align-items: center;
    color: white;
    text-transform: uppercase;
    animation: transitionIn 0.75s;
    margin-bottom: 6%;
}


#about-page p{
    color: white;
    font-size: 20px;   
} 
#about-page .blockquote-footer{
    color: #8a8a8a;
}
/* about content */

.about-top { 
    color: white;
    animation: transitionIn 0.75s;
}
.about-top h1{
    padding-left: 5%;
    font-size: 100%;
}
.about-top p{
    text-align: center;
    justify-content: center;
   
}

.about-top a{
    color: white;
    
}


/* project area */

.project-header h1{
    text-transform: capitalize;
    color: white;
    font-size: 100%;
    padding-left: 5%;
    animation: transitionIn 0.75s;
}

hr{
    width: 70%;
    margin-right: 50%;
}
#work-section{
    margin-left: 30%; 
    color: white;
    animation: transitionIn 0.75s;
    margin-bottom: 15%;
}

#work-section .work a:link {
    color: white;
    text-decoration: none;
}


#work-section .work a:visited {
    color: white;
}





/*--------------------------------------------Contact Page -------------------------------------------------------------------*/


.section h2, p{
    color: white;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(images/building.jpg);
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: transitionIn 0.75s;


}

.banner #text{
    position: relative;
    top: 2%;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 50;
    color: white;

}
.banner .clouds{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.banner .clouds img{
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: animate calc(3s * var(--i)) linear infinite;
}

@keyframes animate{
    0%{
        opacity: 0;
        transform: scale(1);
    }
25%, 75%{
    opacity: 1;
}
100%{
    opacity: 0;
    transform: scale(3);
}
}

#bottom-page{
    background-color: white;
}
 /*scroll feature*/

.bottom-pg{
    opacity: 0;
    transition: all 1s;
    transform: translateX(-100%);
    filter: blur(5px);
}

.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}


@media(prefers-reduced-motion){
    .bottom-pg{
        transition: none;
        
    }
}
/*contact form*/

form{
    background: transparent;
    width: 640px;
    margin: 50px auto;
    max-width: 97%;
    border-radius: 4px;
    padding: 55px 30px;
  }
  
  form .title h2{
    letter-spacing: 6px;
    border-bottom: 1px solid black;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }
  
  form .half{
    display: flex;
    justify-content: space-between;
  }
  
  form .half .item{
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: 48%;
  }
  
  form label{
    display: block;
    font-size: 13px;
    letter-spacing: 3.5px;
    margin-bottom: 16px;
  }
  
  form .half .item input{
    border-radius: 4px;
    border: 1px solid black;
    outline: 0;
    align-items: center;
    background: transparent;
    font-size: 17px;
  }

  form .full{
    margin-bottom: 24px;
  }
  
  form .full textarea{
    background: transparent;
    border-radius: 4px;
    border: 1px solid black;
    outline: 0;
    padding: 12px 16px;
    width: 100%;
    height: 200px;
    font-size: 17px;
  }
  
  form .action{
    margin-bottom: 32px;
  }
  
  form .action input{
    background: transparent;
    border-radius: 4px;
    border: 1px solid black;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    height: 44px;
    letter-spacing: 3px;
    outline: 0;
    padding: 0 20px 0 22px;
    margin-right: 10px;
  }
  
  form .action input[type="submit"]{
    background: white;
    color: black;
  }
  
  .sm img{
      margin-left: 2%;
  }



  /*after message sent*/

 #sent{
     color: white;
     text-align: center;
     justify-content: center;
     padding-top: 20%;
     animation: transitionIn 0.75s;
 }
 #sent h1{
     font-size: 85%;
 }

 #sent p{
    font-size: 85%;
 }
 #sent a{
     color: #8a8a8a;
 }

#sent a:visited{
    color: #8a8a8a;
}
#sent a:hover{
    color: white;
}