/* ================================
   Global Styles
================================ */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
/* abstand oben rechts unten links */
  padding: 5px 20px 5px 5px; 
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  box-sizing: border-box;
}

/* Logo-Box bleibt sichtbar */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo-Bild */
.navbar .logo-img {
  height: 60px; /* max Höhe der Navbar */
  width: auto; 
  object-fit: contain;
}
/* Desktop-Logo größer */
@media (min-width: 1000px) {
  .navbar .logo-img {
    height: 80px; /* Desktop */
  }
}

/* Text rechts vom Logo ausblenden */
.navbar .logo span {
  display: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.navbar a {
  color: #0f0;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.2rem;
}
.navbar ul li a:hover,
.navbar a:hover {
  color: #ff1493 !important;
  text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493;
}


/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-text h1 {
  font-size: 4rem;
  background: linear-gradient(90deg, #ff0000, red, orange, yellow, green, cyan, blue, deeppink, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 55px #0f0;
}
.hero-text p {
  font-size: 1.5rem;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 350%;
  width: auto;
  height: auto;
  opacity: 0.9;
  z-index: -1;
}

/* Hochformat Mobile */
@media (max-width: 600px) and (orientation: portrait) {
  .hero-logo {
    max-height: 150vh;
    max-width: 150vw;
  }
}

/* Querformat Mobile */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-logo {
    max-height: 200%;
    max-width: 200%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background: linear-gradient(90deg, #0ff, #f0f, #ff0);
  color: black;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s;
}
.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #0f0;
}

/* Generic Sections */
.section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  /* KEIN BORDER HIER */
}

/* Gigs */
.gigs-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gig-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet) 1;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px #0f0;
  width: 250px;
}

/* Videos */
#videos h2 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  justify-items: center;
  text-align: center;
}
.video-wrapper {
  background: rgba(255,255,255,0.05);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet) 1;
  border-radius: 12px;
  box-shadow: 0 0 15px #0f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  max-width: 100%;
}
.video-wrapper video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.video-title {
  margin-top: 10px;
  font-size: 1rem;
  color: #0f0;
  text-align: center;
}

/* Shop */
.product-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.product-item {
  flex: 0 0 250px;
  background: rgba(255,255,255,0.05);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet) 1;
  border-radius: 12px;
  padding: 10px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-item video,
.product-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.product-item h3 {
  margin: 10px 0 5px;
  text-align: center;
  color: #0f0;
}

.product-item p {
  margin: 0 0 10px;
  text-align: center;
  color: #0f0;
}

.product-item label {
  display: block;
  margin-bottom: 10px;
  color: #0f0;
}

.product-item input {
  width: 60px;
  margin-left: 5px;
  padding: 3px;
  border-radius: 4px;
  border: none;
}

.product-item .btn {
  width: 100%;
  text-align: center;
}

.detail-btn {
  margin-top: 5px;
  width: 100%;
  text-align: center;
  background: #0f0;
  color: black;
  border-radius: 6px;
  padding: 6px 0;
  border: none;
  cursor: pointer;
}

/* ================================
   Modals
================================ */
.modal {
  display: none; /* unsichtbar beim Laden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* über allen Elementen */
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  background: #111;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  color: #fff;
  box-shadow: 0 0 20px #0f0;
  position: relative; /* für Close-Button */
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}
.modal .close:hover {
  color: #ff00ff;
}

/* ================================
   Karussell innerhalb Modal
================================ */
.modal .carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.modal .carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.modal .carousel img,
.modal .carousel video {
  max-height: 300px;
  border-radius: 10px;
  flex-shrink: 0;
  width: 100%;       /* nimmt volle Breite */
  object-fit: cover; /* Bild/Video schön zuschneiden */
}

/* Pfeile */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* ================================
   Warenkorb Emoji Button
================================ */
#cart-button {
  position: relative;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #0f0; /* Emoji grün passend zum Theme */
  display: flex;
  align-items: center;
  gap: 5px;
}

#cart-button span#cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  background: transparent !important; /* kein Hintergrund */
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 14px;
  font-weight: bold;
  color: #0f0 !important; /* zwingt grün */
}

#cart-container {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1100; /* über Navbar */
}

/* Forms */
form input, form textarea {
  display: block;
  width: 100%;
  margin: 10px auto;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
}