@import url('https://fonts.googleapis.com/css2?family=Dongle&family=Oleo+Script:wght@400;700&family=Sigmar+One&display=swap');

*{ margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-image: url(https://images.unsplash.com/photo-1725360629732-6c507c6eb701?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.nav-list-second button {
  border: none;
  background: none;
}

.nav-bar img {
  width: 70px;
  height: 70px;
  margin: 10px 60px;
  transition: transform 0.5s;
}
.nav-bar img:hover {
  transform: scale(1.1);
}

.nav-bar p {
  font-size: 2.5rem;
  position: absolute;
  margin-top: 15px;
    padding: 5px;
  margin-left: 145px;
   font-family: "Sigmar One", sans-serif;
  font-weight: 400;
  font-style: italic;  text-transform: uppercase;
  animation-name: gradient;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes gradient {
  from { color: #fdfdfd;}
  to { color: #FD6600;}
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0,0.9);
}

.nav-list {
  position: relative;
  right: 30px;
}

.nav-list li {
  font-size: 1.2rem;
  display: inline-block;
  justify-content: space-between;
  margin: 20px 10px;
  padding: 15px;
  border-bottom: 3px solid #D0F0C0;
  transition: all 0.5s ;
}
.nav-list li:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px 8px 30px 8px;

}

.nav-list a , .nav-list-second a {
  text-decoration: none;
  color: inherit;
  color: white;
  font-style: italic;
} 

        .h {
          margin-top: 10px;
          text-align: center;
        }

        .h h1 {
          font-size: 1.8rem;
          font-weight: 800;
          color: black;
          transition: color 0.5s;
          cursor: pointer;
          animation-name: paragraph2;
          animation-duration: 3s;
          animation-iteration-count: 2;
          margin-bottom: 15px;
        }


        .h p {
          font-size: 1.2rem;
          font-weight: 600;
          color: black;
          transition: color 0.5s;
          padding: 3px;
          cursor: pointer;
          animation-name: paragraph2;
          animation-duration: 3s;
          animation-iteration-count: 2;
          margin-bottom: 20px;
        }

        @keyframes paragraph2 {
          from {
            color: grey;
          }

          to {
            color: black;
          }
        }

        .feedback {
          display: flex;
          flex-direction: column;
          align-items: center;
          background-color: rgba(255, 255, 255, 0.4);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          justify-content: center;
          text-align: center;
          width: 90%;
          max-width: 800px;
          margin: 30px auto;
          padding: 20px;
          border-radius: 10px;
        }

        form {
          display: flex;
          flex-direction: column;
          gap: 20px;
          width: 100%;
          max-width: 600px;
        }

        form input {
          width: 100%;
          height: 45px;
          border-radius: 10px;
          border: none;
          padding: 0 15px;
          background-color: rgba(163, 163, 163, 0.6);
          transition: background-color 0.5s;
          font-size: 1rem;
          cursor: pointer;
        }

        form textarea {
          width: 100%;
          height: 150px;
          border-radius: 10px;
          border: none;
          padding: 15px;
          background-color: rgba(163, 163, 163, 0.6);
          transition: background-color 0.5s;
          font-size: 1rem;
          cursor: pointer;
          resize: vertical;
        }

        form button {
          width: 100%;
          max-width: 200px;
          height: 45px;
          border-radius: 10px;
          border: none;
          background-color: rgba(163, 163, 163, 0.6);
          font-size: 1rem;
          transition: background-color, color 0.5s;
          cursor: pointer;
          margin: 0 auto;
        }

        form input:hover,
        form textarea:hover,
        form button:hover {
          background-color: rgb(0, 0, 0, 0.5);
          color: lightblue;
        }

        form ::placeholder {
          font-size: 1rem;
          color: black;
          transition: color 0.5s;
        }

        .contact {
          display: flex;
          justify-content: center;
          font-size: 2.5rem;
          margin-top: 30px;
          padding: 5px;
          cursor: pointer;
          animation-name: ;
          animation-duration: 3s;
          animation-iteration-count: 2;
          width: 100%;
        }

        @keyframes  {
          from {
            color: white;
          }

          to {
            color: black;
          }
        }

        .contact i {
          transition: all 0.5s;
          padding: 10px;
          margin: 0 5px;
        }

        .contact a {
          text-decoration: none;
          color: inherit;
        }

        .contact i:hover {
          color: lightblue;
                 transform: translateY(-10px);
        }

        @media (max-width: 768px) {
              .nav-bar {
    flex-direction: column;
    align-items: center;
  }

  .nav-bar p {
    position: static;
    margin: 10px 0;
    text-align: center;
  }

  .nav-list {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-list li {
    font-size: 18px;
    padding: 10px;
    margin: 10px 5px;
  }

          .h h1 {
            font-size: 1.5rem;
          }

          .h p {
            font-size: 1rem;
          }

          .contact {
            font-size: 2rem;
          }
        }

       
