body {
  font-family: 'Inter', sans-serif;
  font-family: "Inter", serif;
  font-size: 0.9em;
}

.main-content {
  line-height: 1.7;
}

/* Apply Inter font to headings and specific elements */
h1, h2, h3, h4, h5, h6, .site-title, .site-nav {
  font-family: 'Inter', sans-serif;
  font-family: "Inter", serif;
}

.drop-cap::first-letter {
  float: left;
  font-size: 5.2em;
  line-height: 0.9;
  font-family: "Jura", serif;
  font-family: "Inter", serif;
  font-weight: 100;
  margin-right: 0.05em;
  text-transform: uppercase;
  color: #6e6e6e;
}

/*Page title*/
.page-title {
  color: #1E90FF;
  font-size: 1.8em;
  font-weight: 600;
}

/*Page subtitle*/
.page-subtitle {
  color: #1E90FF;
  font-size: 1.2em;
  font-weight: 600;
}

nav a {
  color: #1E90FF;
    display: inline-block;
    text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;

}

.site-nav {
    overflow-x: hidden;
}

nav a:hover {
  transform: translateX(5px); /* Move text 5px to the right */
  color: #0073e6; /* Optional: change color too */
}

/* CONTACT PAGE */
.contact-form {
  max-width:100%;
  margin: auto;
  font-family: inherit;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: normal;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #efefef;
  border-radius: 6px;
  font-size: 1em;
    background-color: #f4f4f4;
}

.contact-form textarea { min-height: 120px; background-color: #f4f4f4; }
.contact-form .hidden { display: none; }

.contact-form .h-captcha {
  margin: 8px 0 16px;
}

.contact-form button {
  background: #1E90FF;
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease;
}
.contact-form button:hover { background: #0073e6; }
