/* Typography - Headings and Text Content */
h1 {
  font-family: "Bitter", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 1;
  color: var(--main-accent);
  line-height: 1;
  letter-spacing: 1px;
  animation: fadeInUp 1.4s ease-out 0.6s both;
  margin: 12px 0;
}

.subtitle {
  font-family: "Raleway", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-style: normal;
  font-weight: 300;
  stroke-width: 0.2px;
  line-height: 1.3;
  color: var(--main-white);
  max-width: 650px;
  text-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4), 0px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease-out 0.8s both;
  letter-spacing: 0.6px;
  
}

/* Text italic/bold styling */
.subtitle em {
  font-family: "Bitter", serif;
  font-style: italic;
  font-weight: 500;
}

/* Tagline with lines */
.tagline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
  position: relative;
    animation: fadeInUp 1.4s ease-out 1s both;
}

.tagline .line {
  width: 28px;
  height: 2px;
  background-color: var(--main-accent);
}

.tagline-text {
  font-family: "Bitter", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--main-white);
  position: relative;
  z-index: 5;
  letter-spacing: 0.5px;
}

