@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins.ttf') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin-top: 243px;
    display: flex;
    /*padding: 0 20px;*/
    min-height: 75vh;
    background: black;
    align-items: flex-start;
    justify-content: center;
    z-index: 0;
    /*height: 80vh;*/
    background-image: url('images/background.jpg');
    background-position: center;
    background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Black overlay with 50% opacity */
  z-index: -1; /* Ensure the overlay is below the content */
}

::selection {
    color: black;
    background: none;
    z-index: 0;
}

.wrapper {
    width: 1015px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

.wrapper header {
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
    z-index: 6;
}

.wrapper form {
    margin: 15px 30px 35px 30px;
}

.wrapper form.disabled {
    pointer-events: none;
    opacity: 0.7;
}

form .dbl-field {
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
}

.dbl-field .field {
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
}

.wrapper form i {
    position: absolute;
    top: 50%;
    left: 18px;
    color: #ccc;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
}

form .field input,
form .message textarea {
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: vertical;
}

.field input::placeholder,
.message textarea::placeholder {
    color: #ccc;
}

.field input:focus,
.message textarea:focus {
    padding-left: 47px;
    border: 2px solid #C06B3E;
}

.field input:focus ~ i,
.message textarea:focus ~ i {
    color: #C06B3E;
}

form .message {
    position: relative;
}

form .message i {
    top: 30px;
    font-size: 20px;
}

form .message textarea {
    min-height: 190px;
    max-height: 1000px;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 20px 0 48px;
}

form .message textarea::-webkit-scrollbar {
    width: 0px;
}

.message textarea:focus {
    padding-top: 14px;
}

form .button-area {
    margin: 5px 0 25px 0;
    display: flex;
    align-items: center;
}

.button-area button {
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #C06B3E;
    transition: background 0.3s ease;
    margin-top: 25px;
}

.button-area button:hover {
    background: #C06B3E;
}

.button-area span {
    font-size: 17px;
    margin-left: 30px;
    display: none;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar .logo {
  color: #fff;
  font-weight: 600;
  font-size: 2.1rem;
  text-decoration: none;
}

.navbar .logo span {
  color: #C06B3E;
}

.navbar .logo img {
  width: auto;
  height: 80px;
}

@media (max-width: 768px) {
    .wrapper header {
        text-align: center;
    }

    .wrapper form {
        margin: 35px 20px;
    }

    form .dbl-field {
        flex-direction: column;
        margin-bottom: 0px;
    }

    form .dbl-field .field {
        width: 100%;
        height: 45px;
        margin-bottom: 20px;
    }

    form .message textarea {
        resize: none;
    }

    form .button-area {
        margin-top: 20px;
        flex-direction: column;
    }

    .button-area button {
        width: 100%;
        padding: 11px 0;
        font-size: 16px;
    }

    .button-area span {
        margin: 20px 0 0;
        text-align: center;
    }

    .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        /*border-bottom: 1px solid #ccc;*/
        font-size: 14px;
    }

    .contact-title{
        font-size: 14px;
    }

    form {
        flex: 1;
    }
    header {
    padding: 10px;

  #hamburger-btn {
    display: block;
    color: white;
  }
  #close-menu-btn {
    display: block;
    color: black;
  }
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  .navbar .logo {
    font-size: 1.7rem;
  }



  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }

  .navbar a {
    color: #000;
  }

  .navbar .logo img {
  width: auto;
  height: 60px;
}

}

.content {
    display: block;
    justify-content: flex-start;
    min-height: 450px;
}

.contact-title {
    text-align: left;
    margin-left: 35px;
    margin-top: 15px;
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px; /* Adjust this value as needed */
    margin: 10px 20px 0 35px;
}

form {
    flex: 2;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 6
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 6;
}


.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
  z-index: 3;
}


.navbar a:hover {
  color: #C06B3E;
}

#close-menu-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
}

#hamburger-btn {
  color: #fff;
  cursor: pointer;
  display: none;
}

fieldset {
    border: none;
}


