body {
  font-family: 'Josefin Sans', Arial, sans-serif;
  margin: 0;
  background: #f4f7fa;
  color: #1a2233;
  line-height: 1.6;
}
nav {
  background: #1a2940;
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(26,41,64,0.08);
  overflow-x: auto;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0 1rem;
  flex-wrap: wrap;
  min-width: max-content;
}
nav a {
  color: #eaf1fb;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
}
nav a:hover {
  color: #4a7bb7;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 4rem 1rem 4rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(34,52,90,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #22345acc;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #22345acc 70%, #4a7bb7cc 100%);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-text h1 {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 3.2rem;
  margin: 0.5rem 0 1.5rem 0;
  color: #eaf1fb;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(26,41,64,0.10);
}
.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #eaf1fb;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(26,41,64,0.08);
}
.social-links {
  margin-bottom: 1.5rem;
}
.social-links a {
  display: inline-block;
  background: #eaf1fb;
  color: #1a2940;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  margin: 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(74,123,183,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.social-links a:hover {
  background: #4a7bb7;
  color: #eaf1fb;
  box-shadow: 0 4px 16px rgba(74,123,183,0.18);
}
.partners {
  background: #eaf1fb;
  padding: 3rem 1rem;
  margin-top: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(74,123,183,0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.partners h2 {
  color: #1a2940;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.partner-card {
  background: #f4f7fa;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(74,123,183,0.08);
  transition: box-shadow 0.2s;
}
.partner-card:hover {
  box-shadow: 0 6px 24px rgba(74,123,183,0.16);
}
.partner-card h3 {
  color: #4a7bb7;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.partner-card p {
  color: #1a2233;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}
.partner-link {
  display: inline-block;
  background: #4a7bb7;
  color: #eaf1fb;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(74,123,183,0.15);
}
.partner-link:hover {
  background: #1a2940;
  box-shadow: 0 4px 16px rgba(74,123,183,0.25);
}
main {
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    min-height: 70vh;
    padding: 6rem 2rem 6rem 2rem;
  }
  .hero-text {
    max-width: 600px;
    margin-left: 0;
  }
}
.about-hero {
  background: #22345a;
  color: #eaf1fb;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(34,52,90,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #22345acc;
  position: relative;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #22345acc 70%, #4a7bb7cc 100%);
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
}
.about-hero h1,
.about-hero .about-intro {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.about-intro {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  color: #eaf1fb;
}
.about-details {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #eaf1fb;
  opacity: 0.9;
}
.about-highlights, .about-members {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  background: #eaf1fb;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(74,123,183,0.08);
  padding: 2.5rem 1.5rem;
}
.about-highlights h2, .about-members h2 {
  color: #1a2940;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.about-highlights ul {
  list-style: disc inside;
  padding-left: 1.5rem;
  color: #1a2940;
  font-size: 1.1rem;
}
.members-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.member-card {
  background: #f4f7fa;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(74,123,183,0.08);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: box-shadow 0.2s;
  max-width: 100%;
}
.member-card:hover {
  box-shadow: 0 6px 24px rgba(74,123,183,0.16);
}
.member-photo-section {
  flex-shrink: 0;
  text-align: center;
  width: 180px;
}
.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(74,123,183,0.10);
  object-fit: cover;
  margin-bottom: 1rem;
}
.member-info {
  flex: 1;
}
.member-card h3 {
  margin: 0 0 0.5rem 0;
  color: #4a7bb7;
  font-size: 1.5rem;
  font-weight: 700;
}
.member-card .instrument {
  margin: 0 0 1rem 0;
  color: #1a2940;
  font-size: 1.1rem;
  font-weight: 600;
}
.member-card .bio {
  margin: 0;
  color: #1a2233;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .member-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .member-photo-section {
    width: 100%;
  }
  .member-photo {
    width: 120px;
    height: 120px;
  }
  .member-info {
    text-align: center;
  }
}
.contact-hero {
  background: #22345a;
  color: #eaf1fb;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(34,52,90,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #22345acc;
  position: relative;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #22345acc 70%, #4a7bb7cc 100%);
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
}
.contact-hero h1,
.contact-hero .contact-intro {
  position: relative;
  z-index: 2;
}
.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.contact-intro {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: #eaf1fb;
}
.contact-info, .booking-info, .location-info {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  background: #eaf1fb;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(74,123,183,0.08);
  padding: 2.5rem 1.5rem;
}
.contact-info h2, .booking-info h2, .location-info h2 {
  color: #1a2940;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-card {
  background: #f4f7fa;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(74,123,183,0.08);
  transition: box-shadow 0.2s;
}
.contact-card:hover {
  box-shadow: 0 6px 24px rgba(74,123,183,0.16);
}
.contact-card h3 {
  color: #4a7bb7;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-card p {
  color: #1a2233;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.contact-link {
  display: inline-block;
  background: #4a7bb7;
  color: #eaf1fb;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(74,123,183,0.15);
}
.contact-link:hover {
  background: #1a2940;
  box-shadow: 0 4px 16px rgba(74,123,183,0.25);
}
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-link {
  display: inline-block;
  background: #eaf1fb;
  color: #1a2940;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #4a7bb7;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover {
  background: #4a7bb7;
  color: #eaf1fb;
}
.booking-details p {
  color: #1a2233;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.booking-details ul {
  list-style: disc inside;
  padding-left: 1.5rem;
  color: #1a2940;
  font-size: 1.1rem;
  margin: 1rem 0;
}
.location-info p {
  color: #1a2233;
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-hero {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  }
  .contact-info, .booking-info, .location-info {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partners {
    padding: 2rem 1rem;
  }
} 
.events-hero {
  background: #22345a;
  color: #eaf1fb;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(34,52,90,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #22345acc;
  position: relative;
}
.events-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #22345acc 70%, #4a7bb7cc 100%);
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
}
.events-hero h1,
.events-hero .events-intro {
  position: relative;
  z-index: 2;
}
.events-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.events-intro {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: #eaf1fb;
}
.upcoming-events, .past-events, .repertoire {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  background: #eaf1fb;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(74,123,183,0.08);
  padding: 2.5rem 1.5rem;
}
.upcoming-events h2, .past-events h2, .repertoire h2 {
  color: #1a2940;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.upcoming-content p {
  color: #1a2233;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.inline-link {
  color: #4a7bb7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.inline-link:hover {
  color: #1a2940;
}
.booking-cta {
  background: #f4f7fa;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(74,123,183,0.08);
}
.booking-cta h3 {
  color: #4a7bb7;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.booking-cta p {
  color: #1a2233;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cta-button {
  display: inline-block;
  background: #4a7bb7;
  color: #eaf1fb;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(74,123,183,0.15);
}
.cta-button:hover {
  background: #1a2940;
  box-shadow: 0 4px 16px rgba(74,123,183,0.25);
}
.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.event-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: #f4f7fa;
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(74,123,183,0.06);
  transition: box-shadow 0.2s;
}
.event-item:hover {
  box-shadow: 0 4px 16px rgba(74,123,183,0.12);
}
.event-date {
  flex-shrink: 0;
  width: 120px;
  color: #4a7bb7;
  font-weight: 700;
  font-size: 1rem;
}
.event-details h3 {
  color: #1a2940;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.event-location {
  color: #4a7bb7;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.event-details p {
  color: #1a2233;
  line-height: 1.6;
  margin: 0;
}
.repertoire p {
  color: #1a2233;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.repertoire-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.repertoire-list li {
  background: #f4f7fa;
  padding: 1rem;
  border-radius: 0.8rem;
  color: #1a2233;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 1px 4px rgba(74,123,183,0.06);
}
.repertoire-list strong {
  color: #4a7bb7;
}
@media (max-width: 700px) {
  .event-item {
    flex-direction: column;
    gap: 1rem;
  }
  .event-date {
    width: auto;
  }
  .repertoire-list ul {
    grid-template-columns: 1fr;
  }
  .events-hero {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  }
  .upcoming-events, .past-events, .repertoire {
    padding: 1.5rem 1rem;
  }
} 
/* Global link styles */
a {
  color: #4a7bb7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #1a2940;
}
a:visited {
  color: #6b8bb3;
}
a:visited:hover {
  color: #1a2940;
}

/* Navigation link overrides */
nav a {
  color: #eaf1fb !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
nav a:hover {
  color: #4a7bb7 !important;
}
nav a:visited {
  color: #eaf1fb !important;
}
nav a:visited:hover {
  color: #4a7bb7 !important;
}

/* Specific link overrides for buttons and special links */
.contact-link, .cta-button, .partner-link {
  color: #eaf1fb !important;
}
.contact-link:visited, .cta-button:visited, .partner-link:visited {
  color: #eaf1fb !important;
}
.contact-link:hover, .cta-button:hover, .partner-link:hover {
  color: #eaf1fb !important;
}

.social-link {
  color: #1a2940 !important;
}
.social-link:visited {
  color: #1a2940 !important;
}
.social-link:hover {
  color: #eaf1fb !important;
}

.inline-link {
  color: #4a7bb7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.inline-link:visited {
  color: #6b8bb3;
}
.inline-link:hover {
  color: #1a2940;
} 
.media-hero {
  background: #22345a;
  color: #eaf1fb;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(34,52,90,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #22345acc;
  position: relative;
}
.media-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #22345acc 70%, #4a7bb7cc 100%);
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
}
.media-hero h1,
.media-hero .media-intro {
  position: relative;
  z-index: 2;
}
.media-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.media-intro {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: #eaf1fb;
}
.recordings, .repertoire, .performance-highlights, .listen-more {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  background: #eaf1fb;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(74,123,183,0.08);
  padding: 2.5rem 1.5rem;
}
.recordings h2, .repertoire h2, .performance-highlights h2, .listen-more h2 {
  color: #1a2940;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.recordings p, .repertoire p, .performance-highlights p, .listen-more p {
  color: #1a2233;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.youtube-cta {
  background: #f4f7fa;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(74,123,183,0.08);
  margin-top: 1.5rem;
}
.youtube-cta h3 {
  color: #4a7bb7;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.youtube-cta p {
  color: #1a2233;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.highlight-card {
  background: #f4f7fa;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(74,123,183,0.08);
  transition: box-shadow 0.2s;
}
.highlight-card:hover {
  box-shadow: 0 6px 24px rgba(74,123,183,0.16);
}
.highlight-card h3 {
  color: #4a7bb7;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.highlight-card p {
  color: #1a2233;
  line-height: 1.6;
  margin: 0;
}
.listen-more .social-links {
  justify-content: center;
  margin-top: 1.5rem;
}
@media (max-width: 700px) {
  .media-hero {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  }
  .recordings, .repertoire, .performance-highlights, .listen-more {
    padding: 1.5rem 1rem;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile-first responsive design */
@media (max-width: 480px) {
  /* Navigation */
  nav {
    padding: 0.8rem 0;
  }
  nav ul {
    gap: 0.8rem;
    padding: 0 0.5rem;
  }
  nav a {
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
  }
  
  /* Hero sections */
  .hero {
    min-height: 40vh;
    padding: 1.5rem 0.5rem;
  }
  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* About page */
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-intro {
    font-size: 1.1rem;
  }
  .about-highlights h2, .about-members h2 {
    font-size: 1.6rem;
  }
  
  /* Contact page */
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-intro {
    font-size: 1.1rem;
  }
  .contact-info h2, .booking-info h2, .location-info h2 {
    font-size: 1.6rem;
  }
  
  /* Events page */
  .events-hero h1 {
    font-size: 2rem;
  }
  .events-intro {
    font-size: 1.1rem;
  }
  .upcoming-events h2, .past-events h2, .repertoire h2 {
    font-size: 1.6rem;
  }
  
  /* Media page */
  .media-hero h1 {
    font-size: 2rem;
  }
  .media-intro {
    font-size: 1.1rem;
  }
  .recordings h2, .repertoire h2, .performance-highlights h2, .listen-more h2 {
    font-size: 1.6rem;
  }
  
  /* General sections */
  .partners h2 {
    font-size: 1.4rem;
  }
  .partners {
    padding: 1.5rem 0.5rem;
    margin-top: 1.5rem;
  }
  
  /* Cards and grids */
  .partner-card, .contact-card, .member-card {
    padding: 1.5rem;
  }
  .partner-card h3, .contact-card h3 {
    font-size: 1.2rem;
  }
  .member-card h3 {
    font-size: 1.3rem;
  }
  
  /* Buttons */
  .social-links a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin: 0 0.2rem;
  }
  .contact-link, .cta-button, .partner-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Event timeline */
  .event-item {
    padding: 1rem;
    gap: 1rem;
  }
  .event-details h3 {
    font-size: 1.1rem;
  }
  
  /* Repertoire list */
  .repertoire-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  /* Section padding adjustments */
  .about-highlights, .about-members, .contact-info, .booking-info, .location-info,
  .upcoming-events, .past-events, .repertoire, .recordings, .performance-highlights, .listen-more {
    padding: 1.5rem 0.8rem;
    margin: 2rem auto 0 auto;
  }
  
  /* Hero section padding */
  .about-hero, .contact-hero, .events-hero, .media-hero {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
}

/* Very narrow screens (320px and below) */
@media (max-width: 320px) {
  nav ul {
    gap: 0.5rem;
    padding: 0 0.3rem;
  }
  nav a {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .social-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    margin: 0 0.15rem;
  }
  
  .partners h2, .about-highlights h2, .about-members h2,
  .contact-info h2, .booking-info h2, .location-info h2,
  .upcoming-events h2, .past-events h2, .repertoire h2,
  .recordings h2, .performance-highlights h2, .listen-more h2 {
    font-size: 1.3rem;
  }
  
  .about-hero h1, .contact-hero h1, .events-hero h1, .media-hero h1 {
    font-size: 1.6rem;
  }
  
  .about-intro, .contact-intro, .events-intro, .media-intro {
    font-size: 0.95rem;
  }
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1.2rem;
  }
  
  nav a {
    font-size: 1.1rem;
  }
  
  .partners h2, .about-highlights h2, .about-members h2,
  .contact-info h2, .booking-info h2, .location-info h2,
  .upcoming-events h2, .past-events h2, .repertoire h2,
  .recordings h2, .performance-highlights h2, .listen-more h2 {
    font-size: 1.8rem;
  }
  
  .about-hero h1, .contact-hero h1, .events-hero h1, .media-hero h1 {
    font-size: 2.4rem;
  }
} 