@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
body{
    background: #370617;
    font-family: "Roboto", sans-serif; 
    letter-spacing: 1px;
}
/*  */
header {
    background-color: #370617;
    height: 70px;
    align-content: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1{
    margin-left: 30px;
    color: white;
    font-family: "Kalam", cursive;
    font-weight: 900;
    font-style: normal;
  }

.nav-menu {
    display: flex;
    align-items: center
}

.nav-links {
    margin: 0 20px;
    color: white;
    transition: 0.7s ease;
    border: 2px solid transparent;
}
.nav-form{
    background: #FAA307;
    padding: 8px 15px;
    border-radius: 15px;
    margin-right: 20px;
}
header a.nav-form{
    color: black;
    letter-spacing: 1px;
}
.nav-links:hover {
    color: #faa307;
    border-bottom-color: #faa307;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    background-color: #faa307;
    height: 2px;
    width: 30px;
    margin: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}

@media only screen and (max-width:846px) {
    .hamburger {
        display: block;
        align-content: center;
        margin: 0 20px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .logo {
        margin: 0 20px
    }

    .nav-menu {
        display: block;
        position: absolute;
        top: 70px;
        left: -100%;
        background: #370617;
        text-align: center;
        width: 100%;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-items {
        margin: 30px;
    }

    .nav-menu.active {
        left: 0;
    }
}


/*  */


form {
    min-height: 80vh;
    width: 80%;
    background: #FAA307;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px auto;
  }
  
  form h2 {
    font-size: 40px;
    margin: 10px 0 30px;
    text-transform: uppercase;
  }
  
  form .form-display {
    display: flex;
    gap: 10px;
    margin: 10px;
  }
  
  form input {
    width: 350px;
    padding: 10px;
    background: #FAA307;
    border: 1px solid #370617;
    outline: none;
    border-radius: 10px;
    margin-top: 5px
  }
  
  form select {
    width: 710px;
    padding: 10px;
    background: #FAA307;
    border: 1px solid #370617;
    margin-top: 5px;
    border-radius: 10px
  }
  
  .form-display label {
    font-size: 18px;
    text-transform: capitalize;
    font-family: arial;
  
  }
  
  @media screen and (max-width:951px) {
    form input {
        width: 250px
    }
  
    form select {
        width: 510px
    }
  }
  
  @media screen and (max-width:700px) {
    form input {
        width: 230px
    }
  
    form select {
        width: 230px
    }
  
    form .form-display {
        flex-direction: column;
    }
  
    form {
        height: 90vh;
    }
  }
  
  
  form button {
    width: 120px;
    height: 40px;
    border-radius: 30px;
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    background: #370617;
    letter-spacing: 0.7px;
    margin: 10px;
    text-transform:uppercase;
    letter-spacing: 2px;
  }
  
  form button:hover .arrow {
    animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  
  @keyframes slide-in-left {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }
  
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
  }
  
  form button:active {
    transform: scale(0.97);
  }
  
/*  */


footer {
    background: url(../images/wave-haikei.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-main {
    display: flex;
    color: white;
    justify-content: space-around;
    padding: 50px
}

.footer-main .footer-list .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-list .contact {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}

.footer-main .footer-list h3 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 25px 0;
}

.footer-main .footer-list a {
    text-transform: capitalize;
    color: white;
    font-size: 18px;
}

.footer-main .footer-list .footer-links {
    margin: 5px 0;
}

@media screen and (max-width:860px) {
    .footer-main {
        flex-direction: column;
    }
}

footer p {
    text-align: center;
    color: white;
    padding: 0 0 30px;
}
footer p a{
    color: white;
  }