@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 40px;
  background: #f5f5f5;
}

.demo-section {
  margin: 24px 0;
  padding: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 40px;
  background-color: #fff;
}

.event-popup-card {
  display: grid;
  grid-template-columns: 580px 1fr;
  align-items: center;
  gap: 24px;
}

.event-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

span {
  font-family: 'Source Sans 3', Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
h3 {
  color: rgb(225 129 32);
  font-family: 'Oswald', Sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

p {
  font-family: 'Source Sans 3', Sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

button {
  background-color: #fff;
  border: 1px solid rgb(225 129 32);
  width: fit-content;
  height: fit-content;
  padding: 12px 24px;
}

.event-popup-dialog {
  position: fixed !important;
  bottom: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* ← BEIDE tegelijk! */
  padding: 0;
  border: none;
  width: 100%;
  max-width: 1124px;
}

.event-popup-dialog::backdrop {
  background: #000000c2;
}

.popup-content {
  position: relative;
  padding: 40px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Mock AJAX voor demo */
.demo-success {
  display: none;
  color: #46b450;
  padding: 10px;
  background: #e8f5e8;
  border-radius: 4px;
  margin-top: 15px;
}

/* form */

h3.title-form {
  padding-bottom: 12px;
  font-size: 32px;
}

.popup-body span{
  font-weight: 400;
  font-size: 18px;
}

label {
  display: block;
  margin: 12px 0 4px;
  font-family: 'Source Sans 3', Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

input,
textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgb(225 129 32);
  padding: 15px 10px;
  outline: none;
  background: #f0f0f0;
}

.register-btn{
  padding: 12px 24px;
  margin-top: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}