@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* Modernes Musiker-Portfolio Farbschema */
:root {
  --color-primary: #212121;
  --color-primary-dark: #000000;
  --color-primary-light: #484848;
  --color-secondary: #e9ecef;
  --color-secondary-dark: #ced4da;
  --color-secondary-light: #f8f9fa;
  --color-accent: #4dafcc;
  --color-accent-dark: #438ca7;
  --color-accent-light: #7dd9ee;
  --color-bg: #1a2329;
  --color-bg-light: rgba(26, 35, 41, 0.97);
  --color-bg-lighter: rgba(26, 35, 41, 0.92);
}

/* Impressum */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.legal-section h2 {
  color: var(--color-secondaryy);
  margin-bottom: 2rem;
}

.legal-section h3 {
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: 0;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-info {
  background: var(--color-secondary);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--color-primary)
}

/* Datenschutz */
.privacy-box {
  background: var(--color-secondary);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  color: var(--color-primary)
}

.privacy-box h3 {
  margin-top: 0;
  
}

.privacy-list {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.privacy-list li {
  margin-bottom: 0.5rem;
}

/* Navigation und Header */
.burger-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.burger-menu div {
  width: 25px;
  height: 3px;
  background-color: var(--color-secondary-light);
  margin: 5px 0 2px;
  transition: all 0.3s ease;
}

body:has(.hero-section) .burger-menu div {
  background-color: var(--color-secondary-light);
}

/* Events und Hochzeiten Seite */
.events-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/landing.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 2rem;
  margin-bottom: 3rem;
}

.events-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
}

.content-section {
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.light-bg {
  background-color: #f8f8f8;
}

.text-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
}

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

.testimonials {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

blockquote {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  font-style: italic;
  margin: 0;
}

blockquote footer {
  margin-top: 1rem;
  color: #666;
  font-style: normal;
}

.booking-info {
  text-align: center;
  margin: 2.5rem 0 2rem 0;
}

.booking-info h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.booking-info p {
  flex: 1 1 300px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-secondary-light);
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  hyphens: auto;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Kalender */
.calendar-section {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 300px); /* Abzüglich Header + Footer + Margins */
}

.calendar-section h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  margin-top: 3rem; /* Angepasst an about-section */
  text-align: center;
  letter-spacing: 1px;
}

.calendar-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.calendar-btn {
  background: var(--color-secondary);
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-btn.active {
  background: var(--color-accent);
  color: var(--color-secondary-light);
}



.calendar-tables {
  position: relative;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.concert-table {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-out;
  height: 0;
  overflow: hidden;
}

.concert-table.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
  overflow: visible;
}

.concert-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--color-secondary);
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
  backdrop-filter: blur(10px);
}

.concert-table th,
.concert-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-secondary-dark);
  color: var(--color-primary)
}

.concert-table tr:last-child td {
  border-bottom: none;
}

.concert-table th {
  background: var(--color-accent);
  color: var(--color-secondary-light);
  font-weight: 600;
}

.concert-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {

  /* Vertikales Layout für Konzerteinträge */
  .concert-table tr {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
  }

  .concert-table td {
    padding: 0.2rem 0;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    text-align: center;
    text-align-last: center;
  }

  .concert-table th,
  .concert-table td {
    border-bottom: none;
  }

  .concert-table td:first-child {
    font-weight: bold;
    color: #333;
  }

  .concert-table td:nth-child(2) {
    color: #666;
  }

  .calendar-section h2 {
    font-size: 2.5rem;
  }
}

/* Projekte-Übersicht */
.projects-section {
  margin: 3rem 0 2rem 0;
}

.projects-section h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.projects-section h1 {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 6.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, transparent 100px, var(--color-secondary) 100px);
  border-radius: 8px;
  min-width: 0;
  max-width: 600px;
  width: 90vw;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 1);
  overflow: hidden;
}

.project-card h3 {
  margin: 1rem 0 0.2rem 0;
  color: var(--color-accent);
  font-size: 2.3rem;
  font-weight: 600;
}

.project-style {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0rem 0 1rem 0;
  opacity: 0.8;
}

.project-more {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-secondary-light);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.project-card p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1300px) {
  .projects-list {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    margin: 0 auto;
    max-width: fit-content;
  }

  .project-card {
    width: 100%;

  }

  .projects-section h2 {
    font-size: 2.5rem;
  }

  .projects-section h1 {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 600px) {
  .project-card h3 {
    font-size: 1.8rem;
  }

  .project-style {
    font-size: 1.1rem;
  }

  .projects-section h2 {
    font-size: 2rem;
  }
}

/* Detailseite Bandbild kleiner */
.detail-img {
  display: block;
  width: 60%;
  height: 60%;
  border-radius: 18px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 0, 0, 1);
}

/*Banddescription*/
.band-description {
  max-width: 600px;
  margin: 1rem auto 2.5rem auto;
  padding: 2rem 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-secondary-light);
  hyphens: auto;
  text-align: justify;
}

.band-description h3 {
    color: var(--color-accent-light);
}

.band-description li {
  hyphens: none;
  text-align: left;
}

/* About Section Styles */
.about-section {
  margin: 3rem 0 2rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-section h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.about-text {
  flex: 1 1 300px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-secondary-light);
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: justify;
  hyphens: auto;
}

.about-image {
  flex: 0 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-img {
  width: 300px;
  max-width: 90vw;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 1);
}

/* Footer fix for Side-Pages */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.page-wrapper footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* Header Layout */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.site-title {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--color-accent-light);
  margin-right: 2.5rem;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .header-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .site-title {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  nav {
    justify-content: flex-start;
    gap: 1.2rem;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Spectral', serif;
  background: var(--color-bg);
  color: var(--color-secondary-light);
  box-sizing: border-box;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior: none;
}

/* Menü geöffnet - Scrollen verhindern */
html.menu-open,
body.menu-open {
  overflow: hidden !important;
  height: 100%;
}

/* Kalender ausblenden, wenn Menü geöffnet - unschöne Lösung */
body.menu-open .calendar-section {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/**,
*::before,
*::after {
  box-sizing: inherit;
}*/

header {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-accent);
  padding: 1rem 1rem 1rem 1rem;
  text-align: center;
  width: 100vw;  
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Startseite Navigation transparent*/
.landing-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: var(--color-accent);
  padding: 1rem 1rem 1rem 1rem;
  text-align: center;
  width: 100vw;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: var(--color-secondary-light);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}


nav a::after {
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.5s;

}

nav a:hover::after {
  width: 100%;
}

/* Startseite Navigation weiß*/
.landing-nav a {
  color: var(--color-secondary-light);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

main {
  width: 70%;
  margin: 0 auto 2rem auto;
  background: transparent;
  padding: 3rem 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-section {
  width: 100vw;
  height: 100vh;
  margin-left: calc((100% - 100vw) / 2);
  margin-top: -8.95rem;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('img/landing.jpg') top/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: -5rem;
  position: relative;
}

.hero-section h1 {
  color: var(--color-secondary-light);
  font-size: 7.5rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0 2rem;
  text-align: center;
}

.hero-section h2 {
  color: var(--color-secondary-light);
  font-size: 2rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0 2rem;
  text-align: center;
}

.button {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary-dark);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  margin: 0 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
}

.button:hover {
  background: var(--color-accent-dark);
  color: var(--color-secondary-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

section {
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

input,
textarea {
  padding: 0.5rem;
  border: 1px solid var(--color-secondary-dark);
  border-radius: 4px;
  background: var(--color-secondary-light);
  color: var(--color-primary);
  font-size: 1rem;
}

button[type="submit"] {
  margin-top: 1rem;
  padding: 0.7rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

button[type="submit"]:hover {
  background: var(--color-accent-dark);
  color: var(--color-secondary-light);
}

footer {
  text-align: center;
  padding: 1.5rem 1rem 1rem 1rem;
  background: var(--color-primary-dark);
  color: var(--color-secondary-light);
  margin-top: 2rem;
  border-radius: 0;
}

footer a {
  color: var(--color-secondary-light);
  text-decoration: underline;
}

/* Kontakt Seite */
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page h2 {
  font-size: 3rem;
  font-weight: 600;
  margin: 3rem 0 3.5rem 0;
  text-align: center;
  letter-spacing: 1px;
}

.contact-page h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.services-overview {
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.service-card {
  background: var(--color-bg-lighter);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent-light);
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-form-section p {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--color-bg-lighter);
  color: var(--color-secondary-light);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.submit-btn {
  background: var(--color-accent);
  color: var(--color-secondary-light);
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-page h2 {
    font-size: 2.5rem;
  }

  .contact-page h3 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* Allgemeines Responsive Design */
/*@media (max-width: 768px) {*/
@media (max-width: 1300px) {
  /* Navigation Anpassungen */
  nav, .landing-nav {
    gap: 1.5rem;
    width: 100%;
  }

  nav a, .landing-nav a {
    padding: 0.2rem;
    font-size: 0.9rem;
  }

  /* Events-Seite */
  .events-hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  /* Landing Page */
  .landing-row {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .landing-img {
    width: 100%;
    margin-top: 2rem;
  }

  .landing-content {
    text-align: center;
    padding: 0;
  }

  .landing-buttons {
    justify-content: center;
  }

  /* Über mich Seite */


  .about-content {
    padding: 2rem 0;
  }

  .about-image {
    width: 90%;
    margin: 0 auto;
  }

  .detail-img {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1100px) {
  .burger-menu {
    display: block;
    position: relative;
    z-index: 1000;
    right: 0;
    margin-right: 50px;
  }

  .header-row nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-light);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0;
  }

  .header-row nav.active {
    opacity: 0.975;
    visibility: visible;
    background-color: var(--color-bg);
  }

  .landing-nav a,
  nav a {
    font-size: 1.5rem;
    margin: 15px 0;
    text-align: center;
    width: 200px; /* Feste Breite für die Links */
    padding: 0.5rem 0;
  }

  .burger-menu.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
  }

  .burger-menu.active div:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* .header-row {
    justify-content: space-between;
    padding: 0 20px;

    /*right: 0;
    margin-right: 50px;
  }*/
}


/* Booking Page Styles */
.booking-section {
  margin: 3rem 0 2rem 0;
}

.booking-section h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.booking-section h1 {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 6.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.booking-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-section {
  margin: 5rem 0;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--color-accent-light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 560px), 1fr));
  gap: 5rem;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.press-section {
  margin: 5rem 0;
  text-align: center;
}

.press-section h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--color-accent-light);
}

.download-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-button {
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary-dark);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.download-button:hover {
  background: var(--color-accent-dark);
  color: var(--color-secondary-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.material-icons {
  font-size: 1.5rem;
}

/* Responsive Styles für Booking Page */
@media (max-width: 1200px) {
  .booking-content {
    padding: 0 1.5rem;
  }

  .video-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .video-section h2,
  .press-section h2 {
    font-size: 2.2rem;
  }

  .band-info img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .video-section h2,
  .press-section h2 {
    font-size: 2rem;
  }

  .band-description {
    font-size: 1.1rem;
  }

  .video-section {
    margin: 3rem 0;
  }

  .press-section {
    margin: 3rem 0;
  }
}

@media (max-width: 480px) {
  /* Hauptcontainer auf volle Breite */
  main {
    width: 95%;
    padding: 2rem 0;
  }

  .booking-content {
    padding: 0 0.5rem;
  }

  /* Überschriften und Text */
  .video-section h2,
  .press-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  /* Bilder */
  .band-info img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  /* Video Grid */
  .video-grid {
    gap: 1.5rem;
  }

  .video-container {
    margin: 0 -0.5rem;
  }

  /* Download Buttons */
  .download-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .download-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 80%; /* Begrenzt die Breite der Buttons */
    margin: 0 auto; /* Zentriert die Buttons */
  }

  /* Text */
  .band-description {
    font-size: 1rem;
    padding: 0;
    width: 100%;
    margin: 1.5rem auto;
  }

  /* Abstände zwischen Sektionen */
  .video-section,
  .press-section {
    margin: 3rem 0;
  }
}

/* Noch kleinere Bildschirme */
@media (max-width: 400px) {

  .booking-section h2 {
    font-size: 2.5rem;
  }

  .booking-section h1 {
    font-size: 2rem;
  }

  .button {
    text-align: center;
    margin: 0.5rem 0;
  }

  .calendar-tables {
    display: block;
    width: 100%;
    border-collapse: collapse;
    overflow-x: visible;
  }

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


@media (max-width: 900px) {
  .hero-section h1 {
    font-size: 5.5rem;
  }

  .fullscreen-main {
    height: calc(100vh - 120px);
  }

  .project-card h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .project-card div {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    text-align: center;
  }

}

@media (max-width: 600px) {
  .calendar-filter {
    flex-direction: column;
    align-items: stretch;
  }

.calendar-section h2,
.projects-section h2,
.about-section h2 {
  font-size: 2.0rem;
  color: var(--color-secondary-light);
}  .hero-section h1 {
    font-size: 3.5rem;
  }

  /* Startseite Hintergrund*/
  .hero-section {
    width: 100vw;
    height: 100vh;
    margin-left: calc((100% - 100vw) / 2);
    margin-top: -11.95rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url('img/landing_mobile.jpg') top/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: -5rem;
    position: relative;
  }

  /* Startseite Navigation transparent*/
  .landing-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--color-accent);
    padding: 1rem 1rem 1rem 1rem;
    text-align: center;
    width: 100vw;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 400px) {
  .calendar-section h2,
  .projects-section h2,
  .about-section h2 {
    font-size: 1.5rem;
  }
}