body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #072145;
  color: #ffffff;
  line-height: 1.6;
  height: 90vh;
  overflow-x: hidden;
}

/* Fixed background logo */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/AZULLA_LOGO.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1300px; /* Change this value to resize the logo */
  background-attachment: fixed;
  filter: blur(25px);
  z-index: -2;
}

/* Additional overlay for better contrast */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 33, 69, 0.3);
  z-index: -1;
}

.bold {
  font-weight: 600;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
}

.container {
  max-width: 370px;
  margin: 0 auto;
  padding: 20px 0px;
  height: auto;
  position: relative;
  z-index: 2;
}

header {
  padding: 30px 0px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header h1 {
  font-size: 3em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

header p {
  font-size: 18.5px;
  padding: 0px;
  margin: 0px;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
}

header img {
  max-width: 300px;
  border-radius: 9px;
}

.azulla_logo {
  width: 230px;
  margin-bottom: 16px;
}

.azulla_hero {
  box-shadow: 0px -4px 38px 17px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0px -4px 38px 17px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px -4px 38px 17px rgba(0, 0, 0, 0.35);
}

.azulla_links {
  margin-top: 16px;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  background-color: #f6f3ed;
  border-radius: 9px;
}

.azulla_links img {
  width: 73px;
  max-width: 300px;
  margin: 20px auto;
  padding: 0px 15px;
}

.azulla_links #youtubeLogo {
  width: 63px;
}

.contact p {
  text-align: center;
}

@media screen and (min-width: 440px) {
  .container {
    max-width: 450px;
    padding: 20px 1rem;
  }

  header {
    padding: 30px 20px 0px 20px;
  }

  header img {
    max-width: 410px;
  }

  .azulla_logo {
    display: none;
  }
  .azulla_links img {
    width: 110px;
    max-width: 300px;
    margin: 20px auto;
    padding: 0px 15px;
  }
  .azulla_links #youtubeLogo {
    width: 100px;
  }

  .contact p {
    text-align: left;
  }
}

.btn {
  display: block;
  width: 100%;
  margin: 20px auto;
  padding: 15px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 9px;
}

.submit {
  background-color: #fff;
  border: none;
  color: #072145;
  cursor: pointer;
}

.contact {
  z-index: 10;
  padding: 0px 20px;
}

.contact h2 {
  font-size: 18.5px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 409px;
  margin: 0 auto;
}

input,
textarea {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background-color: #3a4a64;
  color: #ffffff;
}

textarea {
  height: 100px;
  resize: vertical;
}

#formMessage {
  margin-top: 10px;
  color: #4a90e2;
}

@media (max-width: 600px) {
  .btn {
    width: 90%;
  }
  header h1 {
    font-size: 2em;
  }
  header p {
    font-size: 1em;
  }
  /* For mobile devices that have issues with fixed backgrounds */
  body::before {
    background-attachment: scroll;
    transform: translateZ(0);
  }
}
