@import url('../styles.css');



/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
  }
  
  .contact-form button {
    width: fit-content;
    align-self: center;
  }

  /* Ensure contact section is visible and not overlapped */
.contact-section {
    position: relative;
    z-index: 1;
    padding-top: 100px; /* Adjust for header height */
    padding-bottom: 60px; /* Adjust for footer height */
}

.contact-form, .contact-info {
    opacity: 1 !important; /* Ensure visibility */
    visibility: visible !important; /* Ensure visibility */
    transition: none; /* Disable animations temporarily */
}

/* Ensure header and footer are properly positioned */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Adjust footer behavior to match the about page */
footer {
    position: static; /* Footer will stay at the bottom of the content */
    margin-top: 2rem; /* Add spacing above the footer */
    width: 100%;
    z-index: 1;
}


