/* ====
   GLOBAL STYLES
   ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ====
   HEADER & NAVIGATION
   ==== */
header {
  background: #000000;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-left,
.nav-center {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

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

nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}

nav a:hover {
  opacity: 0.8;
}

nav a.active {
  color: #F7403A;
  font-weight: bold;
}

.language-toggle {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 1rem;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.language-toggle:hover {
  opacity: 0.8;
}

.lang-active {
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.5rem;
  order: 3;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #000000;
  z-index: 99;
  padding: 4rem 0;
  overflow-y: auto;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
}

.mobile-menu-content li {
  padding: 0;
}

.mobile-menu-content a {
  display: block;
  padding: 1rem 1.5rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.mobile-menu-content a.active {
  color: #F7403A;
  font-weight: bold;
}

.mobile-menu-content a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: auto;
  }

  nav {
    flex-wrap: wrap;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    display: none;
  }
}

/* ====
   HERO SECTIONS
   ==== */
.hero {
  color: white;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128, 0.1);
  z-index: 2;
}

/* Page-specific hero variants */
.hero.musik-ci {
  background-image: url('Images/pianohaende.jpg');
  min-height: 400px;
  max-height: 300px;
}

.hero.musik-ci::before {
  display: none;
}

.hero.musiker {
  background-image: url('Images/soundsensation.jpg');
  min-height: 400px;
  max-height: 300px;
}

.hero.musiker::before {
  display: none;
}


.hero.home {
  background-image: url('Images/home-hero.jpg');
  min-height: 600px;
}

/* Hero Carousel */
.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.3);
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: slideDown 0.8s ease-out;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.98;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
  border: 2px solid white;
}

.carousel-dot.active {
  background: #00AE82;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 5px;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-arrow.prev {
  left: 2rem;
}

.carousel-arrow.next {
  right: 2rem;
}

/* Clean Hero Carousel (no overlays) */
.hero-carousel-clean {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-clean .carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel-clean .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover !important;
  background-position: center !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.hero-carousel-clean .carousel-slide.active {
  opacity: 1;
}

.hero-carousel-clean .carousel-overlay {
  display: none;
}

.hero-carousel-clean .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.hero-carousel-clean .carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-carousel-clean .carousel-arrow.prev {
  left: 20px;
}

.hero-carousel-clean .carousel-arrow.next {
  right: 20px;
}

.hero-carousel-clean .carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-carousel-clean .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.hero-carousel-clean .carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
}

/* Hero Teaser (for musiker.html) */
.hero-teaser {
  color: white;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-teaser-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.3);
  z-index: 1;
}

.hero-teaser-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-teaser h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-teaser p {
  font-size: 1.1rem;
  opacity: 0.98;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ====
   BUTTONS & CALL-TO-ACTION
   ==== */
.cta-button {
  display: inline-block;
  background: #00AE82;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-contact-info p {
    font-weight: bold;
    color: #981E32;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 174, 130, 0.3);
  background: #00747A;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ====
   QUOTE SECTION
   ==== */
.quote-section {
  text-align: center;
  padding: 2.4rem 2rem;
  margin-top: 0;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

.quote-section blockquote {
  font-size: 2.8rem;
  font-style: italic;
  color: #00747A;
  margin-bottom: 0.8rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.quote-section .author {
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
}

/* ====
   TEASER CARDS
   ==== */
.teasers {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.teaser-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.teaser-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.teaser-content {
  padding: 1.5rem;
}

.teaser-content h3 {
  color: #981E32;
;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.teaser-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.read-more {
  color: #C60C30;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: inline-block;
}

.read-more:hover {
  color: #981E32;
}

/* ====
   CONTENT SECTIONS
   ==== */
.content-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 1.8rem;
  color: #00747A;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block-text {
  padding: 2rem;
}

.content-block-text h2 {
  font-size: 2rem;
  color: #981E32;
  margin-bottom: 1rem;
}

.content-block-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-block-image {
  width: 100%;
  height: 400px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #999;
  overflow: hidden;
}

.content-block-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.highlight-box {
  background: #f0f0f0;
  border-left: 5px solid #00AE82;
  padding: 2rem;
  margin: 2rem 2rem;
  border-radius: 5px;
}

.highlight-box p {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
}

/* ====
   FEATURE GRID & CARDS
   ==== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #981E32;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-card .cta-button {
  color: white !important;
}

/* ====
   PAGE CONTENT
   ==== */
.page-content {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  min-height: calc(100vh - 300px);
}

.page-content h1 {
  color: #981E32;
  font-size: 2.0rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.page-content h2 {
  color: #981E32;
;
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  color: #555;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.page-content p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.page-content a {
  color: #C60C30;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content strong {
  color: #333;
}

.index-link {
  color: #C60C30;
  text-decoration: none;
}

.index-link:hover {
  text-decoration: underline;
}

.toc {
  background: #f5f5f5;
  padding: 1.5rem;
  border-left: 4px solid #C60C30;
  margin: 2rem 0;
}

.toc ul {
  margin-left: 1.5rem;
}

.preamble {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.german-only {
  color: #666;
  font-size: 0.9rem;
}

/* ====
   MUSICIANS PAGE STYLES
   ==== */
.copy-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
}

.copy-section p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.musicians-section {
  max-width: 100%;
  margin: 4rem 0;
  padding: 0 2rem;
}

.musicians-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.musician-teaser {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.musician-teaser:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.musician-teaser-header {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

.musician-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.musician-info {
  display: flex;
  flex-direction: column;
  height: 250px;
}

.musician-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.musician-title {
  flex: 1;
}

.musician-title h3 {
  color: #981E32;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.musician-title > p:not(.musician-short-text) {
  color: #00747A;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.musician-short-text {
  color: #666 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
  font-weight: normal !important;
}

.expand-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #C60C30;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.musician-teaser.expanded .expand-indicator {
  transform: rotate(180deg);
}

.musician-expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
}

.musician-teaser.expanded .musician-expanded-content {
  max-height: 500px;
  padding: 0 2rem 2rem 2rem;
}

.musician-expanded-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
}

.musician-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  border-top: none;
  background: transparent;
  margin-top: auto;
}

.musician-footer a {
  color: #C60C30;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.musician-footer a:hover {
  color: #981E32;
  text-decoration: underline;
}

/* Filter Section */
.filter-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.filter-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-tag {
  padding: 0.5rem 1rem;
  border: 2px solid #ddd;
  border-radius: 25px;
  background: white;
  color: #333;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-tag:hover {
  border-color: #C60C30;
  color: #C60C30;
}

.filter-tag.active {
  background: #C60C30;
  color: white;
  border-color: #C60C30;
}

.filter-reset {
  padding: 0.5rem 1rem;
  background: #f0f0f0;
  border: 2px solid #ddd;
  border-radius: 25px;
  color: #666;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-reset:hover {
  background: #e0e0e0;
}

.musician-teaser.hidden {
  display: none;
}

.no-results {
  text-align: center;
  padding: 3rem 2rem;
  color: #666;
  font-size: 1.1rem;
}

/* ====
   MUSIC BUS PAGE STYLES
   ==== */
.bus-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.highlight-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #667eea;
}

.highlight-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.activities-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-icon {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.activity-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-card:nth-child(2) .activity-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.activity-card:nth-child(3) .activity-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.activity-card:nth-child(4) .activity-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.activity-card:nth-child(5) .activity-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.activity-card:nth-child(6) .activity-icon {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.activity-content {
  padding: 25px;
}

.activity-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #981E32;
}

.activity-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.calendar-section {
  padding: 60px 20px;
  background: white;
}

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
}

.calendar-header {
  text-align: center;
  margin-bottom: 40px;
}

.calendar-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.calendar-header p {
  font-size: 1.1rem;
  color: #666;
}

.events-list {
  display: grid;
  gap: 20px;
}

.event-item {
  background: #f8f9fa;
  border-left: 5px solid #667eea;
  padding: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.event-item:hover {
  background: #f0f1f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-date {
  font-weight: 700;
  color: #667eea;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.event-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.event-description {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.5;
}

.empty-calendar {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #999;
}

.free-info {
  background: linear-gradient(135deg, #6E273D 0%, #8B3A52 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin: 60px 20px;
  border-radius: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.free-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.free-info p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====
   FOOTER
   ==== */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

footer p {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00AE82;
}

/* ====
   RESPONSIVE DESIGN
   ==== */
@media (max-width: 768px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-teaser h1 {
    font-size: 1.8rem;
  }

  .hero-teaser p {
    font-size: 1rem;
  }

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

  .content-block-image {
    width: auto;
    height: 100%;
    max-height: 300px;
  }

  .content-block-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .musician-teaser-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    align-items: auto;
  }

  .musician-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .musician-info {
    height: auto;
    min-height: auto;
  }

  .musician-footer {
    row-gap: 0.4rem;
  }

  .musician-footer a {
    line-height: 1.4;
  }

  .bus-highlights {
    grid-template-columns: 1fr;
  }

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

  .free-info h3 {
    font-size: 1.5rem;
  }

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

  .cta-buttons a {
    width: 100%;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .carousel-arrow {
    padding: 10px 15px;
    font-size: 1.2rem;
  }
}

/* Upcoming Events Module */
.upcoming-events-module {
  position: absolute;
  top: 240px;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
  max-width: 300px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: auto;
}

.upcoming-events-module h3 {
  font-size: 1.1rem;
  color: #00747A;
  margin-bottom: 15px;
  font-weight: 600;
}

.events-list-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item-compact {
  border-left: 4px solid #00AE82;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.event-date-compact {
  font-size: 0.85rem;
  color: #00AE82;
  font-weight: 600;
}

.event-name-compact {
  font-size: 0.95rem;
  color: #333;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .upcoming-events-module {
    position: static;
    transform: none;
    top: auto;
    right: auto;
    margin: 20px;
    max-width: none;
    background: rgba(255, 255, 255, 0.9);
  }
}

/* ====
   TOUR DATES SECTION
   ==== */
.tour-dates-section {
  padding: 60px 20px;
  background: white;
}

.tour-dates-container {
  max-width: 1000px;
  margin: 0 auto;
}

.tour-dates-header {
  text-align: center;
  margin-bottom: 40px;
}

.tour-dates-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #1a1a2e;
  font-weight: 600;
}

.tour-dates-header p {
  font-size: 1.1rem;
  color: #666;
}

.tour-dates-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: white;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #00AE82;
  color: #00AE82;
}

.filter-btn.active {
  background: #00AE82;
  color: white;
  border-color: #00AE82;
}

.tour-dates-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-date-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.tour-date-item:hover {
  background: #f8f9fa;
}

.tour-date-item:last-child {
  border-bottom: none;
}

.tour-date-item.past-event {
  opacity: 0.7;
}

.tour-date-status {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #666;
}

.tour-date-item.upcoming-event .tour-date-status {
  background: #e8f5e9;
  color: #2e7d32;
}

.tour-date-item.past-event .tour-date-status {
  background: #f5f5f5;
  color: #999;
}

.tour-date-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 15px;
  background: linear-gradient(135deg, #00AE82 0%, #00747A 100%);
  color: white;
  border-radius: 8px;
  font-weight: 600;
}

.tour-date-month {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.tour-date-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0;
}

.tour-date-year {
  font-size: 0.8rem;
  opacity: 0.8;
}

.tour-date-content {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.tour-date-info {
  flex: 1;
}

.tour-date-info h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 5px;
  font-weight: 600;
}

.tour-date-info h3 a {
  color: #981E32;
  text-decoration: none;
  transition: color 0.3s;
}

.tour-date-info h3 a:hover {
  color: #C60C30;
}

.tour-date-location {
  font-size: 0.95rem;
  color: #00AE82;
  font-weight: 600;
  margin-bottom: 5px;
}

.tour-date-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.tour-date-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width:120px;
  height: 45px;
  background: #00AE82;
  color: white;
  border-radius: 5%;
  text-decoration: none;
  font-size: 1.0rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tour-date-link:hover {
  background: #00747A;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .tour-date-item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .tour-date-content {
    flex-direction: column;
    gap: 15px;
  }

  .tour-date-date {
    flex-direction: row;
    gap: 10px;
    min-width: auto;
    width: 100%;
    justify-content: flex-start;
  }

  .tour-date-month {
    font-size: 0.75rem;
  }

  .tour-date-day {
    font-size: 1.5rem;
  }

  .tour-date-year {
    font-size: 0.75rem;
  }

  .tour-date-info h3 {
    font-size: 1.1rem;
  }

  .tour-date-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .tour-dates-header h2 {
    font-size: 1.8rem;
  }

  .tour-dates-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ====
   stories PAGE STYLES
   ==== */
.hero.stories {
  background-image: url('Images/Chris-5.jpg');
  min-height: 500px;
  max-height: 500px;
}

.hero.stories::before {
  display: none;
}

.stories-section {
  max-width: 100%;
  margin: 2rem 0;
  padding: 0 2rem;
}

.stories-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stories-teaser {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: visible;
  transition: box-shadow 0.3s;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  padding: 1rem;
}

.stories-teaser:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stories-teaser-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.stories-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.stories-teaser:hover .stories-teaser-image img {
  transform: scale(1.05);
}

.stories-teaser-content {
  padding: 1.5rem;
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stories-teaser-content h3 {
  color: #981E32;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.stories-teaser-subtitle {
  color: #00747A !important;
  font-size: 0.9rem !important;
  font-weight: bold !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}

.stories-teaser-content p:not(.stories-teaser-subtitle) {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.stories-link {
  color: #C60C30;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: inline-block;
  width: fit-content;
  margin-top: auto;
}

.stories-link:hover {
  color: #981E32;
}

@media (max-width: 768px) {
  .stories-teaser {
    grid-template-columns: 1fr;
  }

  .stories-teaser-image {
    height: 200px;
  }

  .stories-teaser-content {
    padding: 1.5rem;
  }

  .stories-teaser-content h3 {
    font-size: 1.1rem;
  }

  .stories-teaser-content p {
    font-size: 0.85rem;
  }
}


.hero.stories::before {
  display: none;
}

.stories-section {
  max-width: 100%;
  margin: 2rem 0;
  padding: 0 2rem;
}

.stories-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stories-teaser {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: visible;
  transition: box-shadow 0.3s, transform 0.3s;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
  padding: 1rem;
}

.stories-teaser:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.stories-teaser-image {
  width: 250px;
  height: 250px;
  overflow: hidden;
  margin: 1rem;
  border-radius: 8px;
}

.stories-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.stories-teaser:hover .stories-teaser-image img {
  transform: scale(1.05);
}

.stories-teaser-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stories-teaser-content h3 {
  color: #981E32;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.stories-teaser-subtitle {
  color: #00747A;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.75rem !important;
}

.stories-teaser-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.stories-link {
  color: #C60C30;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: inline-block;
  width: fit-content;
  font-size: 0.9rem;
}

.stories-link:hover {
  color: #981E32;
}

/* Image Right Variant */
.stories-teaser-reverse {
  grid-template-columns: 1fr;
}

.stories-teaser-reverse .stories-teaser-image {
  order: 0;
}

.stories-teaser-reverse .stories-teaser-content {
  order: 0;
}

@media (max-width: 768px) {
  .stories-container {
    grid-template-columns: 1fr;
  }

  .stories-teaser,
  .stories-teaser-reverse {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .stories-teaser-image {
    width: 100%;
    height: 200px;
    margin: 0;
    border-radius: 10px 10px 0 0;
  }

  .stories-teaser-content {
    padding: 1.5rem;
    margin-left: 0;
  }

  .stories-teaser-content h3 {
    font-size: 1.1rem;
  }

  .stories-teaser-content p {
    font-size: 0.85rem;
  }

  .stories-teaser-subtitle {
    font-size: 0.8rem;
  }
}
.intro-text-with-teaser {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.intro-text-main {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
}

.intro-text-main p {
  margin-bottom: 0;
}

.sound-sensation-teaser {
  background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  border-left: 5px solid #00AE82;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sound-sensation-teaser h3 {
  color: #981E32;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sound-sensation-teaser p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#sound-sensation-link {
  color: red;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

#sound-sensation-link:hover {
  color: #C60C30;
}

@media (max-width: 768px) {
  .intro-text-with-teaser {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sound-sensation-teaser {
    padding: 1.5rem;
  }

  .sound-sensation-teaser h3 {
    font-size: 1rem;
  }

  .sound-sensation-teaser p {
    font-size: 0.9rem;
  }
}

/* Quick Links Teasers */
.quick-links-teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto 3rem auto;
  max-width: 1200px;
  padding: 0;
}

.quick-teaser-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border: 3px solid #00AE82;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.quick-teaser-card:hover {
  border-color: #00AE82;
  box-shadow: 0 8px 20px rgba(0, 174, 130, 0.15);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffff 0%, #f5f5f5 100%);
}

.teaser-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.quick-teaser-card h4 {
  color: #981E32;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.quick-teaser-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .quick-links-teasers {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem auto 2rem auto;
    padding: 1.5rem;
  }

  .quick-teaser-card {
    padding: 1.25rem;
  }

  .teaser-icon {
    font-size: 2rem;
  }

  .quick-teaser-card h4 {
    font-size: 0.95rem;
  }

  .quick-teaser-card p {
    font-size: 0.8rem;
  }
}
/* ====
   COOKIE BANNER
   ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: none;
  backdrop-filter: blur(5px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font