/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

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

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* * =================================================================
         * CSS VARIABLES (CUSTOM PROPERTIES)
         * =================================================================
        */
:root {
  --primary-color: #a14667;
  --primary-color-darker: #8c3b58;
  --bg-color: #f8f7f5;
  /* A very light, warm grey for the overall background */
  --surface-color: #ffffff;
  /* Pure white for content cards and sections */
  --text-color: #1c1c1c;
  --text-color-muted: #6c757d;
  --border-color: #e0e0e0;
  --font-main: 'Montserrat', sans-serif;
}

/* * =================================================================
 * GENERAL & RESET STYLES
 * =================================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 17px;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2.5rem;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--primary-color-darker);
}

a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /*border-radius: 12px;*/
}

main>section {
  max-width: 1366px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.text-center {
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  color: var(--text-color-muted);
  font-size: 1.1rem;
}

/* * =================================================================
 * HEADER & NAVIGATION
 * =================================================================
*/
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.band-name {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
}

.band-name a {
  color: var(--text-color);
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  color: var(--text-color);
  transition: color 0.3s ease;
}

/* Page-specific Link Colors IDLE */
.main-nav a[href="index.html"] {
  color: #ff4500;
  /* Müllermugge Orange */
}

.main-nav a[href="micha_mueller.html"] {
  color: #607d8b;
  /* Micha F. Müller Blue */
}

.main-nav a[href="mueduo.html"] {
  color: #e74c3c;
  /* Mü Duo Ruby Red */
}

/* Hover and active states for specific links */
.main-nav a[href="index.html"]:hover,
.main-nav a[href="index.html"].active {
  color: #e63e00;
}

.main-nav a[href="micha_mueller.html"]:hover,
.main-nav a[href="micha_mueller.html"].active {
  color: #607d8b;
}

.main-nav a[href="mueduo.html"]:hover,
.main-nav a[href="mueduo.html"].active {
  color: #c0392b;
}

.main-nav a.active {
  color: var(--primary-color);
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-menu .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

/* * =================================================================
 * PAGE SECTIONS
 * =================================================================
*/
main {
  background-color: var(--surface-color);
}

main section {
  border-top: 1px solid var(--border-color);
  text-align: center;

}

main>.section:first-child,
main>section:first-child {
  border-top: none;
}


main#page-content-outlet>section {
  width: 100%;
  padding-right: 0.75rem;
  /* oder Ihr Bootstrap-Gutter-Wert / 2 */
  padding-left: 0.75rem;
  /* oder Ihr Bootstrap-Gutter-Wert / 2 */
  margin-right: auto;
  margin-left: auto;
}

/* Breakpoints für max-width (ähnlich Bootstrap .container) */
@media (min-width: 576px) {
  main#page-content-outlet>section {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  main#page-content-outlet>section {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  main#page-content-outlet>section {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  main#page-content-outlet>section {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  main#page-content-outlet>section {
    max-width: 1320px;
  }
}


/* * =================================================================
 * HOME SECTION
 * =================================================================
*/
#home-section {
  min-height: calc(100vh - 78px - 8rem);
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  border-top: none;
  /* Override general section padding for home section */
  padding-top: 3rem;
  /* Reduced from 4rem */
  padding-bottom: 3rem;
  /* Reduced from 4rem */
  padding-left: 1.5rem;
  /* Keep horizontal padding consistent */
  padding-right: 1.5rem;
  /* Keep horizontal padding consistent */
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}

.hero-text {
  max-width: 500px;
  text-align: left;
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-color-muted);
  margin-bottom: 2.5rem;
}

.hero-image {
  flex-shrink: 0;
  max-width: 500px;
  flex: 1
}

.hero-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-height: 450px;
  /* Adjust this value as needed. It caps the image height. */
  width: 100%;
  /* Ensures the image tries to fill the width of .hero-image container. */
  object-fit: cover;
  /* Ensures the image covers the defined space, cropping if necessary,
                         maintaining aspect ratio without distortion. */

}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--primary-color-darker);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* * =================================================================
 * MEMBER PHOTO MODAL (LIGHTBOX)
 * =================================================================
*/
.member-modal {
  position: fixed;
  inset: 0;
  /* a shorthand for top, right, bottom, left */
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  flex-wrap: wrap;
}

.member-modal.open {
  opacity: 1;
  visibility: visible;
}

.member-modal__content {
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.member-modal.open .member-modal__content {
  transform: scale(1);
}

.member-modal__img {
  max-width: 70vw;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}

.member-modal__info {
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1rem;
  max-width: 70vw;
  width: 100%;
  overflow-y: auto;
  max-height: 25vh;
}

.member-modal__name {
  color: var(--primary-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.member-modal__bio {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--light-gray);
  text-align: left;
}

.member-modal__close {
  position: absolute;
  top: 0.5rem;
  /* Position leicht angepasst */
  right: 0.5rem;
  /* Position leicht angepasst */
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 2010;
  /* Über den Nav-Buttons */
}

.member-modal__close:hover {
  background: var(--primary-color-darker);
  transform: scale(1.1) rotate(90deg);
}

/* Styles für Navigationsbuttons */
.member-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(40, 40, 40, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2005;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.member-modal__nav:hover,
.member-modal__nav:focus {
  background-color: rgba(0, 0, 0, 0.9);
  outline: none;
}

.member-modal__nav--prev {
  left: -0.5rem;
  /* Position außerhalb des direkten Bildbereichs */
}

.member-modal__nav--next {
  right: -0.5rem;
  /* Position außerhalb des direkten Bildbereichs */
}

.member-modal__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background-color: rgba(40, 40, 40, 0.5);
}

/* * =================================================================
 * IMPRESSUM (IMPRINT) SECTION
 * =================================================================
*/
#impressum-section {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 4rem;
}

.impressum-content p {
  margin-bottom: 1rem;
}

.impressum-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* * =================================================================
 * SHARED STYLES
 * =================================================================
*/
.member-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  cursor: pointer;
}

.member-card h3 {
  margin-bottom: 0.25rem;
}

.member-card p {
  margin-top: 0.25rem;
  font-size: 0.9rem;

}

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

.member-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--border-color);
}

.gig-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.gig-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.audio-player {
  background-color: var(--bg-color);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.audio-player h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.audio-player .artist {
  color: var(--text-color-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-pause-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.play-pause-btn:hover {
  background-color: var(--primary-color-darker);
}

.play-pause-btn svg {
  width: 24px;
  height: 24px;
}

.play-icon {
  display: block;
}

.pause-icon {
  display: none;
}

.audio-player.playing .play-icon {
  display: none;
}

.audio-player.playing .pause-icon {
  display: block;
}

.progress-container {
  flex-grow: 1;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  cursor: pointer;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
}

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

.press-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.press-card blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  flex-grow: 1;
}

.press-card .publication {
  font-weight: bold;
  color: var(--text-color-muted);
}

.press-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.site-footer {
  background-color: var(--surface-color);
  color: var(--text-color-muted);
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 0;
  border-top: 1px solid var(--border-color);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--text-color-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links .social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.band-members-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile-first: 1 column */
  gap: 1rem;
}


.gigs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-item {
  display: grid;
  grid-template-columns: 100px 1fr 160px;
  /* Vorher: 100px 1fr auto; */
  grid-template-areas: "date info tickets";
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}

.gig-date {
  grid-area: date;
  text-align: center;
  background-color: var(--bg-color);
  padding: 0.5rem;
  border-radius: 8px;
}

.gig-date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
}

.gig-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.gig-info {
  grid-area: info;
}

.gig-info h3 {
  margin: 0;
  font-size: 1.3rem;
}

.gig-info p {
  margin: 0;
  color: var(--text-color-muted);
}

.gig-tickets {
  grid-area: tickets;
}

.ticket-link {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ticket-link:hover {
  background-color: var(--primary-color-darker);
  color: #fff;
  transform: scale(1.05);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 12px;
}

/* * =================================================================
 * RESPONSIVE DESIGN (Media Queries)
 * =================================================================
*/

@media (min-width: 768px) {

  .band-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 992px) {
  .band-members-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* 4 columns on desktop */
}


@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    width: 80%;
    max-width: 500px;
    margin-top: 2rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Geändert von 100% für robustere Vollbildhöhe */
    background-color: var(--surface-color);
    /* Sollte weiß sein. Teste ggf. mit 'white' oder 'red' */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-nav a {
    font-size: 1.3rem;
    /* Deutlich reduziert, passe dies weiter an nach Bedarf (z.B. 1.2rem, 1.4rem) */
    padding: 0.8rem 1rem;
    /* Geändert von margin zu padding für bessere Klickflächen und Kontrolle */
    margin: 0.5rem 0;
    /* Kleinerer vertikaler Abstand zwischen den Elementen, falls padding nicht ausreicht */
    display: block;
    color: var(--text-color);
    text-decoration: none;
    width: 100%;
    /* Stellt sicher, dass der Link die Breite des li-Elements einnimmt */
    text-align: center;
    /* Zentriert den Text im Link */
  }

  .main-nav a.active {
    color: var(--primary-color);
  }

  .hamburger-menu {
    display: block;
  }

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

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .gig-item {
    grid-template-columns: 1fr;
    grid-template-areas: "date" "info" "tickets";
    text-align: center;
  }

  .gig-date {
    width: 120px;
    margin: 0 auto;
  }

  .member-modal__content {
    padding: 0 3rem;
    /* Weniger Padding auf Mobilgeräten */
  }

  .member-modal__img {
    max-width: calc(100vw - 7rem);
    /* Bildbreite anpassen, um Buttons Platz zu geben */
  }

  .member-modal__nav {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.5rem;
  }

  .member-modal__nav--prev {
    left: 0.25rem;
  }

  .member-modal__nav--next {
    right: 0.25rem;
  }

  .member-modal__close {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
    top: 0.25rem;
    right: 0.25rem;
  }
}