/* --- LATTAQUE Website CSS --- */
:root {
  --main-color: #1d1a18; 
  --heading-color: #eee; /* off white */
  --accent-color: #ee711c;  /* oranje */
  --hover-color: #4a6d1b; /* groen */
  --highlight-bg: #a63729;
  --text-color: #f8e8e2; /* heel licht zalm */
  --bg-overlay: rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: url('images/background.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-color);
}

header {
  background: url('images/header-background.png') center center / cover no-repeat;
  text-align: center;
  height: 40vh;
  min-height: 250px;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

header img {
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
  margin: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
}

nav {
  background: var(--highlight-bg);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  height: 48px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  font-size: 1.1rem;
}

.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdown > a::after {
  content: ' ▾';
  font-size: 0.9rem;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.dropdown > a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  background-color: transparent;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background-color: var(--main-color);
  padding: 0;
  min-width: 160px;
  z-index: 999;
}

.dropdown-content a {
  padding-left: 2rem;
  display: flex;
  align-items: center;
  height: 48px;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a:hover {
  background-color: var(--hover-color);
}

.dropdown:hover .dropdown-content {
  display: flex;
}

nav a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  background-color: transparent;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: var(--hover-color);
  color: white;
}

main {
  background-color: rgba(0, 0, 0, 0.25);
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;
}

main p, main b {
  margin-bottom: 1rem;
  line-height: 1.7;
}

blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-color);
  color: var(--text-color);
}

h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #efb391;
}

footer {
  text-align: center;
  padding: 2rem;
  background: var(--main-color);
  color: var(--text-color);
  font-size: 0.9rem;
}

/* setlist */

.setlist {
  background-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(0, 0, 0, 0.25);
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.setlist .artist {
  margin-bottom: 2rem;
}

.setlist h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #572667;
  padding-bottom: 0.25rem;
}

.setlist ul {
  list-style: none;
  padding-left: 1rem;
}

.setlist ul li {
  margin: 0.2rem 0;
  padding-left: 1em;
  position: relative;
}

.setlist ul li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: #0397ca;
}
.setlist-dynamic {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.setlist-dynamic .artist {
  margin-bottom: 1.5rem;
}

.setlist-dynamic h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--accent-color);
}

.setlist-dynamic ul {
  list-style: none;
  padding-left: 1.5rem;
}

.setlist-dynamic li {
  padding: 0.25rem 0;
  position: relative;
}

.setlist-dynamic li::before {
  content: "♪";
  position: absolute;
  left: -1rem;
  color: var(--accent-color);

}
.setlist-dynamic {
  column-count: 2;
  column-gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(1, 1, 1, 0.45);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.setlist-dynamic .artist {
  break-inside: avoid;
  margin-bottom: 2rem;
}

/* gigs tabel */

.gigs-table {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  border-collapse: collapse;
  background-color: rgba(1,1,1,0.5);
  box-shadow: 0 0 10px var(--highlight-bg);
  border-radius: 8px;
  overflow: hidden;
}

.gigs-table th, .gigs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 0.1px solid #fff;
}

.gigs-table th {
  background-color: var(--highlight-bg);
  color: #eee;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.gigs-table td a {
  color: #ee711c;
  text-decoration: underline;
}

.gigs-table td a:hover {
  text-decoration: underline;
}
.add-to-calendar {
  padding: 0.6rem 1.2rem; /* boven/onder, links/rechts */
  background-color: #4a6d1b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.add-to-calendar:hover {
  background-color: #3c5a15;
}

/* Foto's */

.photo-gallery {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.photo-gallery h2 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  color: var(--accent-color);
  border-bottom: 2px solid var(--highlight-bg);
  padding-bottom: 0.3rem;
}

.photo-gallery a {
  display: inline-block;
  margin: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px var(--bg-overlay);
}

.photo-gallery a:hover img {
  transform: scale(1.05);
  border-color: var(--hover-color);
}

.photo-gallery img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--main-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: block;
}

/* Foto's */

.photo-bio {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.photo-bio h2 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  color: var(--accent-color);
  border-bottom: 2px solid var(--highlight-bg);
  padding-bottom: 0.3rem;
}

.photo-bio a {
  display: inline-block;
  margin: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px var(--bg-overlay);
}

.photo-bio a:hover img {
  transform: scale(1.05);
  border-color: var(--hover-color);
}

.photo-bio img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--main-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: block;
}

/* Lightbox2 tweaks (optioneel) */
.lightboxOverlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.lb-data .lb-caption {
  color: var(--text-color) !important;
}

.lb-data .lb-number {
  color: var(--hover-color) !important;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
  filter: invert(100%) !important;
}

/* Video */

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.video-card {
  background-color: var(--main-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px var(--bg-overlay);
  border: 1px solid var(--highlight-bg);
  display: flex;
  flex-direction: column;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 verhouding */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card h3 {
  margin: 0;
  padding: 0.75rem 1rem;
  background-color: var(--highlight-bg);
  color: var(--text-color);
  font-size: 1rem;
  text-align: center;
}

/* contact */

.contact-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  color: var(--text-color);
}

.contact-page h1 {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--accent-color);
  color: 
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-links {
  margin-top: 2rem;
}

.contact-links h2 {
  color: var(--highlight-bg);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-links ul {
  list-style: none;
  padding: 0;
}

.contact-links li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.contact-links a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Locaties */
.locations-page {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  color: var(--text-color);
}

.locations-page h1 {
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 2rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.location-group h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  border-bottom: 2px solid var(--highlight-bg);
  padding-bottom: 0.2rem;
}

.location-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-group li {
  margin-bottom: 0.4rem;
}

.location-group a {
  color: var(--text-color);
  text-decoration: none;
}

.location-group a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

/* bandlid page */
.bandlid-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.video-card {
  width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card iframe {
  width: 100%;
  height: 170px;
  border: none;
  border-radius: 6px;
}

.video-card p {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color);
}

.bio-sections h2 {
  color: var(--accent-color);
  margin-top: 2rem;
}

.bio-sections p {
  line-height: 1.6;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .gigs-table, .gigs-table thead, .gigs-table tbody, .gigs-table th, .gigs-table td, .gigs-table tr {
    display: block;
  }

  .gigs-table thead {
    display: none;
  }

  .gigs-table td {
    padding: 0.8rem;
    border: none;
    position: relative;
  }

  .gigs-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
  }

  .gigs-table tr {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
  }
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin: 0 0.5rem;
  color: var(--text-color);
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/* Contact */
.contact-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  color: var(--text-color);
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.contact-info a {
  color: efb391;
  text-decoration: underline;
}

.contact-info a:hover {
  text-decoration: none;
  color: var(--hightlight-bg);
}

.contact-links {
  margin-top: 2rem;
}

.contact-links h2 {
  color: var(--highlight-bg);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-links ul {
  list-style: none;
  padding: 0;
}

.contact-links li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.contact-links a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .setlist-dynamic {
  	grid-template-columns: 1fr; /* enkel kolom op mobiel */
    column-count: 1;
  }
  .menu-toggle {
    display: block;
    background: var(--highlight-bg);
    color: var(--text-color);
    border: none;
    font-size: 2rem;
    padding: 0;
    width: 100%;
    text-align: center;
    height: 44px;
    line-height: 44px;
  }

  nav {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

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

  .nav-links a,
  .dropdown > a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 1rem;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    background-color: var(--highlight-bg);
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .dropdown:hover .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    padding-left: 2rem;
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}