@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  margin: 0;
  background: #FBF0E7;
  color: #171865;
}

/* Header & Menu */
header {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

header h1 {
  text-align: center;
  font-size: 2em;
  margin: 0 0 15px 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: #171865;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 1.2em;
}

nav div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #171865;
  margin: 2px 0;
}

nav a.active {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3 {
  color: #171865;
  text-align: left;
}

/* Main content */
section {
  background: #FBF0E7;
  color: rgb(11, 13, 99);
  padding: 20px;
  border-radius: 5px;
  box-shadow: none;
  max-width: 1200px;
  margin: 0 auto 1em auto;
  text-align: left;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  letter-spacing: 0.51px;
  line-height: 31.4px;
  text-decoration-thickness: auto;
  text-size-adjust: 100%;
  text-transform: none;
}

/* Reveal-on-scroll animation removed */

section h1 {
  font-weight: 300;
  font-size: 40px;
  text-align: center;
  line-height: 1.6;
}

section h2 {
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

section h3 {
  text-align: left;
  line-height: 1.6;
  font-weight: 100;
  font-size: 30px;
}

section p,
section ul,
section li {
  text-align: left;
  line-height: 1.6;
}

section ul {
  list-style-position: inside;
}

/* Footer (3 columns) */
footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #FBF0E7;
  color: #171865;
  max-width: 1200px;
  margin: 0 auto 1em auto;
  padding: 20px;
  border-top: none;
  text-align: center;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 200;
}

footer h3 {
  margin-bottom: 10px;
  font-weight: 300;
}

footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

footer p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* Contact form */
#contactForm {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 0 auto;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#contactForm label {
  margin-bottom: 0.5em;
  font-weight: normal;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#contactForm input,
#contactForm textarea {
  margin-bottom: 0.5em;
  padding: 0.5em;
  font-size: 1em;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Two-column grid for form fields */
#contactForm .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  row-gap: 12px;
}

#contactForm .field {
  display: flex;
  flex-direction: column;
}

/* Span both columns */
#contactForm .span-2 {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  #contactForm .form-grid {
    grid-template-columns: 1fr;
  }
}

#contactForm button {
  background: #E07C6C;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-size: 1.1em;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease, opacity 0.2s ease;
  align-self: flex-start;
  width: auto;
  margin-top: 12px;
}

#contactForm button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

#contactForm button:active {
  transform: translateY(1px);
}

#contactForm button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#form-status {
  display: none;
  margin-top: 0.5em;
}

/* Responsive: stack footer columns on small screens */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
  }
}
