@media (max-width: 375px) {
     h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif; /* Stronger font for headings */
  color: var(--dark-gray);
  /* margin-bottom: 2px; */
}

#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-blue), var(--purple)); /* Gradient background */
  color: var(--white);
  padding: 0px 5%;
}
#hero .title {
  color: var(--white); /* White title on dark background */
  font-size: 38px;
  margin-bottom: 10px;
}


.subtitle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Adjusted gap */
  margin-bottom: 20px;
}

.subtitle {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  padding: 8px 20px;
  border-radius: 25px; /* More rounded */
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
}
#shoutout {
  color: var(--bright-red); /* Keep accent color */
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
#intro {
  max-width: 800px; /* Constrain width for readability */
  margin: 0 auto;
  font-size: 1.0rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
}