@font-face {
  font-family: 'SH Pinscher';
  src: url('Fonts/SHPinscher-Regular.otf');
}

* {
  font-family: 'SH Pinscher', sans-serif;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: url('image/willyfond.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 80px;
}

.top-left-logo,
.top-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: clamp(200px, 25vw, 350px);
  opacity: 0.9;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.top-left-logo:hover,
.top-logo:hover {
  opacity: 1;
}

#wrap-video-bg {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#wrap-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  padding: 10px 20px;
}

#nav {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

#nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
  gap: 10px;
}

#nav li {
  display: flex;
  align-items: center;
  font-size: clamp(1.2em, 2vw, 1.8em);
  color: black;
}

#nav li:not(:last-child)::after {
  content: "★";
  color: black;
  margin: 0 10px;
}

#nav a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

#nav a:hover {
  color: yellow;
}

.postcards a {
  background-color: black;
  color: black;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.postcards a:hover {
  background-color: yellow;
}

ul {
  font-size: 1.1em;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.icon-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  z-index: 999;
  gap: 15px;
}

.icon-bar a {
  color: white;
  font-size: clamp(1em, 2vw, 1.5em);
  text-decoration: none;
  transition: color 0.3s ease;
}

.icon-bar a:hover {
  color: yellow;
}

.shows-dropdown {
  position: relative;
  cursor: default;
}

.shows-dropdown span {
  font-size: clamp(1.2em, 2vw, 1.8em);
  color: black;
  padding: 5px 10px;
}

.shows-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #FFFF00;
  padding: 15px 20px;
  z-index: 999;
  min-width: 250px;
  max-width: 400px;
}

.shows-dropdown:hover .shows-menu {
  display: block;
}

.show-item {
  margin-bottom: 12px;
}

.show-date {
  font-weight: bold;
  color: #FFFF00;
  font-size: 1.1em;
}

.show-details {
  color: #00FF00;
  font-size: 0.95em;
  line-height: 1.3;
}

.concerts {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: white;
  gap: 1.5rem;
  z-index: 10;
  position: relative;
}

.concert {
  background-color: black;
  border: 2px solid #FFFF00;
  padding: 1rem 1.5rem;
  max-width: 600px;
  width: 100%;
  transition: transform 0.3s ease;
}

.concert:hover {
  transform: scale(1.02);
}

.date {
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFFF00;
  margin-bottom: 0.3rem;
}

.info {
  font-size: 1rem;
  line-height: 1.4;
  color: #00FF00;
}

.event-name, .city, .country {
  color: #00FF00;
}

.video-section {
  padding: 2rem;
  color: black;
  text-align: center;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: black;
}

.video-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}

.video-scroll iframe {
  flex: 0 0 auto;
  width: 320px;
  height: 180px;
  border: 2px solid #FFFF00;
  border-radius: 0;
}

.bande-passante-top {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 998;
  background: linear-gradient(270deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
  background-size: 600% 600%;
  animation: raveGradient 10s ease infinite;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  padding: 0.7rem 0;
  text-align: center;
  text-shadow: 1px 1px 4px white;
  letter-spacing: 1px;
  box-shadow: 0px 0px 10px rgba(255,255,255,0.5);
}

.marquee-top {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-top 30s linear infinite;
}

@keyframes marquee-top {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

@keyframes raveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.audiotape-release, .bio-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.audiotape-container, .bio-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: black;
  border: 2px solid #FFFF00;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
}

.audiotape-image img, .bio-photo {
  width: 220px;
  height: auto;
  border: 2px solid #FFFF00;
}

.audiotape-text, .bio-content {
  color: white;
  font-size: 1.4rem;
  max-width: 400px;
}

.order-button, .language-switcher button {
  background: black;
  color: white;
  border: 2px solid #FFFF00;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.order-button:hover, .language-switcher button:hover {
  background: #444;
  transform: scale(1.05);
}

.presskit-buttons a {
  text-decoration: none;
  background: yellow;
  color: black;
  padding: 10px 15px;
  margin-right: 10px;
  font-weight: bold;
  border: 2px solid #000;
}

.presskit-buttons a:hover {
  background: white;
}

.soon-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
  border: 2px solid #FFFF00;
  text-align: center;
  letter-spacing: 2px;
  backdrop-filter: blur(4px);
  z-index: 10;
}
