/* DESIGN TOKENS & SYSTEM */
:root {
  --color-bg-primary: #000000;
  --color-bg-secondary: #080a08;
  --color-accent: #00ff66;
  --color-accent-rgb: 0, 255, 102;
  --color-text-primary: #ffffff;
  --color-text-secondary: #a0a0a0;
  --color-border: #333333;
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-handwritten: 'Caveat', cursive;
  
  --header-height: 80px;
  --mobile-nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-bg-primary);
  background-image: radial-gradient(circle at 0% 30%, rgba(var(--color-accent-rgb), 0.08) 0%, rgba(0, 0, 0, 0) 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, .nav-item span, .desktop-nav a {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
}

p {
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-text-secondary);
}

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

/* LANGUAGE SWITCHER GLOBAL SETTINGS */
[lang="de"] [data-lang="en"] {
  display: none !important;
}
[lang="en"] [data-lang="de"] {
  display: none !important;
}

/* Elements parked until the band's own YouTube channel launches —
   remove the class from the element in index.html to show them again */
.hidden-until-launch {
  display: none !important;
}

/* BUTTONS & COMPONENT ACTIONS */
.cta-button, .tour-action-btn, .channel-link-btn, .submit-btn {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  text-align: center;
  display: inline-block;
}

.cta-button:hover, .tour-action-btn:hover, .channel-link-btn:hover, .submit-btn:hover {
  background-color: var(--color-accent);
  color: #000000;
  box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.5);
  transform: translateY(-2px);
}

.cta-button:active, .tour-action-btn:active, .channel-link-btn:active, .submit-btn:active {
  transform: translateY(1px);
}

/* Plain-text placeholder in the action-button slot for events without a link */
.tour-pending-note {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: 10px 0;
  text-align: right;
}

/* SECTION STRUCTURE WITH ACCENTS */
.header-with-accents {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
  align-self: flex-start; /* Left-aligns in flex column layouts (like desktop #music and #booking) */
  text-align: left;       /* Left-aligns text inside the header block */
}

.section-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 5px;
}

.brush-underline {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  opacity: 0.95;
  margin-top: -5px;
}

/* Hero photo credit (bottom-right corner of the photo, desktop & mobile) */
.hero-photo-credit {
  position: absolute;
  bottom: 6px;
  right: 10px;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

/* Video Card (shared desktop & mobile) */
.video-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.video-header-info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.band-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: bold;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.video-play-btn-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-btn-icon {
  width: 76px;
  height: 76px;
  background-color: rgba(0,0,0,0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #fff;
  margin-left: 6px;
}

.play-btn-icon:hover {
  background-color: #ff0000;
  border-color: #ff0000;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* Past Shows (shared desktop & mobile) */
.past-shows-container {
  width: 100%;
  margin-bottom: 50px;
}

.past-shows-container .socials-heading {
  text-align: center;
  margin-bottom: 15px;
}

/* Booking Section Text (shared desktop & mobile) */
.booking-contact-box {
  margin-top: 20px;
  margin-bottom: 30px;
}

.booking-email-link {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.25);
  transition: all 0.2s;
}

.booking-email-link:hover {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.booking-quote-box {
  margin-bottom: 50px;
  max-width: 600px;
}

.booking-quote {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-primary);
}

.noise-complaint-underline-wrapper {
  position: relative;
  display: inline-block;
  color: var(--color-accent);
}

.noise-underline-img {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 105%;
  height: auto;
}

/* Social Connect Layout (shared desktop & mobile) */
.socials-container {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 40px;
  width: 100%;
  max-width: 600px;
}

.socials-heading {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 5px;
}

.socials-subtext {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.social-icons-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icon-wrapper {
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #080a08;
  transition: all 0.3s ease;
}

.social-icon-wrapper:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(var(--color-accent-rgb), 0.25);
}

.social-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer (shared desktop & mobile) */
.desktop-footer {
  border-top: 1px solid var(--color-border);
  background-color: #020202;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-icons {
  display: flex;
  gap: 24px;
}

.footer-icons a {
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.footer-icons a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-size: 0.85rem;
  color: #666;
}

/* ---------------------------------------------------- */
/* DESKTOP LAYOUT (SCREEN >= 768px)                     */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
  
  /* Hide mobile elements */
  .mobile-top-bar,
  .mobile-nav-bar,
  .mobile-status-bar,
  .mobile-only {
    display: none !important;
  }
  
  /* Desktop Header Sticky */
  .desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-logo-link {
    display: flex;
    align-items: center;
  }
  
  .header-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 0.2));
  }
  
  .desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
  }
  
  .desktop-nav a {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }
  
  .desktop-nav a:hover,
  .desktop-nav a.active {
    color: var(--color-accent);
  }
  
  /* Language switcher */
  .lang-switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
  }
  
  .lang-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    font-weight: 500;
    padding: 2px 6px;
    transition: color 0.2s;
  }
  
  .lang-btn:hover,
  .lang-btn.active {
    color: var(--color-accent);
  }
  
  /* Sections container in desktop */
  .app-container {
    width: 100%;
    max-width: 100%;
    margin-top: var(--header-height);
  }
  
  .sections-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .app-section {
    padding: 100px 40px;
    min-height: auto;
    display: flex;
    justify-content: center;
  }
  
  .section-content {
    width: 100%;
    max-width: 1000px;
  }
  
  /* Hero / Home (Desktop View) */
  #home {
    min-height: calc(100vh - var(--header-height));
    padding: 0;
    position: relative;
    display: flex;
    align-items: flex-end; /* Align hero content to the bottom */
    justify-content: center;
    padding-bottom: 80px; /* Space from the bottom of the viewport */
  }
  
  .hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  
  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.02);
    transition: transform 0.5s ease-out;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Reduced gap to keep logo and CTA button close */
  }
  
  .logo-wrapper {
    max-width: 600px;
    padding: 20px;
    animation: fadeInLogo 1.5s ease-out;
  }
  
  .hero-logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
  }
  
  .cta-button {
    font-size: 1.4rem;
    padding: 14px 40px;
    border-radius: 0;
    animation: pulseCta 2s infinite;
  }
  
  /* Live / Tour Dates (Desktop View) */
  .tour-dates-container {
    margin-bottom: 50px;
  }
  
  .tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
    transition: border-color 0.3s;
  }
  
  .tour-item:first-child {
    border-top: 1px solid var(--color-border);
  }
  
  .tour-item:hover {
    border-color: rgba(var(--color-accent-rgb), 0.3);
  }
  
  .tour-info {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .tour-date {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 500;
    min-width: 140px;
  }
  
  .tour-venue {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-primary);
  }
  
  /* Tour accents decoration */
  .live-smiley-decor {
    position: absolute;
    top: -10px;
    right: -120px;
    width: 90px;
    height: auto;
    transform: rotate(10deg);
  }
  
  /* PHOTO CAROUSEL (Desktop View) */
  .collage-slider-container {
    position: relative;
    margin-top: 60px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    width: 100%;
  }
  
  .collage-scroll-view {
    overflow: hidden;
    width: 100%;
  }
  
  .carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .carousel-slide-item {
    flex-shrink: 0;
    width: 322px; /* standard width to match ratio */
    height: 232px;
    overflow: hidden;
    border: 1px solid var(--color-border);
  }
  
  .carousel-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .carousel-slide-img:hover {
    transform: scale(1.05);
  }
  
  /* Hide navigation dots and arrows on desktop unless content overflows */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .dot.active {
    background-color: var(--color-accent);
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.8);
    border: 1px solid var(--color-border);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  
  .carousel-arrow:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
  }
  
  .prev-arrow { left: -60px; }
  .next-arrow { right: -60px; }

  /* Music Section (Desktop View) */
  #music .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .video-card {
    width: 100%;
    max-width: 720px;
    background-color: #0b0c0b;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
  }
  
  .video-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/gallery2.jpg'); /* Dynamic thumbnail populated via JS */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
  }
  
  .channel-btn-wrapper {
    margin-bottom: 60px;
  }
  
  .channel-link-btn {
    padding: 12px 30px;
  }
  
  /* Bio / About Section (Desktop View) */
  #bio .section-content {
    position: relative;
  }
  
  .bio-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .bio-heart-decor {
    width: 45px;
    height: auto;
    position: absolute;
    top: -45px;
    left: -40px;
    transform: rotate(-12deg);
  }
  
  .bio-note-decor {
    width: 58px;
    height: auto;
    position: absolute;
    top: -15px;
    left: 110px;
    transform: rotate(12deg);
  }
  
  .bio-text-wrapper {
    max-width: 750px;
    margin-bottom: 40px;
  }
  
  .bio-text-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    text-align: justify;
  }
  
  /* Bio Johnny/Bird layout at bottom (left-bound) */
  .bio-johnny-container {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    position: relative;
  }
  
  .bio-johnny-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-text-primary);
    transform: rotate(-10deg);
    transform-origin: left bottom;
    user-select: none;
    margin-right: 15px;
  }
  
  .bio-johnny-text .green-heart {
    display: inline-block;
    margin-left: 2px;
  }
  
  .bio-johnny-arrow {
    height: 25px;
    width: auto;
    margin-top: 15px;
    margin-right: 20px;
  }
  
  .bio-johnny-bird {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
  }
  
  /* Booking Section (Desktop View) */
  #booking .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .booking-bird-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
  
  .booking-bird-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
  }
  
}

/* ---------------------------------------------------- */
/* MOBILE LAYOUT (SCREEN < 768px)                       */
/* ---------------------------------------------------- */
@media (max-width: 767px) {
  
  /* Hide desktop header and carousel navigation arrows */
  .desktop-header,
  .carousel-arrow {
    display: none !important;
  }
  
  .desktop-footer {
    padding: 30px 20px;
  }
  
  body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* App container */
  .app-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-primary);
    padding-bottom: var(--mobile-nav-height);
  }
  
  /* Mobile Floating Language Switcher */
  .mobile-lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  
  .mobile-lang-btn {
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 4px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.2s;
  }
  
  .mobile-lang-btn:active {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
  
  .mobile-status-bar {
    display: none;
  }
  
  /* Sections container wrapper on mobile */
  .sections-wrapper {
    flex: 1;
  }
  
  /* Mobile section styling - normal document flow */
  .app-section {
    width: 100%;
    display: block;
    padding: 30px 20px;
    background-color: var(--color-bg-primary);
  }
  
  /* HOME Section (Mobile Specific) */
  #home {
    padding: 0;
    min-height: 100svh;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  /* Order: logo on black, band photo, Johnny bottom-left */
  #home .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 8px 20px;
    position: relative;
    z-index: 2;
  }

  #home .hero-bg-wrapper {
    order: 2;
    position: relative;
    width: 100%;
    flex-shrink: 0;
  }

  .home-bird-container {
    order: 3;
    width: 175px;
    height: auto;
    /* Negative left margin compensates for transparent padding inside the PNG */
    margin: 15px auto 20px -15px;
    display: flex;
    justify-content: flex-start;
  }

  #home .hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Short fades at the edges to blend the photo into the black areas above and below */
  #home .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 85%, rgba(0,0,0,0.85) 100%);
  }

  #home .logo-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto;
  }

  #home .hero-logo-img {
    width: 100%;
    height: auto;
  }

  #home .cta-button {
    display: none;
  }

  .home-bird-img {
    width: 100%;
    height: auto;
  }
  
  /* Section Header on Mobile */
  .header-with-accents {
    margin-top: 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .brush-underline {
    max-width: 130px;
  }
  
  .live-smiley-decor {
    width: 60px;
    position: absolute;
    top: -5px;
    right: -70px;
    transform: rotate(10deg);
  }
  
  /* Tour date row listing (Mobile) */
  .tour-dates-container {
    margin-top: 10px;
  }

  .past-shows-container {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  
  .tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1.5px solid var(--color-border);
  }
  
  .tour-item:first-child {
    border-top: 1.5px solid var(--color-border);
  }
  
  .tour-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .tour-date {
    font-size: 0.95rem;
    color: var(--color-accent);
  }
  
  .tour-venue {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-primary);
  }
  
  .tour-action-btn {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-width: 1.5px;
  }
  
  /* Carousel slider on Mobile */
  .collage-slider-container {
    margin-top: 30px;
    width: 100%;
  }
  
  .collage-scroll-view {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  .collage-scroll-view::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }
  
  .carousel-slide-item {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 280px;
    max-width: 80vw;
    height: 230px;
    border: 1px solid var(--color-border);
  }
  
  .carousel-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .dot.active {
    background-color: var(--color-accent);
  }
  
  /* Music Page (Mobile) */
  .video-card {
    width: 100%;
    margin-top: 10px;
    aspect-ratio: 1/1; /* Square player to match mobile screenshot */
    border: 1px solid var(--color-border);
  }
  
  .video-thumbnail-wrapper {
    background-image: url('assets/treibhaus_alle4.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
  }
  
  .play-btn-icon {
    width: 56px;
    height: 56px;
  }
  
  .play-triangle {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
    margin-left: 4px;
  }
  
  .channel-btn-wrapper {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  .channel-link-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px 0;
    border-width: 1.5px;
  }
  
  .socials-container {
    width: 100%;
    border-top: 1.5px solid var(--color-border);
    padding-top: 24px;
  }
  
  .socials-heading {
    font-size: 1.5rem;
  }
  
  .socials-subtext {
    font-size: 0.9rem;
  }
  
  .social-icons-grid {
    gap: 20px;
  }
  
  .social-icon-wrapper {
    width: 46px;
    height: 46px;
  }
  
  .social-svg {
    width: 20px;
    height: 20px;
  }
  
  /* Bio / About Page (Mobile) */
  .bio-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .bio-heart-decor {
    width: 32px;
    position: absolute;
    top: -44px;
    left: 5px;
    transform: rotate(-12deg);
  }
  
  .bio-note-decor {
    width: 42px;
    position: absolute;
    top: -10px;
    left: 80px;
    transform: rotate(12deg);
  }
  
  .bio-text-wrapper p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .bio-johnny-container {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 20px;
  }
  
  .bio-johnny-text {
    font-size: 0.9rem;
    margin-right: 10px;
  }
  
  .bio-johnny-arrow {
    height: 16px;
    margin-top: 10px;
    margin-right: 10px;
  }
  
  .bio-johnny-bird {
    height: 90px;
  }
  
  /* Booking Page (Mobile) */
  .booking-email-link {
    font-size: 1.35rem;
  }
  
  .booking-quote {
    font-size: 1rem;
  }
  
  .noise-underline-img {
    bottom: -8px;
  }
  
  .booking-bird-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
  
  .booking-bird-img {
    max-width: 200px;
  }
  
  /* Bottom Nav Menu Mobile styling */
  .mobile-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-nav-height);
    background-color: #000000;
    border-top: 1.5px solid var(--color-border);
    z-index: 1000;
  }
  
  .mobile-nav-bar ul {
    list-style: none;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .mobile-nav-bar li {
    flex: 1;
    height: 100%;
  }
  
  .nav-item {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    outline: none;
  }
  
  .nav-item span {
    font-size: 0.95rem;
    font-weight: bold;
    color: #ffffff;
    transition: color 0.2s;
  }
  
  .nav-item.active span {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
  }
}



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

@keyframes pulseCta {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--color-accent-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0);
  }
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* Carousel images clickable */
.carousel-slide-img {
  cursor: pointer;
  /* Anchor the cover-crop to the top so faces aren't cut off in tall photos */
  object-position: center top;
}
