/* Band-Webseite CSS */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

/* Grundlegende Styles und Reset - Dunkle Version */
:root {
  /* Hauptfarbschema - Blau- und Rottöne */
  --primary-color: #0b57d0; /* Intensives, modernes Blau */
  --primary-light: #4c8bf5; /* Helleres, leuchtendes Blau */
  --primary-dark: #073590; /* Dunkles, sattes Blau */
  
  --secondary-color: #be0028; /* Kräftiges, tiefes Rot */
  --secondary-light: #e41e3f; /* Helleres, strahlendes Rot */
  --secondary-dark: #8c001d; /* Dunkles, tiefes Rot */
  
  /* Neutrale Töne - Dunkles Farbschema */
  --black: #000000; /* Tiefes Schwarz */
  --almost-black: #121212; /* Fast-Schwarz für Hintergründe */
  --dark-gray: #222222; /* Dunkelgrau */
  --mid-gray: #666666; /* Mittelgrau */
  --light-gray: #aaaaaa; /* Hellgrau */
  --almost-white: #f8f8f8; /* Fast-Weiß */
  --white: #ffffff; /* Reines Weiß */
  
  /* Funktionale Farben für dunkles Design */
  --bg-color: var(--almost-black); /* Dunkler Hintergrund */
  --text-color: var(--almost-white); /* Heller Text */
  --light-color: var(--almost-white);
  --dark-color: var(--almost-black);
  
  --font-main: 'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

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

/* Header-Bild - Allgemein */
.header-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(50%); /* Schwarz-Weiß-Effekt für dramatischeren Look */
}

/* Fallback für fehlende Header-Bilder */
.header-image:not([style*="background-image"]) {
  background-image: url('/images/band-header.jpg');
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Dunklerer Overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-overlay h1 {
  color: var(--white);
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Responsive Header-Bilder */
@media (max-width: 768px) {
  .header-image {
    height: 200px;
  }
  
  .header-overlay h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header-image {
    height: 150px;
  }
  
  .header-overlay h1 {
    font-size: 1.8rem;
  }
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: var(--black);
  padding: 20px 0;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.logo a {
  color: var(--white);
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.logo a:hover {
  text-decoration: none;
  color: var(--primary-light);
}

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

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-light);
  text-decoration: none;
}

/* Cool Menu Styles */
.cool-menu ul {
  display: flex;
  list-style: none;
}

.cool-menu ul li {
  margin-left: 30px;
  position: relative;
  overflow: hidden;
}

.cool-menu ul li a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.cool-menu ul li a span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.cool-menu ul li a:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.cool-menu ul li a:hover span,
.cool-menu ul li a.active span {
  transform: translateX(0);
}

.cool-menu ul li a.active {
  color: var(--primary-light);
}

/* Simple Responsive Navigation */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0;
  }
  
  .logo a {
    font-size: 20px;
    letter-spacing: 2px;
  }
  
  .cool-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .cool-menu ul li {
    margin: 5px 10px;
  }
  
  .cool-menu ul li a {
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 0;
  }
  
  .logo a {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .cool-menu ul {
    flex-direction: row;
    text-align: center;
    gap: 5px;
    flex-wrap: nowrap;
  }
  
  .cool-menu ul li {
    margin: 5px 0;
  }
  
  .cool-menu ul li a {
    font-size: 0.9rem;
    padding: 6px 10px;
    display: block;
  }
}

/* Burger-Menü Button */
#burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}

#burger-menu span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

#burger-menu.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#burger-menu.open span:nth-child(2) {
  opacity: 0;
}

#burger-menu.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  #burger-menu {
    display: flex;
  }
  
  nav.cool-menu ul {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--black);
    flex-direction: column;
    min-width: 180px;
    box-shadow: 0 8px 32px 0 #00000099;
    border-radius: 8px;
    padding: 18px 0 10px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1200;
    gap: 0;
  }
  
  nav.cool-menu ul.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  nav.cool-menu ul li {
    margin: 0 0 8px 0;
    text-align: right;
    padding: 0 24px;
  }
  
  nav.cool-menu ul li:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  #burger-menu {
    width: 34px;
    height: 34px;
  }
  
  nav.cool-menu ul {
    top: 60px;
    right: 10px;
    min-width: 140px;
    padding: 10px 0 6px 0;
  }
  
  nav.cool-menu ul li {
    padding: 0 12px;
  }
}

/* Main Content */
main {
  padding: 40px 0;
  min-height: 70vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 40px;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-light);
}

p {
  margin-bottom: 20px;
  color: var(--light-gray);
}

.content ul {
  margin-left: 40px;
  color: var(--light-gray);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0;
  margin-bottom: 40px;
  background: var(--black);
  border-top: 1px solid var(--primary-light);
  border-bottom: 1px solid var(--primary-light);
  color: var(--white);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(11, 87, 208, 0.15), rgba(190, 0, 40, 0.15));
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--light-gray);
  position: relative;
}

/* Featured Content Section */
.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.featured-content.single-column {
  grid-template-columns: 1fr;
}

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

.news-item, .show-item {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-gray);
}

.news-item:last-child, .show-item:last-child {
  border-bottom: none;
}

.date {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more, .details, .ticket-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s;
}

.ticket-button {
  border-color: var(--secondary-light);
  color: var(--secondary-light);
}

.read-more:hover, .details:hover {
  background-color: var(--primary-light);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-3px);
}

.ticket-button:hover {
  background-color: var(--secondary-light);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-3px);
}

/* Band Members */
.members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Tour Page */
.tour-dates {
  margin-top: 30px;
}

.tour-dates h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.tour-dates h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--primary-light);
}

.show-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 25px;
  margin-bottom: 20px;
  background-color: rgba(18, 18, 18, 0.6);
  border: 1px solid var(--dark-gray);
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.show-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.show-date {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
}

.past.show-item {
  opacity: 0.5;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-gray);
  color: var(--white);
  border-radius: 4px;
}

.newsletter-form input:focus {
  border-color: var(--primary-light);
  outline: none;
  box-shadow: 0 0 5px rgba(76, 139, 245, 0.2);
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: transparent;
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background-color: var(--primary-light);
  color: var(--black);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--mid-gray);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--dark-gray);
  margin-top: 60px;
}

footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid-gray);
}

/* Visitor Counter */
#visitor-counter {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: var(--black);
  border: 1px solid var(--primary-light);
  border-radius: 4px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 10px rgba(11, 87, 208, 0.2);
  z-index: 1000;
}

.counter-label {
  color: var(--primary-light);
  font-size: 0.7rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Courier New", monospace;
}

.counter-display {
  background-color: var(--black);
  color: var(--secondary-light);
  font-size: 1rem;
  padding: 2px 6px;
  border: 1px solid var(--secondary-light);
  min-width: 60px;
  text-align: right;
  letter-spacing: 1px;
  font-family: "Courier New", monospace;
}

@media (max-width: 768px) {
  #visitor-counter {
    bottom: 8px;
    right: 8px;
    padding: 4px 6px;
  }
  
  .counter-display {
    font-size: 0.9rem;
    min-width: 50px;
    padding: 1px 4px;
  }
  
  .counter-label {
    font-size: 0.6rem;
  }
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.gallery-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 32px 0 #ff00cc99;
}