/* CSS Design System for Lukas Bruckmeyer und seine Böhmischen Kameraden */

:root {
  /* Colors */
  --bg-primary: #0a0908;       /* Deep obsidian black */
  --bg-secondary: #141311;     /* Rich warm bronze-charcoal */
  --bg-tertiary: #1f1d1a;      /* Lighter bronze-gray for sections/inner boxes */
  --bg-card: #1c1a17;          /* Distinct card background */
  --bg-accent-dark: #2a1616;
  --accent: #d4af37;           /* Gold accent */
  --accent-hover: #f3c942;
  --text-primary: #ffffff;     /* Bright crisp white for headings */
  --text-secondary: #dfd9ce;   /* Brighter off-white body text */
  --text-muted: #9c9586;       /* Warm visible muted text */
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
  --border-radius: 8px;
  --border-gold: 1px solid rgba(212, 175, 55, 0.25);
  --border-gold-hover: 1px solid rgba(212, 175, 55, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Utility Components */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 20px auto 25px; /* Added 25px margin-bottom for spacing */
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: -2.5px;
  left: 26px;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  transform: rotate(45deg);
}

.about-content .title-underline,
.contact-info-container .title-underline {
  margin: 20px 0 25px; /* Align left under left-aligned headings */
}

.loading-spinner {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.loading-spinner i {
  color: var(--accent);
  margin-right: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b89329 100%);
  color: #100f0d;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #100f0d;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  background-color: rgba(16, 15, 13, 0.1);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(26, 24, 21, 0.95);
  backdrop-filter: blur(10px);
  height: 70px;
  border-bottom: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.nav-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-nav {
  height: 45px;
  width: 45px;
  object-fit: contain;
}

.logo-text-nav {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
  color: var(--text-primary);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-btn {
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: var(--border-radius);
  color: var(--accent) !important;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background-color: var(--accent);
  color: #100f0d !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('/images/band-group.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: var(--header-height);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Clean dark vignette overlay */
  background: radial-gradient(circle, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.9) 85%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-down:hover {
  color: var(--accent);
}

/* Termine Section */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 140px 1fr 180px;
  align-items: center;
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--border-radius);
  padding: 25px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.event-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-2px);
}

.event-date-box {
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  padding-right: 30px;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.event-month {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-top: 5px;
  display: block;
}

.event-year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.event-info {
  padding: 0 40px;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.event-venue-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.event-venue-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-venue-details i {
  color: var(--accent);
}

.event-desc {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.event-actions {
  text-align: right;
}

/* About Section */
.about-section {
  background-color: var(--bg-secondary);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-img-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}



.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-container:hover .about-img {
  transform: scale(1.03);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 55px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 45px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item i {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Besetzung / Members Section */
.section-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.tab-btn {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--accent);
  color: #100f0d;
  border-color: var(--accent);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, padding 0.8s ease;
}

.members-grid.expanded {
  max-height: 4500px; /* high enough to contain all cards */
  opacity: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.member-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: var(--border-gold);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: scale(1);
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.member-img-box {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--bg-tertiary);
  overflow: hidden;
}

.member-img-box i.default-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--bg-primary);
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.member-card:hover .member-img {
  transform: scale(1.05);
}

.member-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.member-instrument {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Galerie Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-3px);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(16,15,13,0.9) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(212, 175, 55, 0.85);
  color: #100f0d;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Shop Section */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 300px));
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: var(--border-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.product-img-box {
  position: relative;
  height: 280px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-placeholder-icon {
  font-size: 4rem;
  color: #3b3734;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3rem;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.product-price::after {
  content: " €";
}

.product-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
}

.product-buy-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Kontakt Section */
.contact-section {
  background-color: var(--bg-primary);
  border-top: var(--border-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-container, .contact-form-container {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--border-radius);
  border: var(--border-gold);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info-container p#contactTextContent {
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: auto;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-detail-item i {
  color: var(--accent);
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.contact-detail-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-item p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  word-break: break-word;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-btn {
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-gold);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--accent);
  color: #100f0d;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Forms */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-sub {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 12px 18px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background-color: var(--bg-tertiary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-message {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  color: #2ec4b6;
}

.form-message.error {
  color: #e71d36;
}

/* Footer */
.footer {
  background-color: #0b0a09;
  padding: 60px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo-icon-footer {
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.1));
}

.footer-logo h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.admin-login-link {
  color: var(--text-muted);
  font-weight: 500;
}

.admin-login-link:hover {
  color: var(--accent);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 9, 8, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 24, 21, 0.5);
  border: var(--border-gold);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--accent);
  color: #100f0d;
  border-color: var(--accent);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 35px;
  }
  
  .about-img {
    height: 380px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .event-card {
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .event-actions {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 15px;
  }
  
  .event-date-box {
    padding-right: 20px;
  }
  
  .event-info {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .hero, #besetzung {
    background-attachment: scroll !important;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(16, 15, 13, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 40px 0;
    gap: 30px;
    transition: var(--transition);
    border-bottom: var(--border-gold);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-logo-img {
    margin-bottom: 10px;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    padding: 0 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
    padding-top: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-row-sub {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* Besetzung Section Styling overrides & Collapsible Hint */
#besetzung {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

#shop {
  background-color: var(--bg-secondary);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.besetzung-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: -25px;
  margin-bottom: 25px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.pulsing-arrow {
  font-size: 1.1rem;
  animation: arrowPulse 1.2s infinite alternate ease-in-out;
  color: var(--accent);
}

@keyframes arrowPulse {
  0% { transform: translateY(-4px); }
  100% { transform: translateY(4px); }
}

/* Legal Modal & Cookie Banner */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 8px;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.25rem;
  color: var(--accent);
  font-family: var(--font-heading);
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--accent);
}

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

.legal-modal-content {
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.legal-modal-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  padding: 25px;
  overflow-y: auto;
}

.legal-modal-body h4 {
  color: var(--accent);
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.legal-modal-body p {
  margin-bottom: 15px;
}

.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 700px;
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  padding: 20px 25px;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.show {
  bottom: 20px;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.cookie-content button {
  white-space: nowrap;
  padding: 8px 18px;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    text-align: center;
  }
}

/* Biography Modal styling */
.bio-modal-content {
  max-width: 900px;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  background: rgba(16, 15, 13, 0.96);
  backdrop-filter: blur(15px);
  border: var(--border-gold);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.bio-img-box {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.bio-text-box {
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.bio-subtitle {
  color: var(--accent);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.bio-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin: 5px 0 15px;
}

.bio-text {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

.bio-text p {
  margin-bottom: 15px;
}

/* Responsive grid for Biography Modal */
@media (max-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bio-modal-content {
    padding: 30px 20px;
    margin: 20px auto;
    width: 95%;
  }
  
  .bio-title {
    font-size: 1.8rem;
  }
}
