::-webkit-scrollbar {
    display: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body{
    font-family: Montserrat;
    display: grid;
    justify-items:center;
    background-color: white;
    
}

/* Nav Section */

.header{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    font-weight: 650;
    font-size: 18px;
}

li.nav{
    display: flex;
    align-content: center;
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    padding: 15px;
}

.checkbtn{
    font-size: 30px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

ul.main-list {
    width: 60%;
    list-style-type: none;
    display: flex;
	justify-content: space-around;
}

a.nav-items:hover{
    transition-duration: 0.4s;
    text-decoration: underline #950000;
    color:#950000;
    cursor: pointer;
}


a.nav-items{
    display: block;
    align-content: center;
    text-decoration: none;
    color: black;

}

button.CVbutton{
    height: 50px;
    width: 130px;
    color:white;
    background-color: #950000;
    box-shadow: 3.5px 3.5px black;
    border-radius: 25px; 
    overflow: hidden;
    cursor: pointer;
    transition-duration: 0.3s;
    font-size: 16px;
    font-weight: 650;
    
}

li.mobile-button{
    display: none;
}

.CVbutton:hover {
    background-color: white;
    color: #950000;
}


hr.nav{
    width: 100%;
    height: 3px;
    color: #950000;
    background-color: #950000; 
}

main.main{
    width: 90%;
    display: inline-grid;
    justify-items: center;
}
/* contact Page */

section.contact-section{
    height: 100vh;
    width: 60%;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-end;
}

h1.connect-heading{
    padding-right:40px;;
    color:#D00000;
    font-size: 65px;
    font-weight: 600;
}

p.contact-about{
    padding-top: 30px;
    padding-right: 40px;
    color: black;
    font-size: 18px;
    font-weight: 400;
}

/* form */

form.contact-form{
    display:flex;
    flex-direction: column;
    justify-content: center;
}

section.basic{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input.basic{
    height: 80px;
    width: 300px;
    margin: 5px;
    padding: 20px;
    background-color: #FFF3F3;
    color: rgba(0, 0, 0, 0.60); 
    font-size: 18px;
    box-shadow: 5px 5px 0px rgba(101.79, 0, 0, 0.80);
}

textarea.basic{
  height: 320px;
    width: 620px;
    margin-top: 10px;
    padding: 20px;
    background-color: #FFF3F3;
    color: rgba(0, 0, 0, 0.60); 
    font-size: 18px;
    box-shadow: 5px 5px 0px rgba(101.79, 0, 0, 0.80);
}

/* Footer Section */

footer.footer-container {
  height: 55vh;
  min-height: 450px;
  width: 100%;
  background-color: #950000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: clamp(0.875rem, 0.792rem + 0.444vw, 1.125rem); /*14px - 18px*/
}
  
div.footer-content{
  width: 75%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
  
div.links-section{
  height: 50%;
  display: flex;
  justify-content: space-around;
}
  
ul.footer-ul{
  list-style: none;
  
  li{
  margin-bottom: 13px;
  }
}

a.footer {
  color: white;
  text-decoration: none;
}

a.footer:hover {
  color: yellow;
  transition: 0.3s;
  text-decoration: underline;
}
  
div.links{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  }
  
.footer-h3{
  margin-bottom: 20px;
  }
  
div.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  }
  
hr.footer{
  margin: 3% 0 3% 0;
  height: 3px;
  color: white;
  background-color: white;
  }
 
p.footer{
  text-align: center;
  }

div.logoFooter{
  width:20%;
  display: block;
  align-content: center;
}

img.logoFooter{
  width: 100%;
  height:auto;
  object-fit: cover;
}

/* responsive codes */
/* mobile */
@media only screen and (max-width: 760px) {
    
  /* navbar */
  .checkbtn {
      display: block; /* Show hamburger menu */
  }

  .logoHead{
      width: 55px;
  }

  hr.nav{
      display: none;
  }

  ul.main-list {
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-around;
      font-size: 20px;
      position: fixed;
      width: 70%;
      padding: 50px 0px 90px 40px;
      height: 100vh;
      background-color: white;
      top: 8%;
      left: -100%; /* Hide menu by default */
      transition: all 0.5s ease-in-out;
      li.mobile-button{
          display: flex;
      }
  }

  button.CVbutton{
      height: 50px;
      width: 160px;
      font-size: 16px;
  }

  button.desktop-button{
      display: none;
  }

  main.main{
      width: 90%;
  }

  section.contact-section{
    height: 100vh;
    min-height: 950px;
    width: 90%;
    flex-direction: column;
  }

  h1.connect-heading{
    padding: 0;
  }
  p.contact-about{
    margin: 20px 0 20px 0;
    padding: 0;
  }

  section.basic{
    width: 90%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  input.basic{
    width: 300px;
    height: 40px;
  }

  textarea.basic{
    width: 300px;
    margin: 5px;
  }

  /* footer */
  footer.footer-container{
    height:150vh;
    min-height: 700px;
    max-height: 900px;
    padding: 0;
}
div.footer-content{
    width: 85%;
    height: 95%;
    align-content: flex-start;
    text-align: center;
    justify-content: space-between;
}
div.links-section{
    height: auto;
    flex-direction: column;
}
.footer-h3{
    margin-top: 25px;
}
div.logoFooter{
    width: 100%;
    margin-bottom: 10px;
}
img.logoFooter{
    width: 150px;
}

}

/* regular desktop */
@media only screen and (min-width: 1200px){
  p.contact-about{
    padding-top: 10px;
}
}