/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    width: 100%;
    background: #F7F6F3;
}


/* =========================================================
   CONTACT SECTION
   Figma:
   Full width
   20px top
   70px left/right
   20px bottom
   ========================================================= */

.contact-section {
    width: 100%;
    box-sizing: border-box;

    padding: 20px 70px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =========================================================
   CONTACT INTRO
   Figma:
   Max width 1200px
   ========================================================= */

.contact-intro {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


/* Eyebrow */

.contact-intro .section-eyebrow {
    display: block;

    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2%;
    color: #DB219D;
    
}


/* Heading */

.contact-intro h1 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 42px;
  line-height: 46px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1A1A18;
  margin: 0;
}


/* Lead */

.contact-intro p {
    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    color: #17202A;
}

.contact-intro p {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: #1A1A18;
  margin: 0;
}


/* =========================================================
   CONTACT LAYOUT
   Form + information card
   ========================================================= */

.contact-layout {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(0, 1fr) 280px;

    gap: 30px;

    align-items: start;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* =========================================================
   TALENT / COMPANY
   ========================================================= */

.contact-type {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-bottom: 2px;
}

.contact-type label {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    color: #202020;

    cursor: pointer;
}

.contact-type input[type="radio"] {
    width: 14px;
    height: 14px;

    margin: 0;
}


/* =========================================================
   FORM FIELD
   ========================================================= */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 768px;
  min-width: 360px;
}

.form-field label {
    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    color: #202020;
}

.form-field label span {
    color: #777777;
    font-weight: 400;
}


/* =========================================================
   INPUTS
   ========================================================= */

.form-field input,
.form-field textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #D8D5CF;
    border-radius: 4px;

    background: #FFFFFF;

    padding: 10px 12px;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

    color: #202020;

    outline: none;
}

.form-field input {
    height: 40px;
}

.form-field textarea {
    min-height: 110px;

    resize: vertical;
}


/* Placeholder */

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #B8B8B8;
    opacity: 1;
}


/* Focus */

.form-field input:focus,
.form-field textarea:focus {
    border-color: #1B3F6E;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.contact-submit {
    align-self: flex-start;

    margin-top: 2px;

    padding: 11px 20px;

    border: none;
    border-radius: 20px;

    background: #1B3F6E;
    color: #FFFFFF;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;

    cursor: pointer;

    transition: opacity 0.2s ease;
}

.contact-submit:hover {
    opacity: 0.85;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-info {
    width: 100%;

    box-sizing: border-box;

    padding: 18px;

    background: #E8F0F9;

    border-radius: 12px;
}


/* =========================================================
   INFORMATION BLOCKS
   ========================================================= */

.contact-info-block {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.contact-info-block h3 {
    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    
    line-height: 20px;

    color: #1A1A18;
}

.contact-info-block a {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

    color: #1B3F6E;

    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}


/* =========================================================
   INFORMATION DIVIDERS
   ========================================================= */

.contact-info-divider {
    width: 100%;

    height: 1px;

    margin: 14px 0;

    background: #C8D3DF;
}


/* =========================================================
   PRIVACY
   ========================================================= */

.contact-privacy {
    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

    color: #6B6B66;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 30px 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        max-width: 100%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 24px 18px;
    }

    .contact-intro h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .contact-intro p {
        font-size: 15px;
        line-height: 22px;
    }

    .contact-type {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .form-field textarea {
        min-height: 120px;
    }
}

