* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- Base ----- */
body {
  min-height: 100vh;
  font-family: "Elms Sans", sans-serif;
  background-color: #fff5e4;
  color: black;
  padding-top: 50px;
}

html, body {
  overflow-x: hidden;
}

/* ----- Navbar ----- */
.contact-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #ff751f;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e40ff;
  z-index: 1000;
}

.contact-logo a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.contact-nav-links a {
  text-decoration: none;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
}

/* ----- Contact Section ----- */
.contact {
  width: 80%;
  margin: 100px auto 0 auto;
}

.contact-container {
  max-width: 700px;
  margin: 30px auto;
}

/* Title */
.contact h1 {
  font-family: "Rubik Mono One", monospace;
  font-size: 32px;
  color: #ff751f;
  margin-bottom: 40px;
  text-align: left;
}

/* ----- Form ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* First row (2 columns) */
.form-row {
  display: flex;
  gap: 20px;
}

/* Input groups */
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 18px;
}

/* Inputs */
.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ff751f;
  background: transparent;
  font-family: "Elms Sans", sans-serif;
  font-size: 18px;
}

/* Button */
.contact-button {
  align-self: flex-end;
  padding: 14px 24px;
  background: #1e40ff;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: 0.3s ease;
}

.contact-button:hover {
  background: #ff751f;
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
  
  .contact {
    width: 90%;
  }
  
  .form-row {
    flex-direction: column;
  }

  .contact-nav-links {
    display: none; 
  }
  
}