/* BASIS RESET & VARIABELEN */

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #000000;
  --bg: #b500ff;
  --text: #fff;
  --accent: #000000;
  --font: 'Helvetica Neue', Arial, sans-serif;
}
body {
  background: var(--bg);
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
}

a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}

h2 {
  text-transform: uppercase;
}

/* NAVIGATIE */
header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: nowrap; /* voorkomt dat items onder elkaar komen */
  width: 90%;
}
.main-nav a.logo {
  display: inline-block;
  width: 80px; /* pas aan naar de gewenste breedte */
  height: auto;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
}
.main-nav a.logo img {
  width: 100%;
  height: auto;
  display: block;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
}
.main-nav a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  background: url('assets/bg.png') center/cover no-repeat;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Button */
.btn {
  background: var(--accent);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 2rem;
  max-width: 250px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: pulse 2s infinite ease-in-out;
}
.btn:hover {
  background: var(--bg);
}
.btn h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* LINE-UP */
.line-up {
  padding: 3rem 1rem;
  text-align: center;
}
.line-up h2 {
  font-size: 5rem;
  margin-bottom: 2rem;
}
.artists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.artist-card {
  background: #1e1e1e;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  width: 10%;
}
.artist-card img {
  width: 100%;
  border-radius: 6px;
}
.artist-card h3 {
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* TICKETS */
.tickets {
  padding: 3rem 1rem;
  text-align: center;
}
.tickets h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.tickets p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.faq {
  max-width: 60%;
  margin: 0 auto;
  margin-top: 4rem;
}

.faq-question {
  font-size: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}

.faq-question {
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  padding-top: 0;
  font-size: 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 0.5rem;
}

/* FOOTER */
footer {
  padding: 2rem 1rem;
  text-align: center;
  background: #000;
  color: var(--text);
}
.socials a {
  margin: 0 0.5rem;
}
.socials img {
  width: 28px;
  height: 28px;
}

/* ANIMATIES EN SPECIFIEKE ELEMENTEN */
.coverlogo {
  width: 25%;
  height: auto;
  display: block; /* voorkomt inline whitespace issues */
  margin: 0 auto;
}
.coverlogo img {
  width: 100%;
  height: auto;
  display: block;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.man {
  position: absolute;
  bottom: -140px;
  right: 120px;
  width: 30rem; /* pas aan naar de gewenste breedte */
  height: auto;
  animation: slideIn 2s ease-in-out;
}

span {
  color: #f49b1c;
}

/* MEDIA QUERIES */

/* Smartphones tot 768px */
@media (max-width: 768px) {

 
  /* Verberg desktop menu */
  .main-nav ul {
    display: none !important; /* samengevoegd, belangrijker */
  }

  .main-nav {
    display: none;
  }


  .main-nav a.logo {
    width: 65px;
    margin: 0 auto;
 
   
  }

  .hero {
    height: 100vh;
    width: 100%;
   
    text-align: center;
  }
  
  .btn {
    font-size: 1.2rem;
    padding: 0.5rem 0.5rem;
    max-width: 180px;
    margin: 2rem auto 0;
    display: block;
    z-index: 2;
  }

  

  .line-up,
  .tickets {
    padding: 2rem 1rem;
  }
  .line-up h2,
  .tickets h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .artists {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .artist-card h3 {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 1.3rem;
    padding: 0.75rem 1rem;
  }
  .faq-answer {
    font-size: 1 rem;
    padding: 0 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0.5rem 1rem 1rem;
  }

  .coverlogo  {
    width: 80%;
    margin: 0 auto;
    z-index: 2;
  }
  .man {
    width: 15rem;
    right: auto;
    left: 45%;
    bottom: -10%;
    z-index: 1;
    overflow: hidden;
  }

  footer {
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
    margin-top: 4rem;
    background: none;
    text-align: center;
  }
  .socials img {
    width: 24px;
    height: 24px;
  }
}


.sticky-socials {
  display: none; /* standaard verborgen op desktop */
}

@media (max-width: 768px) {
  .sticky-socials {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
  }

  .sticky-socials img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* wit maken op donkere bg */
    transition: transform 0.2s ease;
  }

  .sticky-socials img:hover {
    transform: scale(1.2);
  }
}
