@media (max-width: 320px) {
 .nav-widget {
  display: none;
 }
 
 .nav-arrows {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
 }
 
 .nav-arrow {
  width: 40px;
  height: 40px;
  background-color: var(--bright-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
 }
 
 .nav-arrow.prev::before {
  content: '↑';
  font-size: 20px;
  color: white;
 }
 
 .nav-arrow.next::before {
  content: '↓';
  font-size: 20px;
  color: white;
 }

 h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-gray);
 }
#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-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);
}

}