/* Basisstijl voor JAM website */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
}

header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  color: #e91e63;
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63;
}

.hero {
  height: 100vh;
  background: url('media/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.6); /* donkere overlay voor leesbaarheid */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3rem;
  margin: 0.5rem 0;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

button {
  background-color: #e91e63;
  border: none;
  padding: 0.8rem 1.5rem;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c2185b;
}

section {
  padding: 4rem 2rem;
}

.gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  width: 150px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: #888;
}

/* Basisstijl voor JAM website */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
}

header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  color: #e91e63;
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63;
}



.prog {
  height: 100vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;

}

.prog h2 {
  font-size: 3rem;
  margin: 0.5rem 0;
}

.prog p {
  font-size: 1 rem;
  margin-bottom: 1.5rem;
}

button {
  background-color: #e91e63;
  border: none;
  padding: 0.8rem 1.5rem;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c2185b;
}

section {
  padding: 4rem 2rem;
}



footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: #888;
}


.events-section {
  background: #1a1a1a;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 4rem;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.events-section h2 {
  text-align: center;
  color: #e91e63;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.8rem;
}

.events-list li {
  display: flex;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.events-list li:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.7);
}

.event-date {
  background-color: #e91e63;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  user-select: none;
}

.event-details {
  padding: 1rem 1.5rem;
  flex-grow: 1;
  color: #ddd;
}

.event-details h3 {
  margin: 0 0 0.5rem 0;
  color: #f48fb1;
}

.event-details p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #bbb;
}

.gallery-section {
  background: #1a1a1a;
  padding: 3rem 2rem;
  /*border-radius: 12px;*/
  max-width: 100%;
  margin: 0 auto 4rem;
  /*box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);*/
}

.gallery-section h2 {
  text-align: center;
  color: #e91e63;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #222;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.7);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}


.contact-section {
  background: #1a1a1a;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 4rem;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.contact-section h2 {
  text-align: center;
  color: #e91e63;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.8rem;
}

.contact-list li {
  display: flex;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  align-items: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.contact-list li:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.7);
}

.contact-icon {
  background-color: #e91e63;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1.2rem 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  user-select: none;
}

.contact-info {
  padding: 1rem 1.5rem;
  color: #ddd;
}

.contact-info h3 {
  margin: 0 0 0.5rem 0;
  color: #f48fb1;
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
}

.contact-info a {
  color: #f48fb1;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #e91e63;
}