@import url(fontawesome-all.min.css);

/*
  Rest of your existing CSS...
*/

html {
  word-spacing: 0.2rem;
}

/* Update the body/font declaration section */
body, input, select, textarea {
  color: var(--text-color);
  font-family: var(--font-family-text);
  font-weight: 300;
  font-size: var(--font-size-rem);
  line-height: 1.65;
}

/* Update headings to use title font */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
  font-family: var(--font-family-titles);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

/* Update specific heading sizes to maintain font weights */
h1 {
  font-size: var(--font-size-h1);
  font-family: var(--font-family-romantic);
  line-height: 1.3;
  text-transform: capitalize;
}

h2 {
  font-size: var(--font-size-h2);
  line-height: 1.4;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600; /* Outfit semi-bold */
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 600; /* Outfit semi-bold */
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 600; /* Outfit semi-bold */
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 600; /* Outfit semi-bold */
}

/* Update form labels */
label {
  color: var(--text-color);
  font-family: var(--font-family-text);
  font-size: var(--font-size-small-text);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

/* Update button text */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
  font-family: var(--font-family-text);
  font-size: var(--font-size-button);
  font-weight: 300;
  text-transform: uppercase;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
  font-weight: 600; /* Supreme medium weight for primary buttons */
}

/* Update content paragraphs */
#header .content p {
  font-family: var(--font-family-text);
  text-transform: uppercase;
  font-size: var(--font-size-small-text);
  line-height: 2;
}
