/* -----------------------------------
   RESET & BASIS
----------------------------------- */

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

body {
  font-family: "Inter", sans-serif;
  background: #f9fafc;
  color: #0a1a33;
  line-height: 1.6;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

a {
  color: #ff7b00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* -----------------------------------
   HEADER + NAVIGATIE
----------------------------------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #0a1a33;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: #ffb300;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.wave i {
  display: inline-block;
  width: 4px;
  height: 12px;
  background: #ffb300;
  margin-right: 2px;
  animation: wave 1s infinite ease-in-out;
}

.wave i:nth-child(2) { animation-delay: .2s; }
.wave i:nth-child(3) { animation-delay: .4s; }

@keyframes wave {
  0% { height: 6px; }
  50% { height: 16px; }
  100% { height: 6px; }
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffb300;
}

/* Hamburger (mobiel) */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: #0a1a33;
    border-top: 1px solid #1a2a44;
    padding: 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* -----------------------------------
   BUTTONS
----------------------------------- */

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-primary {
  background: #ff7b00;
  color: #fff;
}

.btn-primary:hover {
  background: #e56f00;
}

/* -----------------------------------
   CARDS
----------------------------------- */

.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* -----------------------------------
   COVER ART
----------------------------------- */

.song-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

/* -----------------------------------
   FORMULIEREN (BESTEL + CONTACT)
----------------------------------- */

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

form label {
  font-weight: 600;
  color: #0a1a33;
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

form textarea {
  min-height: 80px;
  resize: vertical;
}

form button {
  align-self: flex-start;
}

/* Twee kolommen layout */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------
   FOOTER
----------------------------------- */

footer {
  margin-top: 60px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

footer a {
  color: #0a1a33;
  margin: 0 10px;
}

footer a:hover {
  color: #ff7b00;
}
