/* typography.css */
/* Typography */
h1,
h2,
h3 {
  font-family: "Rubik Mono One", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0 var(--pink), 6px 6px 0 var(--purple);
  color: var(--yellow);
  line-height: 1.2;
  padding: 0 10px;
  white-space: nowrap; /* Keep title in one line */
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--pink);
  text-shadow: 2px 2px 0 var(--purple);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: 0.75rem;
  color: var(--coral);
}

p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 1rem;
}

.fest-name {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink);
  margin: 0;
  font-family: "Press Start 2P", cursive;
  white-space: nowrap; /* Keep title in one line */
}

.highlight {
  font-family: "Audiowide", serif;
  color: var(--yellow);
  font-size: 1.2em;
}

@media (max-width: 768px) {
  h1 {
    text-shadow: 2px 2px 0 var(--pink), 4px 4px 0 var(--purple);
    white-space: normal; /* Allow wrapping on mobile */
    word-break: break-word;
  }
  
  h2 {
    text-shadow: 1px 1px 0 var(--purple);
  }
}
