input,
select,
textarea,
button,
label {
  font-family: "Montserrat", sans-serif !important;
}

/* TITLE */
.title-wrapper {
  display: flex;
  flex-direction: column;
  color: var(--black);
  justify-content: center; 
  align-items: center; 
  margin: 0 auto;
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(10px, 2vw, 20px);
}

.title {
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  line-height: 0.9;
  max-width: 70vw;
}

/* CONFIRMATION TEXT */
.confirmation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 150px;
}

.confirmation-title {
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  max-width: 70vw;
  padding: 20px;
  color: var(--black);
  text-align: center;
}

.confirmation-button {
  background-color: var(--accent);
  color: var(--black);
  font-size: 30px;
  font-weight: 900;
  padding: 18px 30px 20px 28px;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.1;
  margin-top: 35px;
  transition: transform 0.1s ease;
}

.confirmation-button i {
  font-size: 28px;
  line-height: 1;
  position: relative;
}

.confirmation-button:hover {
  transform: scale(1.25);
}

/* FORM */
.contact-wrapper {
  margin-top: 50px;
  margin-bottom: 100px;
}

.contact-form {
  max-width: 60vw;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col > label {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: var(--black);
  gap: 6px;
}

label, fieldset {
  font-weight: bold;
  color: var(--black);
}

input, select, textarea {
  padding: 12px;
  border: 1px solid var(--black-highlight);
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 6px;
}

button[type="submit"] {
  background-color: var(--accent);
  color: var(--black);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  padding: 5px 16px 8px 16px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: none;
}

.form-label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  align-items: center;
}

.checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.checkbox-item input[type="checkbox"] {
  transform: translateY(-2px);
}

input[type="checkbox"] {
  accent-color: var(--accent); 
}

.form-section {
  display: flex;
  flex-direction: column;
}

textarea {
  width: 100%;
  min-height: 150px; 
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-shadow);
}

@media (max-width: 700px) {
  .two-col {
    flex-direction: column;
  }

    /* TITLE */
    .title-wrapper {
    padding-top: clamp(40px, 4vw, 60px);
    padding-bottom: clamp(10px, 2vw, 20px);
    }

    .title {
    font-size: clamp(60px, 15vw, 80px);
    }

    .confirmation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .confirmation-title {
    font-size: clamp(50px, 12vw, 72px); 
    max-width: 90vw;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .confirmation-button {
    margin-top: 30px;
    padding: 10px 20px 12px 20px;
  }

    .contact-wrapper {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .contact-form {
    max-width: 90vw;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    }

}
