/*
Theme Name: HARMUNICHS
Description: WordPress Theme für HARMUNICHS Barbershop Chor München
Version: 1.0
*/

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #ed7631;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  white-space: nowrap;
}

.btn-primary {
  background: #ed7631;
  color: white;
}

.btn-primary:hover {
  background: #dc6520;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 118, 49, 0.3);
}

.btn-outline {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header */
.harmunichs-header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.logo-text p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #884f83;
  margin-bottom: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #884f83;
}

.cta-button {
  background: #884f83;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.cta-button:hover {
  background: #7c3aed;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #761d4b 0%, #884f83 50%, #b70d7d 100%);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.decoration-1 {
  top: 20%;
  left: 10%;
  width: 8rem;
  height: 8rem;
  background: rgba(237, 118, 49, 0.2);
}

.decoration-2 {
  bottom: 20%;
  right: 10%;
  width: 12rem;
  height: 12rem;
  background: rgba(205, 191, 227, 0.3);
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
}

.badge-text {
  color: #cdbfe3;
  font-weight: 500;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #ed7631 0%, #cdbfe3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #cdbfe3;
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(4px);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #cdbfe3;
}

.hero-image {
  position: relative;
}

.image-container {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #884f83 0%, #b70d7d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 4xl;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: #cdbfe3;
  color: #761d4b;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-badge.orange {
  background: #fed7aa;
  color: #ea580c;
}

.section-badge.special {
  background: #ed7631;
  color: white;
}

.section-badge.cta-badge {
  background: rgba(237, 118, 49, 0.2);
  color: #ed7631;
  border: 1px solid rgba(237, 118, 49, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 4xl;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}

.features-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.director-section {
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #f1f5f9;
}

.director-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.director-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.director-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #884f83;
  margin-bottom: 1.5rem;
}

.director-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.director-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #cdbfe3 0%, #884f83 100%);
  border-radius: 1rem;
  overflow: hidden;
}

.director-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Events Section */
.events-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.events-header-content {
  text-align: left;
}

.featured-event {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 4rem;
  color: white;
}

.featured-event-content {
  display: grid;
  gap: 0;
}

.event-details {
  padding: 3rem;
}

.event-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-date-large {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 500;
  color: #d1d5db;
  line-height: 1;
}

.event-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.event-subtitle {
  color: #d1d5db;
  margin-bottom: 0;
}

.event-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.event-meta-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.event-meta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.875rem;
}

.event-meta-item svg {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.event-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ed7631;
}

.featured-event-image {
  position: relative;
  min-height: 20rem;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.upcoming-events {
  margin-bottom: 3rem;
}

.upcoming-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
}

.events-grid {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.event-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.event-date {
  text-align: center;
  margin-right: 1rem;
}

.event-date .date-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.event-date .date-month {
  font-size: 0.75rem;
  font-weight: 500;
  color: #884f83;
  line-height: 1;
}

.event-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.event-time svg {
  width: 1rem;
  height: 1rem;
}

.event-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.event-card:hover .event-card-title {
  color: #884f83;
}

.event-card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.event-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.newsletter-cta {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.newsletter-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Quartets Section */
.quartets-section {
  padding: 6rem 0;
  background: #cdbfe3;
}

.quartets-grid {
  display: grid;
  gap: 2rem;
}

.quartet-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.quartet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.quartet-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #884f83 0%, #b70d7d 100%);
  overflow: hidden;
}

.quartet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quartet-content {
  padding: 1.5rem;
}

.quartet-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.quartet-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quartet-members {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Mitsingen Section */
.mitsingen-section {
  padding: 6rem 0;
  background: white;
}

.mitsingen-content {
  max-width: 4xl;
  margin: 0 auto;
}

.mitsingen-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.requirements-card,
.rehearsal-card {
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #884f83;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.rehearsal-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rehearsal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
}

.rehearsal-item svg {
  color: #884f83;
}

.contact-cta {
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.cta-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-name {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.25rem;
}

.contact-email {
  color: #6b7280;
  margin-bottom: 0;
}

.contact-role {
  color: #6b7280;
  margin-bottom: 0;
}

/* Buchen Section */
.buchen-section {
  padding: 6rem 0;
  background: #cdbfe3;
}

.booking-examples {
  margin-bottom: 3rem;
}

.booking-grid {
  display: grid;
  gap: 1.5rem;
}

.booking-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.booking-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #884f83 0%, #761d4b 100%);
  overflow: hidden;
}

.booking-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-content {
  padding: 1.5rem;
}

.booking-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.booking-details {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

.booking-cta {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  color: white;
  text-align: center;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #761d4b 0%, #884f83 100%);
}

.cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-decorations .decoration-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(237, 118, 49, 0.1);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 4xl;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #ed7631 0%, #cdbfe3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: lg;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(4px);
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.harmunichs-footer {
  background: white;
  border-top: 1px solid #f3f4f6;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-main {
  display: grid;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo .logo-text h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 0;
}

.footer-logo .logo-text p {
  font-weight: 500;
  color: #884f83;
  margin-bottom: 0;
}

.footer-description {
  color: #6b7280;
  max-width: md;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s;
}

.social-link:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #6b7280;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #884f83;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-details p {
  color: #6b7280;
  margin-bottom: 0;
}

.rehearsal-info {
  padding-top: 0.5rem;
}

.rehearsal-title {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #884f83;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: row;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .director-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-event-content {
    grid-template-columns: 2fr 1fr;
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quartets-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mitsingen-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cta-actions {
    flex-direction: row;
  }

  .newsletter-actions {
    flex-direction: row;
  }

  .event-meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .newsletter-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
  }

  .event-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
