
h1 {
    text-align: center;
} 



#contact-banner img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 90%;
    top: 10px;
}

.Contact-form-section {
    display: flex;
    justify-content: center;
}


input {
    width: 90%;
    margin: 10px;
}

textarea {
    width: 90%;
    margin: 10px;
}

label.required::after{
    margin-left: 4px;
    color: red;
    content: "*";
}

label {
    margin-left: 10px;
    margin-bottom: -5px;
}

.name {
    display: flex;
    flex-direction: row;
    justify-content: left;

    width: 80%;
}

.submit-button {
    width: 55%;
    margin: 10px;
    background-color: #695848;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
    margin-top: 20px;
}

.message{
    width: 90%;
}

.recaptcha-wrapper {
    display: flex;
    transform: scale(0.7);
    justify-content: center;
    margin: 30px;
}


.Separator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Separator-part {
    width: 100px;
    height: 70px;
    scale: 0.5;
    margin-left: -10px;
    margin-right: -10px;
}


.Separator-part:nth-of-type(2n) {
    transform: scaleX(-1);
}

.Separator-dot {
    font-size: 35px;
    color: #695848;

    text-align: center;
    line-height: 70px; /* Center the dot vertically */
}

.Separator-box {
    width: 300px;
    height:4px;
    background-color: #695848;
    border-radius: 10px;
}

h2 {
    margin-left: 20px;
}

h3 {
    margin-left: 20px;
}

.contact-info-text {
    margin-left: 0;
    padding-left: 10px;
    border-top: 1px solid #adaba9;
    padding-top: 10px;
    border-bottom: 1px solid #adaba9;
    padding-bottom: 10px;
    font-size: 12px;
    margin-bottom: -5px;
}

.extra-space {
    height: 20px;
}

.contact-info .contact-image {
    display: none;
}

@media (min-width: 700px) and (max-width: 1367px) {
    .contact-form input{
        height: clamp(2rem, 5vw, 6rem);
        font-size: clamp(1.5rem, 1.5vw, 3rem);
    }

    .contact-form textarea {
      min-height: clamp(20rem, 30vh, 35rem);
      resize: vertical;
    }

    label {
        font-size: clamp(1.5rem, 2vw, 3rem);
    }
/*iPads*/
    .submit-button {
        font-size: clamp(1.5rem, 2vw, 3rem);
        padding: 0.8em 2em;
        min-width: 12em;
        margin: 2em auto;
        display: block;
        background: #695848;
        color: white;
        border: none;
        border-radius: 0.5em;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .recaptcha-wrapper {        
      margin: 2em 0;
      display: flex;
      justify-content: center;
      transform: scale(1.3);
      transform-origin: center;
    }

    
}

/*Computers*/
@media (min-width: 1367px) {
    
    .Separator-container {
        display: none;
    }

    /* Typography */
    h1 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      text-align: center;
      width: 100%;
      margin: 2rem 0;
      padding-bottom: 20px;
    }
  
    /* Form container - properly centered */
    .Contact-page-container {
        display: flex;
        flex-direction: row;
    }
  
    /* Form styling */
    .contact-form {
      padding-left: 15%;
      width: 140%;
    }
  
    /* Input field system */
    .contact-form input,
    .contact-form textarea {
      width: 140%;  
      height: clamp(2.5rem, 5vw, 4rem);
      font-size: clamp(1rem, 1.5vw, 1.8rem);
      padding: 0.5em;
      margin: 0.5em 0;
      border: 2px solid #e0e0e0;
      border-radius: 0.5em;
      transition: all 0.3s ease;
    }
  
    /* Textarea specific */
    .contact-form textarea {
      min-height: clamp(10rem, 30vh, 25rem);
      resize: vertical;
    }
  
    /* Name field layout */
    .name {
      display: flex;
      gap: 1em;
    }
  
    .name input {
      flex: 1;
      min-width: 0;
    }
  
    /* Labels */
    .contact-form label {
      display: block;
      font-size: clamp(1.2rem, 2vw, 1.8rem);
      margin: 1em 0 0.5em;
      font-weight: 600;
    }
  
    .required::after {
      content: " *";
      color: #ff4444;
    }

      .contact-form input{
        height: clamp(1rem, 5vw, 1rem);
        font-size: clamp(1rem, 1.5vw, 1.5rem);
    }

    .contact-form textarea {
      min-height: clamp(5rem, 30vh, 10rem);
      resize: vertical;
    }



    /* reCAPTCHA - proper scaling */
    .recaptcha-wrapper {        
      margin: 2em 0;
      transform: translateX(125px)
    }
  



    /* Submit button - proper sizing */
    .submit-button {
      font-size: clamp(1.2rem, 1.8vw, 1.6rem);
      padding: 0.8em 2em;
      min-width: 12em;
      margin: 2em auto;
      display: flex;
      background: #695848;
      color: white;
      border: none;
      border-radius: 0.5em;
      cursor: pointer;
      transition: all 0.3s ease;
      transform: translateX(125px);
    }

    .submit-button:hover {
      background: #3367d6;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      transform: translateX(125px) scale(1.05);
    }

    .contact-info {
        width: 40%;
        margin: 50px 75px auto auto;
        border-top: 1px solid #adaba9;
    }

    #contact-name {
        font-size: 45px;
    }

    #contact-number {
        font-size: 35px;
    }
    
    .contact-info .contact-image {
        display: block;
        max-width: 100%;
        height: auto;
    }

  }
