/* =========================
   BRAND VARIABLES & FONTS
========================= */

@font-face {
  font-family: "Faculty Glyphic";
  src: url("../assets/FacultyGlyphic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../assets/MonaSans-VariableFont_wdth.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  /* Brand colors */
  --sky: #84c1fa;
  --ocean: #072238;
  --breeze: #dcefff;
  --tan: #f3f4ef;

  /* UI */
  --info-button: #84c1fa;

  /* Text */
  --text-primary: #072238;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
}

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

body {
  font-family: "Mona Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.5;
}

/* =========================
   HEADER
========================= */
header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--breeze);
}

header img {
  height: 32px;
}

/* =========================
   HERO
========================= */
.hero {
  background: var(--breeze);
  padding: 160px;
  text-align: center;
}

.hero h1 {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--ocean);
}



/* =========================
   CONTACT SECTION
========================= */
.contact {
  max-width: 640px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.contact h2 {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ocean);
}

.contact-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
  margin-bottom: 32px;
}

/* =========================
   FORM
========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row {
  display: flex;
  gap: 24px;
}

.row > .field {
  flex: 1;
}
/* Field wrapper */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

/* Labels */
label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ocean);
}

label span {
  color: #ef4444;
}

/* Inputs */
input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Mona Sans", sans-serif;
  color: #111827;
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 160px;
}

/* Placeholder */
::placeholder {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 400;
}

/* Focus */
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky);
}

/* =========================
   BUTTON
========================= */
button {
  margin-top: 20px;
  padding: 14px;
  background: var(--info-button);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Mona Sans", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

button:hover {
  opacity: 0.9;
}

/* =========================
   STATUS MESSAGE
========================= */
#form-status {
  margin-top: 12px;
  font-size: 14px;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 640px) {
  .row {
    flex-direction: column;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .contact h2 {
    font-size: 24px;
  }
}
