body,
html {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}
header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#logo {
  flex-shrink: 0;
  padding-left: 10px;
}
#logo img {
  height: auto;
  width: 150px;
  max-width: 150%;
  margin-left: 20px;
}

nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.close {
  display: none;
}


.nav-links.active + .close {
  display: block;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px;
  border-radius: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  padding: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 5px 10px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
}

.hero-section {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

footer {
  position: absolute;
  bottom: 30px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 20px);
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: cover;
}


.container {
  position: relative;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


form {
  width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;

  input {
    padding: 14px;
    width: 100%;
    outline: none;
    background: #fff;
    border: none;
    border-radius: 5px;
  }
}

form button {
  padding: 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #424242;
  color: white;
  margin: 0 auto;

}

/* footer h4 {
  color: white;
} */

.social-media-icons img {
  width: 32px;
  height: 32px;
}

.social-media-icons a {
  margin: 0 10px;
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
  }

  #logo {
    margin-bottom: 10px;
  }

  #logo img {
    margin-left: 0;
    width: 140px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    padding: 5px 0;
  }

  .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    cursor: pointer;
    color: white;
    font-size: 2rem;
  }

  .hero-section {
    height: 100vh;
    padding: 20px;
  }

  .hero-section::before {
    background: rgba(0, 0, 0, 0.3);
  }

  .hero-content {
    padding: 20px 0;
  }

  .social-media-icons {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #333;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  footer {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .social-media-icons {
    margin-top: 10px;
  }

  form {
    width: 80%;
  }

}

@media (max-width: 480px) {
  header {
    padding: 10px;
  }

  #logo img {
    width: 120px;
  }

  nav ul li {
    padding: 5px 0;
  }

  .hero-section {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 1.5em;
  }


  .social-media-icons {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  

  form {
    width: 100%;

    padding: 0;
    margin: 0;

    h2 {
      width: 100%;
      font-size: 1.2rem;
      text-align: center;
    }
    fieldset {
      width: 100%;
      margin: 0;

      input {

        width: 95%;
      }
    }
  }
}

input[type="text"],
input[type="email"] {
  width: 100%; /* Adjust the width as needed */
  max-width: 300px; /* Optional: set a maximum width */
  margin: 0 auto; /* Center the input fields */
  display: block; /* Ensure the input fields are block elements */
}
