/* Custom Font Styles */

/* Oswald font styles */
.oswald-light {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.oswald-regular {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.oswald-medium {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.oswald-semibold {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.oswald-bold {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Shadows Into Light Two font for the name */
.shadows-into-light-two-regular {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Covered By Your Grace font for the quote */
.covered-by-your-grace-regular {
  font-family: "Covered By Your Grace", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Adjustments for hero title with the new font */
.hero-title {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
}

/* Adjustments for tagline with the new font */
.hero-tagline {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* About section text styling with Shadows Into Light Two font */
.about-text {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: var(--text-color);
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 10px 0;
}

.about-content {
  max-width: 95%;
  margin: 0 auto;
}

.about-text:hover {
  transform: scale(1.01);
}

/* Dark mode specific adjustments */
html.dark .hero-title {
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.1);
}

/* Improve font rendering */
.hero-title, .hero-tagline {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
