@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/bebasneue-regular-webfont.woff2') format('woff2');
}

/* ============================================================================
   VARIABLES & RESET
   ============================================================================ */

:root {
  --bg-dark: #0a0a0a;
  --accent: #e2001a;
  --text-light: #f2f2f2;
  --text-grey: #9a9a9a;
  --transition: all 0.25s ease;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;
}

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

body {
  background: var(--bg-dark);
  color: var(--text-grey);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ============================================================================
   GLOBAL SECTION STYLES
   ============================================================================ */

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

section h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.0rem;
}

/* Subsection Titles (h3) */
.shows-subtitle,
.download-category h3,
.media-videos h3,
.media-gallery h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.shows-subtitle::after,
.download-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

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

a:hover {
  color: var(--accent);
}
/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 1000;
  transition: padding 0.3s ease;
}

header.scrolled {
  padding: 0.75rem 2rem;
}

.brand img {
  height: 80px;
  transition: height 0.3s ease;
}

header.scrolled .brand img {
  height: 50px;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}

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

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Desktop Video - Standard sichtbar */
.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

/* Mobile: Videos tauschen */
@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }
  
  .hero-video-mobile {
    display: block;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: -1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: 0.20em;
  color: white;
}

.hero p {
  margin-top: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Button */
.button.ghost {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
}

.button.ghost:hover {
  background: var(--accent);
  color: black;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

#about {
  padding: 3rem 2rem;
}

/* ============================================================================
   SHOWS SECTION
   ============================================================================ */

#shows {
  padding: 3rem 2rem;
}

.shows-section {
  margin-bottom: 4rem;
}

.shows-section:last-child {
  margin-bottom: 0;
}

/* Shows Grid */
.shows-grid {
  columns: 2;
  gap: 2rem;
}

.gig {
  break-inside: avoid;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}

.calhead {
  display: block;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.caltime {
  float: right;
  color: var(--accent);
}

/* Past Shows Styling */
.past-shows .gig {
  opacity: 0.5;
}

.past-shows .calhead {
  color: var(--text-grey);
}

.past-shows .caltime {
  color: var(--text-grey);
}

/* ============================================================================
   BAND SECTION
   ============================================================================ */

#band {
  padding: 3rem 2rem;
}

/* Grid / Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.grid.three { 
  grid-template-columns: repeat(3, 1fr); 
}

.grid.six { 
  grid-template-columns: repeat(6, 1fr); 
}

.card {
  background: none;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition);
}

.card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.card-content {
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ============================================================================
   MEDIA SECTION
   ============================================================================ */

#media {
  padding: 3rem 2rem;
}

.media-videos,
.media-gallery {
  margin-bottom: 4rem;
}

.media-intro {
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.inline-link:hover {
  border-bottom-color: var(--accent);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-card {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/9;
}

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

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Play Button Overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: var(--transition);
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay svg {
  width: 60px;
  height: 60px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(226, 0, 26, 0.5));
}

.video-title {
  color: var(--text-light);
  margin-top: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.video-card:hover .video-title {
  color: var(--accent);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}


/* ============================================================================
   PRESS KIT SECTION
   ============================================================================ */

#presskit {
  padding: 3rem 2rem;
}

.presskit-intro {
  color: var(--text-grey);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Grid Layout */
.presskit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Item Card */
.presskit-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.presskit-item:hover {
  border-color: rgba(226, 0, 26, 0.3);
  transform: translateY(-3px);
}

/* Preview Box */
.presskit-preview {
  background: #f5f5f5;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}

.presskit-preview.dark {
  background: #151515;
}

.presskit-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Technical Item (PDF) */
.presskit-technical {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.presskit-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presskit-icon svg {
  width: 80px;
  height: 80px;
  color: var(--accent);
}

.presskit-technical .presskit-content {
  padding: 0;
}

/* Content Area */
.presskit-content {
  padding: 1.0rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.presskit-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}

/* Buttons */
.presskit-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.presskit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid var(--text-grey);
  color: var(--text-grey);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.presskit-btn svg {
  width: 16px;
  height: 16px;
}

.presskit-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(226, 0, 26, 0.05);
}

/* Responsive: Tablet & Mobile */
@media (max-width: 1024px) {
  .presskit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .presskit-grid {
    gap: 0.7rem;
  }
  
  .presskit-preview,
  .presskit-icon {
    height: 120px;
  }
  
  .presskit-content {
    padding: 0.7rem;
  }
  
  .presskit-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .presskit-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================================================================
   BOOKING SECTION
   ============================================================================ */

#booking {
  padding: 3rem 2rem;
}

/* Contact Card */
.contact-card {
  margin-bottom: 3rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-grey);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.contact-info .company {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.contact-info .website {
  margin-top: 0.75rem;
  color: var(--text-grey);
  font-size: 0.9rem;
}

.contact-info a {
  color: var(--text-grey);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--accent);
}

/* Email Link - Special Button Style */
.email-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent) !important;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: var(--transition);
}

.email-link:hover {
  background: var(--accent);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 0, 26, 0.3);
}

/* References */
.references {
  display: grid;
  gap: 2rem;
}

.reference-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #222;
}

.reference-block:last-child {
  border-bottom: none;
}

.reference-block h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.reference-block p {
  color: var(--text-grey);
  line-height: 1.8;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  border-top: 1px solid #1a1a1a;
  background: rgba(0,0,0,0.4);
  margin-top: 4rem;
  padding: 3rem 2rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-size: 0.9rem;
  color: var(--text-grey);
  margin-bottom: 1rem;
}

/* Partner Logos */
.partner-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-logos a {
  display: block;
  transition: var(--transition);
}

.partner-logos img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.partner-logos a:hover img {
  filter: grayscale(0%) brightness(1);
  transform: translateX(5px);
}

/* Social Media Icons */
.footer-social {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid var(--text-grey);
  border-radius: 50%;
  color: var(--text-grey);
  transition: var(--transition);
}

.social-icons a svg {
  width: 20px;
  height: 20px;
}

.social-icons a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  text-align: right;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-links a {
  color: var(--text-grey);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(-5px);
}

/* Footer Bottom - Copyright */
.footer-bottom {
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 0;
  padding: 1.5rem 2rem;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============================================================================
   MOBILE RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
  /* Navigation */
  .nav-toggle { 
    display: block; 
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: black;
    width: 220px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    max-height: 300px;
    padding: 1rem;
  }

  /* Shows */
  .shows-grid { 
    columns: 1; 
  }

  /* Band */
  .grid.six { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .grid.three { 
    grid-template-columns: 1fr; 
  }

  /* Media */
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .play-overlay {
    opacity: 1;
  }

  .email-link {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  footer {
    padding: 2rem 1.5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 1.5rem;
  }

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

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

  .footer-links nav {
    align-items: center;
  }

  .partner-logos {
    align-items: center;
  }

  .partner-logos a:hover img {
    transform: scale(1.05);
  }

  .footer-links a:hover {
    transform: translateX(0);
  }
}