*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on mobile devices */
}

@font-face {
  font-family: "AbolitionTest-Regular";
  src: url("../fonts/AbolitionTest/AbolitionTest-Regular.otf");
}
/* @font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir.ttc");
} */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/AvenirLTStd-Light.otf");
}

@font-face {
  font-family: "AvenirLTStd-Book";
  src: url("../fonts/Avenir/AvenirLTStd-Book.otf");
}
@font-face {
  font-family: "AvenirLTStd-Black";
  src: url("../fonts/Avenir/AvenirLTStd-Black.otf");
}
@font-face {
  font-family: "AvenirLTStd-Medium";
  src: url("../fonts/Avenir/AvenirLTStd-Medium.otf");
}
@font-face {
  font-family: "AvenirLTStd-Roman";
  src: url("../fonts/Avenir/AvenirLTStd-Roman.otf");
}

@font-face {
  font-family: "AvenirLTStd-MediumOblique";
  src: url("../fonts/Avenir/AvenirLTStd-MediumOblique.otf");
}
@font-face {
  font-family: "GraphikBold";
  src: url("../fonts/Graphic/GraphikBold.otf");
}

.hero-section {
  width: 100%;
  height: 265px;
  /* height: 13.8vw; */
  background: #284a06;
}
.body-content {
  width: 100%;
  height: 100%;
  /* display: flex;
    justify-content: center;
    align-items: center; */
  /* padding: 50px; */
}

.container {
  display: flex;
  /* flex-wrap: wrap; */
  width: 100%;
  padding: 8rem 0;
}

.image-section img {
  width: 100%; /* Makes the image fill the container */
  height: auto; /* Maintains the aspect ratio */
  display: block; /* Removes extra space below inline images */
  object-fit: cover; /* Ensures it covers the container if needed */
  max-width: 100%; /* Prevents the image from exceeding its natural size */
}
.image-section {
  flex: 1;
  max-width: 50%;
  min-width: 50%;
}
.form-section {
  flex: 1;
  padding: 0 8rem 0 4rem;
  /* padding: 0 12rem 0 4rem; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.title-para h2 {
  color: #d3ac6f;
  text-transform: uppercase;
  font-family: "AbolitionTest-Regular";
  font-weight: normal;
  letter-spacing: 5.5px;
  font-size: 86px;
  line-height: 45px;
  text-align: left;
}
.title-para p {
  font-family: "AvenirLTStd-Medium";
  font-size: 29px;
  line-height: 1.4;
  text-align: left;
  margin-top: 2.5rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.4rem;
}

input,
textarea,
button {
  padding: 8px;
  border: 1px solid #969393;
  /* border-radius: 5px; */
  font-family: "AvenirLTStd-Book";
}
input:focus-visible,
textarea:focus-visible {
  border-radius: 0px !important;
}

textarea {
  width: 100%;
  height: 120px;
  max-height: 120px;
  resize: none;
  overflow-x: hidden;
}

#letterLength {
  width: 100%;
  display: flex;
  justify-content: end;
  font-family: "AvenirLTStd-Book";
  font-size: 14px;
  color: #555555;
}

input,
textarea {
  font-size: 18px;
}

.email-phone {
  display: flex;
  gap: 1rem;
}

.email-phone input {
  flex: 1;
}
button {
  padding: 10px 16px;
  background: #d2aa6f;
  color: white;
  border: 2px solid #d2aa6f;
  cursor: pointer;
  width: fit-content;
  font-size: 20px;
  transition: all 0.5s ease;
}
button:hover {
  background: white;
  /* color: #D2AA6F; */
  color: black;
  border-color: black;
}
button:active {
  background-color: #977c54;
}
/* Disabled button style */
button:disabled {
  background-color: #ccc; /* Light gray background */
  color: #888; /* Darker gray text */
  cursor: not-allowed; /* Change cursor to indicate disabled state */
  opacity: 0.5; /* Slightly transparent to indicate it's inactive */
}

.form-foo {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.form-foo .text {
  display: flex;
  font-family: "AvenirLTStd-Medium";
}
.social-login {
  display: flex;
  gap: 0.6rem;
}
.form-foo .social-button.youTube {
  width: 21.063px !important;
  height: 21.438px !important;
}
.form-foo .social-button.instagram {
  width: 17.15px !important;
  height: 21.26px !important;
}
.form-foo .social-button.linkedin,.form-foo .social-button.spotify {
  width: 17.45px !important;
  height: 19.32px !important;
}

.form-foo .social-button svg {
  fill: black !important;
}

.form-foo .social-button svg:hover {
  fill: #d3ac6f !important;
}
/* Custom Popup */
.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1.8rem 4rem;
  border-radius: 5px;
  text-align: center;
  font-size: 24px;
  font-family: "AvenirLTStd-Book";
  z-index: 1000;
  display: none;
}
/* Success popup (green background) */
.custom-popup.success {
  background-color: #28a745; /* Green for success */
}

/* Error popup (red background) */
.custom-popup.error {
  background-color: #dc3545; /* Red for error */
}
.custom-popup.warning  {
  background-color: #ffc107; /* Red for error */
}
@media screen and (max-width: 1600px) {
  .form-section {
    padding: 0 3rem;
  }
  .title-para h2 {
    font-size: 76px;
  }
  .custom-popup{
    font-size: 24px;
  }
  .title-para p {
    font-size: 24px;
    margin-top: 2.2rem;
  }
  form {
    margin-top: 1.2rem;
  }
  input,
  textarea,
  button {
    font-size: 18px;
  }
  .container {
    padding: 7rem 0;
  }
}
@media screen and (max-width: 1440px) {
  input,
  textarea,
  button {
    font-size: 17px;
  }
  .container {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 1360px) {
  .inner_container {
    padding: 0 2rem !important;
  }
}
@media screen and (max-width: 1280px) {
  .hero-section {
    height: 224px;
  }
  .form-section {
    padding: 0 2rem;
  }
  .form-foo {
    gap: 1rem;
  }
  .title-para h2 {
    font-size: 68px;
  }
  .custom-popup{
    font-size: 22px;
  }
  .title-para p {
    font-size: 22px;
    margin-top: 2rem;
  }
  input,
  textarea,
  button {
    font-size: 16px;
  }
  .container {
    padding: 4rem 0;
  }
}
@media (max-width: 980px) {
  .hero-section {
    height: 200px;
  }
  .container {
    flex-direction: column;
    gap: 4rem;
  }
  .image-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .form-wrapper {
    width: 100%;
  }

  .email-phone {
    width: 100%;
    flex-direction: column;
  }
  .form-section {
    padding: 0 8rem;
  }
  .title-para h2 {
    font-size: 62px;
  }
  .title-para p {
    font-size: 20px;
    margin-top: 1.8rem;
  }
  .custom-popup{
    font-size: 20px;
  }
  .custom-popup{
    padding: 1.4rem 3rem;
  }
}

@media screen and (max-width: 840px) {
  /* .image-section {
    padding: 0px 4rem;
  } */
  .form-section {
    padding: 0px 6rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 114px;
  }
  .form-section {
    padding: 0;
  }
  .container {
    gap: 2.4rem;
  }
  .title-para h2 {
    font-size: 58px;
  }
  .title-para p {
    font-size: 18px;
    margin-top: 1.4rem;
  }
  .custom-popup{
    font-size: 18px;
  }
  button {
    padding: 8px 14px;
  }
  .custom-popup{
    /* padding: 1rem 2rem; */
    width: 55%;
  }
}
@media screen and (max-width: 480px) {
  .hero-section {
    height: 94px;
  }
  .container {
    gap: 1.6rem;
  }
  .title-para h2 {
    font-size: 48px;
    letter-spacing: 4.5px;
  }
  .title-para p {
    font-size: 16px;
    margin-top: 1rem;
  }
  .custom-popup{
    font-size: 16px;
  }
  .custom-popup{
    width: 80%;
    padding: 0.8rem 1rem;
  }
}
@media screen and (max-width: 375px) {
  .hero-section {
    height: 94px;
  }
  .container {
    gap: 1.4rem;
  }
  /* .title-para h2 {
    font-size: 46px;
    letter-spacing: 4.5px;
  } */
  /* .title-para p {
    font-size: 14px;
    margin-top: 1rem;
  } */
  .custom-popup{
    width: 80%;
    /* padding: 0.4rem 1.8rem; */
  }
}
