* {
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  background: #efe7dc;
  font-family: 'Inter', sans-serif;

}

h1,
h2,
h3,
.heroTitle,
.sectionTitle,
.pageHeroLeft h1,
.agendaEventContent h3,
.footerBrand h2 {
  font-family: 'Cinzel', serif;
}

p,
span,
a,
button,
input,
textarea,
label {
  font-family: 'Inter', sans-serif;
}

.site {
  width: 100%;
  min-height: 100vh;
  background: #ddd4c6;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.newsCard,
.newsContent,
.newsText,
.newsCard p,
.newsCard span,
.newsCard h1,
.newsCard h2,
.newsCard h3 {
  text-align: left;
}
.newsContent {
  align-items: flex-start;
}

.newsText {
  width: 100%;
  line-height: 1.9;
}



/* Navigatie */
.topbar {
  width: 100%;
  height: 80px;
  background: #8b001c;
  color: #efe7dc;

  padding: 0 clamp(18px, 4vw, 40px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.logo{
    font-size: 22px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  font-weight: 800;
  font-size: clamp(13px, 1vw, 18px);
}

.nav a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.activeNav {
  color: #d4a72c !important;
}

/* Buttons */
.loginBtn,
.primaryBtn,
.logoutBtn {
  background: #d4a72c;
  color: white;
  border: none;
  padding: 4px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 200;
}

.primaryBtn {
  background: #8b001c;
}

.outlineBtn {
  background: transparent;
  color: #8b001c;
  border: 2px solid #8b001c;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  margin-top: 0;
  display: inline-block;
  text-decoration: none;
}

.deleteBtn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b00020;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 800;
}

.deleteBtn:hover {
  background: #7a0019;
}

/* Hero */
.hero {
  width: 100%;
  min-height: calc(100vh - 96px - 120px);
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
}

.heroText {
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.eyebrow,
.sectionLabel {
  color: #c79a1b;
  letter-spacing: clamp(2px, 0.45vw, 6px);
  font-weight: 900;
  font-size: clamp(13px, 1.2vw, 18px);
}

.hero h1 {
  color: #7a0019;
  font-size: clamp(62px, 5vw, 42px);
  line-height: 1.08;
  margin: 24px 0 28px;
}

.intro {
  color: #444;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.7;
  max-width: 760px;
}

.heroButtons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
}

.heroImage {
  min-height: 420px;
}

.heroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Quick links */
.quickLinks {
  width: 100%;
  background: #8b001c;
  color: white;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.infoCard {
  padding: clamp(22px, 2.5vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.infoCard h2 {
  color: #d4a72c;
  margin: 0 0 12px;
  font-size: clamp(19px, 1.5vw, 28px);
}

.infoCard p {
  margin: 0;
  font-weight: 700;
  text-decoration: underline;
}

/* Content */
.contentGrid {
  background: #efe7dc;
  padding: 80px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.contentGrid h2 {
  color: #7a0019;
  font-size: clamp(42px, 4vw, 42px);
  line-height: 2.1;
}

.contentGrid p {
    color:#222;
    font-size:26px;
    line-height:1.0;
    max-width:900px;
}
.contentGrid h1 {
  color: #020202;
  line-height: 0.9;
  font-size: 26px;
}

.pageSection {
  flex: 1;
  padding: 110px 5vw 160px;
  background: #d1c3b0;
}

.pageSection h1 {
  color: #7a0019;
  font-size: clamp(44px, 6vw, 72px);
  margin-top: 0;
  margin-bottom: 80px;
}

/* Nieuws */
.newsCard{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:30px;
    align-items:center;
}

.newsCard img{
    height:250px;
    width:100%;
    object-fit:cover;
}

.newsCardContent {
  padding: 30px;
}

.newsCardContent h2 {
  color: #7a0019;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.1;
}

.newsCardContent p {
  color: #444;
  line-height: 1.8;
}

.newsDate {
  color: #c79a1b !important;
  font-weight: 800;
}

.detailDate {
  display: block;

  color: #c9a227;
  font-weight: 800;
  letter-spacing: 8px;

  text-transform: uppercase;

  margin-bottom: 20px;

  text-align: center;
}

.detailImageGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.detailImageGrid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.detailText {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.detailText p {
  margin-bottom: 28px;
  line-height: 2;
  font-size: 20px;
  color: #444;
  text-align: left;
}

/* Agenda */
.agendaPreviewList,
.agendaPageList {
  display: grid;
  gap: 22px;
}

.agendaPageList {
  margin-top: 20px;
}

.agendaCard {
  background: white;
  border-left: 8px solid #7a0019;
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 15px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.agendaCard h3 {
  color: #7a0019;
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 800;
}

.agendaCard span {
  color: #555;
  font-size: 18px;
}

.agendaInfo p {
  margin: 8px 0;
  color: #444;
  font-size: 17px;
  line-height: 1.5;
}

.agendaInfo strong {
  color: #d4a72c;
}

/* Footer */
.footer {
  background: #8b001c;
  color: white;
  padding-top: 70px;
  margin-top: auto;
}

.footerGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 5vw 70px;
}

.footer h2 {
  font-size: 46px;
  line-height: 1.1;
}

.footer h3 {
  color: #d4a72c;
}

.footer p {
  cursor: pointer;
}

.footerBottom {
border-top: 2px solid #d4a72c;
  text-align: center;
  padding: 30px;
}
.footer a,
.footerLinks a,
.footerColumn a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover,
.footerLinks a:hover,
.footerColumn a:hover {
    color: #d4af37;
}
.siteCredits{
    margin-top:8px;
    font-size:14px;
    color:#d4af37;
    opacity:.9;
}

.siteCredits a{
    color:#d4af37;
    text-decoration:none;
}

/* Login */
.loginOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.loginBox {
  background: white;
  width: min(90%, 430px);
  padding: 38px;
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.loginBox h2 {
  color: #7a0019;
  font-size: 30px;
  margin: 0 0 28px;
}

.loginBox input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 2px solid #ddd3cd;
  font-size: 17px;
  color: #222;
}

.loginBox input:focus {
  outline: none;
  border-color: #8b001c;
  box-shadow: 0 0 0 4px rgba(139, 0, 28, 0.12);
}

.loginBox .primaryBtn,
.loginBox .outlineBtn {
  width: 100%;
  height: 56px;
  margin-top: 10px;
  font-size: 18px;
  border-radius: 14px;
}
.dropdown{
    position:relative;
    display:inline-block;
}

.dropdownContent{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    min-width:240px;

    background:#ffffff;
    border-top:4px solid #9b001c;

    border-radius:12px;
    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    z-index:9999;
}

.dropdownContent::before{
    content:'';
    position:absolute;
    top:-10px;
    left:30px;

    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:10px solid #ffffff;
}

.dropdownContent a{
    display:block;
    padding:16px 20px;

    font-weight:700;
    font-size:20px;

    color:#222;
    text-decoration:none;

    transition:all .2s ease;
}

.dropdownContent a:not(:last-child){
    border-bottom:1px solid #ececec;
}

.dropdownContent a:hover{
    background:#9b001c;
    color:#f5d742;
    padding-left:28px;
}

.dropdownBtn{
    background:none;
    border:none;
    color:white;
    font:inherit;
    font-weight:800;
    text-transform:uppercase;
    cursor:pointer;
    padding:0;
}

.dropdownBtn:hover,
.dropdown.active .dropdownBtn{
    color:#f5d742;
}
.dropdownContent{
    display:none;
}

.dropdown.active .dropdownContent{
    display:block;
}

/* Admin layout */
.currentImagePreview img{
    width:200px;
    height:120px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #ddd;
    display:block;
}

.currentImagePreview span{
    display:block;
    margin-top:5px;
    font-size:12px;
    color:#666;
}

.adminLayout {
  min-height: 100vh;
  display: flex;
  font-family: Arial, sans-serif;
}

.adminSidebar {
  width: 280px;
  background: #7a0019;
  color: white;
  padding: 30px;
  flex-shrink: 0;
}

.sidebarBtn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  margin-bottom: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

.logoutBtn {
  width: 100%;
  margin-top: 40px;
}

.adminMain {
  flex: 1;
  background: #efe7dc;
  padding: clamp(24px, 4vw, 60px);
}

.adminMain h1 {
  color: #7a0019;
  font-size: 48px;
  margin: 0 0 30px;
}

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

.adminCard,
.adminPanel {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.adminCard {
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adminCard h3 {
  color: #666;
  margin: 0 0 10px;
  font-size: 20px;
}

.adminCard strong {
  color: #7a0019;
  font-size: clamp(36px, 4vw, 58px);
  display: block;
  line-height: 1;
}

.adminPanel h2 {
  color: #7a0019;
  font-size: 30px;
  margin-bottom: 25px;
}

.adminPanel textarea,
.adminPanel input,
.memberManagerBox select {
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  border-radius: 10px;
  border: 2px solid #c9c1bb;
  font-size: 16px;
  color: #222;
  background: white;
}

.adminPanel textarea {
  min-height: 220px;
}

.adminPanel input::placeholder,
.adminPanel textarea::placeholder {
  color: #777;
}

.membersGroupCard{
    background:#f5efe7 !important;

    border-left:6px solid #98001a !important;
    border-top:1px solid #98001a !important;
    border-right:1px solid #98001a !important;
    border-bottom:1px solid #98001a !important;

    border-radius:24px !important;

    padding:32px !important;

    box-shadow:0 10px 25px rgba(0,0,0,.08) !important;
}

/* Datum en tijd inputs */
.dateInput,
.timeInput {
  color: #222 !important;
  background: white;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.dateInput::-webkit-calendar-picker-indicator,
.timeInput::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.8;
  padding: 4px;
}

.dateInput:focus,
.timeInput:focus {
  outline: none;
  border-color: #8b001c;
  box-shadow: 0 0 0 3px rgba(139, 0, 28, 0.15);
}

/* Admin lijst */
.adminList {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.adminListItem {
  padding: 16px;
  border-radius: 14px;
  background: #efe7dc;
}

.adminListItem span {
  display: block;
  color: #555;
  margin-top: 6px;
}

.agendaAdminItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #efe7dc;
  border: 2px solid #e0d8d2;
}

.agendaAdminItem strong {
  color: #7a0019;
  font-size: 20px;
}

.agendaAdminItem span {
  color: #333;
  font-size: 16px;
}

/* Upload afbeeldingen */
.dropZone {
  border: 3px dashed #8b001c;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  background: #efe7dc;
  margin: 15px 0;
}

.dropZone p {
  color: #7a0019;
  font-weight: 800;
}

.imagePreviewGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.previewImageWrap img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}

.previewImageWrap button {
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  background: #8b001c;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Leden beheren */
.usersGrid {
  display: grid;
  gap: 25px;
}


.memberItem span {
  color: #222;
  font-weight: 700;
}

.memberLayout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: start;
}

.memberSidePanel {
  justify-self: end;
  width: 280px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.memberSidePanel h4 {
  margin-top: 0;
  color: #7a0019;
  font-size: 22px;
  text-align: center;
}

.memberSidePanel input {
  width: 100%;
  margin: 12px 0;
}

.memberSidePanel button {
  width: 100%;
}

.groupHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.groupHeader h3 {
  margin: 0;
  color: #7a0019;
  font-size: 28px;
}

.memberManagerBox {
  display: grid;
  grid-template-columns: 1fr 260px auto;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .heroImage {
    min-height: 360px;
    order: -1;
  }

  .quickLinks {
    grid-template-columns: repeat(2, 1fr);
  }

  .contentGrid,
  .footerGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .memberLayout,
  .memberManagerBox {
    grid-template-columns: 1fr;
  }

  .memberSidePanel {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .topbar {
    padding: 16px;
  }

  .logo {
    white-space: normal;
  }

  .nav {
    display: none;
  }

  .loginBtn {
    padding: 12px 18px;
  }

  .heroText {
    text-align: center;
  }

  .quickLinks {
    grid-template-columns: 1fr;
  }

  .adminLayout {
    flex-direction: column;
  }

  .adminSidebar {
    width: 100%;
  }

  .newsCard img {
    height: 260px;
  }
}


.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}

.contactCard,
.mapCard {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.contactCard h2 {
  color: #7a0019;
}

.contactCard p {
  font-size: 18px;
  color: #444;
}

.mapCard iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .contactGrid {
    grid-template-columns: 1fr;
  }
}
.contactPage h1 {
  text-align: center;
}

.contactCard {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactInfo {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

.contactInfo p {
  background: #efe7dc;
  padding: 16px 18px;
  border-radius: 14px;
  margin: 0;
  color: #333;
  font-size: 18px;
}

.contactInfo span {
  display: block;
  color: #d4a72c;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.mapCard iframe {
  height: 420px;
}

.adminPanel label {
  display: block;
  color: #7a0019;
  font-weight: 800;
  margin-top: 18px;
  margin-bottom: 4px;
}
.contactHero {
  min-height: 360px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1600&auto=format&fit=crop");

  background-size: cover;
  background-position: center;

  color: white;
  display: flex;
  align-items: center;

  padding: 70px 10vw;
}

.contactHero div {
  max-width: 1200px;
}

.contactHero p {
  color: #d4a72c;
  letter-spacing: 6px;
  font-weight: 900;
  text-align: left;
}

.contactHero h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
  margin: 20px 0;
  text-transform: uppercase;
  text-align: left;
}

.contactHero span {
  display: block;
  max-width: 800px;
  font-size: 24px;
  line-height: 1.6;
  text-align: left;
}

.contactPageNew {
  padding: 90px 7vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  background: #efe7dc;
}

.contactFormCard,
.contactDetailsCard {
  border-radius: 30px;
  padding: clamp(30px, 4vw, 55px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contactFormCard {
  background: white;
}

.contactDetailsCard {
  background: #8b001c;
  color: white;
}

.contactFormCard h2,
.contactDetailsCard h2 {
  font-size: clamp(38px, 4vw, 58px);
  color: #7a0019;
  margin-top: 0;
  text-transform: uppercase;
}

.contactDetailsCard h2 {
  color: white;
}

.contactFormCard input,
.contactFormCard textarea {
  width: 100%;
  border: none;
  background: #efe7dc;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 17px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.contactFormCard textarea {
  min-height: 220px;
  resize: vertical;
}

.contactFormCard button {
  width: 100%;
}

.contactBlock {
  margin: 30px 0;
}

.contactBlock h3 {
  color: #d4a72c;
  margin-bottom: 12px;
}

.contactBlock p {
  margin: 8px 0;
  font-size: 18px;
}

.contactDetailsCard iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 18px;
  margin-top: 25px;
}

@media (max-width: 950px) {
  .contactPageNew {
    grid-template-columns: 1fr;
  }
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  border: 2px solid #7a0019;
  background: #efe7dc;
  padding: 22px 24px;
  border-radius: 16px;
  font-size: 18px;
  color: #333;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: 0.2s;
}

.contactForm input:focus,
.contactForm textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139,0,28,0.15);
}

.contactForm textarea {
  min-height: 220px;
  resize: vertical;
}

.contactForm button {
  width: 100%;
  height: 64px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 800;
}


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

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.logo h1 {
  color: white;
  font-size: 24px;
  line-height: 1;
  margin: 0;
}

.galleryPage {
  padding: 80px 7vw;
}

.galleryGrid {
  columns: 4 280px;
  column-gap: 18px;
}

.galleryItem {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
  break-inside: avoid;
  position: relative;
}

.galleryItem img {
  width: 100%;
  display: block;
  border-radius: 22px;
  transition: 0.35s;
  cursor: pointer;
}

.galleryItem:hover img {
  transform: scale(1.04);
}

.adminGallery {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.adminImageCard {
  position: relative;
}

.adminImageCard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.adminImageCard button {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 34px;
  height: 34px;

  border: none;
  border-radius: 50%;

  background: #8b001c;
  color: white;
  cursor: pointer;
}
.pageHero {
  text-align: center;
  margin-bottom: 45px;
}

.pageHero p {
  color: #c79a1b;
  letter-spacing: 6px;
  font-weight: 900;
}

.pageHero h1 {
  color: #7a0019;
  font-size: clamp(48px, 6vw, 84px);
  margin: 10px 0;
}

.galleryPage {
  padding: 90px 7vw;
  background: #efe7dc;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.galleryItem {
  position: relative;
  height: 260px;

  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
  cursor: pointer;
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}

@media (max-width: 1100px) {
  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .galleryGrid {
    grid-template-columns: 1fr;
  }
}

.galleryItem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15),
    transparent
  );
}

.galleryItem:hover img {
  transform: scale(1.06);
}

.galleryItem span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  color: white;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.adminImageCard span {
  display: block;
  margin-top: 8px;
  color: #7a0019;
  font-weight: 800;
}

.galleryText {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
}

.galleryText h2 {
  color: white;
  font-size: 34px;
  margin: 0;
  text-transform: uppercase;
}

.galleryText p {
  color: #d4a72c;
  font-weight: 900;
  margin: 8px 0 0;
}

.galleryFilters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.galleryFilters button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid #8b001c;
  background: white;
  color: #8b001c;
  font-weight: 800;
  cursor: pointer;
}

.galleryFilters .filterActive {
  background: #8b001c;
  color: white;
}

.albumTitle {
  color: #7a0019;
  font-size: 44px;
  margin: 35px 0;
}

.galleryItem {
  cursor: pointer;
}

.agendaEventCard {
  background: white;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  gap: 36px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  margin-bottom: 28px;
}

.agendaDateBox {
  width: 120px;
  height: 120px;
  background: #8b001c;
  color: white;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 18px 35px rgba(139,0,28,0.25);
  flex-shrink: 0;
}

.agendaDateBox strong {
  font-size: 32px;
}

.agendaDateBox span {
  color: #d4a72c;
  font-weight: 900;
  letter-spacing: 2px;
}

.agendaTag {
  display: inline-block;
  background: #f0dca4;
  color: #8b001c;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.agendaEventContent h3 {
  color: #7a0019;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.agendaEventContent p {
  color: #555;
  font-size: 18px;
}

.agendaMeta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-weight: 800;
  color: #333;
}
.agendaEventContent {
  width: 100%;
  text-align: left;
}

.agendaEventContent h3 {
  color: #7a0019;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.agendaEventContent p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.agendaMeta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-weight: 800;
  color: #333;
  justify-content: flex-start;
}

.agendaPreviewList .agendaEventCard {
  padding: 24px;
  gap: 20px;
  align-items: flex-start;
}

.agendaPreviewList .agendaDateBox {
  width: 90px;
  height: 90px;
  border-radius: 18px;
}

.agendaPreviewList .agendaDateBox strong {
  font-size: 26px;
}

.agendaPreviewList .agendaDateBox span {
  font-size: 16px;
}

.agendaPreviewList .agendaEventContent h3 {
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.agendaPreviewList .agendaEventContent p {
  font-size: 17px;
}

.agendaPreviewList .agendaMeta {
  gap: 18px;
}

.agendaPageList .agendaEventContent h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
}

.agendaDateBox strong,
.agendaDateBox span {
  width: 100%;
  text-align: center;
}

.agendaDateBox {
  width: 120px;
  height: 120px;

  background: #8b001c;
  color: white;

  border-radius: 22px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;
}

.pageHeroLeft {
  max-width: 360px;
  margin-bottom: 70px;
}

.pageHeroLeft p {
  color: #c9a227;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pageHeroLeft h1 {
  color: #7a0019;
  font-size: clamp(64px, 8vw, 20px);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.pageHeroLeft .goldLine {
  width: 120px;
  height: 4px;
  background: #c9a227;
  border-radius: 999px;
  margin: 34px 0;
}

.pageHeroLeft span {
  display: block;
  color: #444;
  font-size: 24px;
  line-height: 0.7;
  max-width: 760px;
}

.pageHeroLeft {
  max-width: 760px;
  margin-bottom: 70px;

  text-align: left;
  align-items: flex-start;
}


@media (max-width: 700px) {
  .agendaEventCard {
    flex-direction: column;
    align-items: flex-start;
  }
}

.agendaAdminPanel select {
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  border-radius: 10px;
  border: 2px solid #c9c1bb;
  font-size: 16px;
  color: #222;
  background: white;
}

.agendaFormGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.agendaDescriptionField {
  grid-column: 1 / -1;
}

.agendaDescriptionField textarea {
  min-height: 140px;
}

@media (max-width: 800px) {
  .agendaFormGrid {
    grid-template-columns: 1fr;
  }
}

.footerBrand {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.footerBrand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}
.footerBrand p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-top: 12px;
}
.footerBrand h1 {
  color: rgba(255,255,255,0.8);
  line-height: 0.9;
  margin-top: 1px;
}

.footerBrand h2 {
  font-family: 'Cinzel', serif;
  color: white;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.newsDetailText {
  text-align: left !important;
  line-height: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.newsDetailText p {
  text-align: left !important;
}

.detailImageGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 40px 0;
}

.detailImageGrid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 15, 15, 0.12);
}

.detailText{
    color:#222;
    font-size:22px;
    line-height:1.8;
    max-width:900px;
}

.detailText p {
  margin-bottom: 28px;
  line-height: 2;
  font-size: 20px;
  
  
}

.newsGalleryGrid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 24px;

  margin: 50px 0;
}

.newsGalleryItem {
  overflow: hidden;

  border-radius: 24px;

  background: white;

  box-shadow: 0 16px 40px rgba(221, 11, 11, 0.1);

  transition: 0.3s ease;
}

.newsGalleryItem:hover {
  transform: translateY(-6px);
}


.newsGalleryItem img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.newsGalleryItem:hover img {
  transform: scale(1.05);
}
.joinPage {
  background: #efe7dc;
  padding: 90px 7vw;
}

.joinGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 50px;
}

.joinInfoCard,
.joinForm {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.joinInfoCard h2 {
  color: #7a0019;
  font-size: 36px;
  margin-top: 0;
}

.joinInfoCard p {
  font-size: 19px;
  line-height: 1.8;
  color: #141414;
  text-align: left !important;
}

.joinForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #141414;
}

.joinForm input,
.joinForm textarea {
  width: 100%;
  border: 2px solid #d8cfc6;
  background: #efe7dc;
  padding: 20px 22px;
  border-radius: 16px;
  font-size: 17px;
}

.joinForm textarea {
  min-height: 180px;
  resize: vertical;
}

.joinForm input:focus,
.joinForm textarea:focus {
  outline: none;
  border-color: #8b001c;
}

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

/* ===== ADMIN DASHBOARD ===== */

.adminLayout{
    min-height:100vh;
    display:flex;
    background:#f6f4f1;
}

.adminSidebar{
    width:260px;
    min-width:260px;
    background:#8b001c;
    color:#fff;
    padding:30px 20px;
    box-sizing:border-box;
}

.adminSidebar h2{
    margin:0 0 20px;
    font-size:36px;
    color:white;
}

.sidebarBtn{
    display:block;
    width:100%;
    padding:16px;
    margin-bottom:12px;
    color:white;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.2);
    border-radius:12px;
    font-weight:700;
    box-sizing:border-box;
}

.sidebarBtn:hover{
    background:rgba(255,255,255,.08);
}

.logoutBtn{
    display:block;
    width:100%;
    margin-top:40px;
    text-align:center;
    background:#d4a72c;
    color:white;
    padding:14px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    box-sizing:border-box;
}

.adminMain{
    flex:1;
    padding:50px;
    background:#f6f4f1;
}

.adminCards{
    display:grid;
    grid-template-columns:repeat(4,minmax(180px,1fr));
    gap:24px;
}

.adminCard{
    background:white;
    border-radius:16px;
    padding:30px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.adminCard h3{
    margin:0;
    color:#666;
    font-size:20px;
}

.adminCard strong{
    display:block;
    margin-top:12px;
    font-size:56px;
    color:#8b001c;
}

.adminPanel{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.adminList{
    display:grid;
    gap:14px;
}

.adminListItem{
    background:#efe7dc;
    padding:16px;
    border-radius:12px;
}

@media(max-width:900px){

    .adminLayout{
        flex-direction:column;
    }

    .adminSidebar{
        width:100%;
        min-width:100%;
    }

    .adminCards{
        grid-template-columns:1fr;
    }

    .adminMain{
        padding:20px;
    }
}

.joinPage .pageHeroLeft span {
  line-height: 1.2;
}

.joinForm .primaryBtn {
  padding: 14px 24px;
  font-weight: 800;
}

.messageHeader{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.adminListItem p{
    margin:10px 0;
    color:#222;
    line-height:1.6;
}

.adminListItem strong{
    color:#7a0019;
}

.badge{
    background:#d60000;
    color:#fff;
    border-radius:50%;
    min-width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    margin-left:8px;
}

.logoWrap{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
}

.siteLogo{
    width:46px !important;
    height:46px !important;
    object-fit:contain !important;
}

.logoWrap .logo{
    font-size:22px !important;
    font-weight:500 !important;
    line-height:0.95 !important;
    letter-spacing:-0.5px !important;
    color:white !important;
}

.pageHeroBanner{
    min-height:420px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:80px 8%;
    color:white;
    position:relative;
}

.pageHeroBanner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.pageHeroBanner > div{
    position:relative;
    z-index:2;
    max-width:800px;
}

.pageHeroBanner p{
    color:#d4a72c;
    font-weight:800;
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.pageHeroBanner h1{
    font-size:clamp(48px,6vw,90px);
    line-height:.95;
    margin-bottom:25px;
    color:white;
}

.pageHeroBanner span{
    font-size:24px;
    line-height:1.6;
    color:white;
}

.settingsDivider{
    border-top:2px solid #ddd;
    margin:40px 0 25px;
}

.settingsTitle{
    color:#8b001c;
    font-size:26px;
    margin-bottom:20px;
    font-weight:800;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
}
.settingsHr{
    border:none;
    height:3px;
    background:#8b001c;
    margin:40px 0;
}

.settingsMiniHr{
    border:none;
    height:2px;
    background:#8b001c;
    opacity:.3;
    margin:25px 0;
}

.settingsSection h3{
    background:#8b001c;
    color:white;
    padding:14px 18px;
    border-radius:10px;
    margin-bottom:20px;
    font-size:24px;
    font-weight:800;
}

.settingsSection h4{
    color:#8b001c;
    font-size:18px;
    margin:20px 0 10px;
}


/* Admin permissies / gebruikers / logs */
.permissionsGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:12px;
    margin:18px 0 24px;
}

.permissionsGrid label{
    background:#efe7dc;
    border:1px solid #e0d8d2;
    border-radius:12px;
    padding:14px 16px;
    color:#222;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:10px;
}

.permissionsGrid input{
    width:auto !important;
    margin:0 !important;
}

.adminUserForm{
    display:grid;
    gap:12px;
}

.adminUserForm label{
    color:#8b001c;
    font-weight:900;
}

.adminUserCard{
    background:#f8f1e8 !important;
    border-left:6px solid #8b001c !important;
    border-radius:24px !important;
    padding:28px !important;
}

.adminUserInfo{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom:22px;
}

.adminUserInfo div{
    background:white;
    padding:16px;
    border-radius:14px;
    border:1px solid #e0d5ca;
}

.permissionsGrid{
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr)) !important;
}

.userActions{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.badge{
    background:#d60000;
    color:white;
    border-radius:999px;
    min-width:24px;
    height:24px;
    padding:0 7px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:900;
    margin-left:auto;
}

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

.albumGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.albumCard{
    position:relative;
    height:300px;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 16px 35px rgba(0,0,0,.15);
    background:white;
}

.albumCard img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.3s;
}

.albumCard:hover img{
    transform:scale(1.05);
}

.albumInfo{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:24px;
    background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color:white;
}

.albumInfo h2{
    margin:0;
    font-size:28px;
    color:white;
}

.albumInfo p{
    margin:8px 0 0;
    color:#d4a72c;
    font-weight:800;
}

.photoGrid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.photoGrid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

@media(max-width:1000px){
    .albumGrid,
    .photoGrid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .albumGrid,
    .photoGrid{
        grid-template-columns:1fr;
    }
}

.galleryPage{
    padding:80px 5vw;
}

.albumGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.albumCard{
    position:relative;
    height:300px;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 16px 35px rgba(0,0,0,.15);
    background:white;
}

.albumCard img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.albumInfo{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:24px;
    background:linear-gradient(to top, rgba(0,0,0,.78), transparent);
}

.albumInfo h2{
    margin:0;
    color:white;
    font-size:28px;
}

.albumInfo p{
    color:#d4a72c;
    font-weight:800;
}
.pagination{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:50px;
    flex-wrap:wrap;
}

.pagination a{
    background:#8b001c;
    color:white !important;
    text-decoration:none;
    padding:12px 18px;
    border-radius:10px;
    font-weight:800;
}

.pagination a.activePage{
    background:#d4a72c;
    color:#8b001c !important;
}

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

.editBtn{
    background:#8b001c;
    color:white !important;
    text-decoration:none;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    font-weight:800;
    cursor:pointer;
}

.editBtn:hover{
    opacity:.9;
}

.agendaAdminItem{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.agendaAdminItem > div:first-child{
    flex:1;
}

.detailText{
    max-width:900px;
    margin:40px auto;
    font-size:22px;
    line-height:1.8;
    color:#111;
}

.newsGallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
}

.newsGallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:.3s;
}

.newsGallery img:hover{
    transform:scale(1.02);
}

@media(max-width:800px){
    .newsGallery{
        grid-template-columns:1fr;
    }

    .newsGallery img{
        height:260px;
    }
}

.newsGallery img,
.photoGrid img{
    cursor:pointer;
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:30px;
}

.lightbox.show{
    display:flex;
}

.lightbox img{
    max-width:95vw;
    max-height:90vh;
    border-radius:16px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.lightboxClose{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:50px;
    font-weight:800;
    cursor:pointer;
}




.albumDescription{
    max-width:900px;
    margin:28px auto 10px;
    font-size:20px;
    line-height:1.7;
    color:#222;
}

.photoThumb{
    padding:0;
    border:0;
    background:transparent;
    cursor:pointer;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.photoThumb img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:transform .25s ease;
}

.photoThumb:hover img{
    transform:scale(1.04);
}

.photoLightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.88);
    z-index:9999;
    padding:30px;
}

.photoLightbox.isOpen{
    display:flex;
}

.photoLightbox img{
    max-width:92vw;
    max-height:88vh;
    border-radius:18px;
    box-shadow:0 25px 80px rgba(0,0,0,.45);
}

.photoLightboxClose{
    position:absolute;
    top:22px;
    right:28px;
    width:48px;
    height:48px;
    border:0;
    border-radius:50%;
    background:white;
    color:#8b001c;
    font-size:34px;
    line-height:1;
    cursor:pointer;
}

.adminPhotoActions{
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    display:flex;
    gap:8px;
    justify-content:space-between;
}

.adminPhotoActions form{
    margin:0;
}

.adminPhotoActions button{
    border:0;
    border-radius:10px;
    padding:9px 12px;
    font-weight:800;
    cursor:pointer;
}

.albumAdminForm label{
    display:block;
    margin-top:14px;
    font-weight:800;
}

.adminPhotoActions button{
    position:static;
    width:auto;
    height:auto;
    background:#8b001c;
    color:white;
}

.adminPhotoActions form:first-child button{
    background:#d4a72c;
    color:#8b001c;
}

/* Publieke ledenpagina */
.membersWrapper{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
    align-items:start;
}

.membersGroup{
    width:100%;
    min-height:220px;
    background:#f5efe7 !important;
    border-radius:24px !important;
    padding:32px !important;
    box-shadow:0 16px 40px rgba(0,0,0,.10) !important;
}

.membersGroup h2{
    color:#98001a !important;
    font-size:28px !important;
    margin:0 0 22px !important;
}

.membersList{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    list-style:none !important;
    padding:0 !important;
    margin:0 !important;
}

.membersList li{
    font-size:16px !important;
    font-weight:800 !important;
    white-space:normal !important;
}

.membersList li::before{
    content:"👤";
    margin-right:10px;
}

@media(max-width:1000px){
    .membersWrapper{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:650px){
    .membersWrapper{
        grid-template-columns:1fr;
    }
}
.membersPage,
.membersSection,
.pageSection:has(.membersGroup){
    width:100% !important;
    max-width:none !important;
}

.membersWrapper,
.membersContainer{
    width:100% !important;
    max-width:1200px !important;
    margin:0 auto !important;
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:28px !important;
}

.membersGroup{
    width:100% !important;
}

.memberGroupHeader{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:16px;
}

.memberGroupHeader h3{
    margin:0;
    color:#8b001c;
    font-size:26px;
}

.memberGroupActions,
.memberGroupActions form{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
}

.smallBtn{
    width:42px;
    height:42px;
    padding:0 !important;
    margin:0 !important;
}
.memberItem{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    background:#efe7dc !important;
    padding:12px 16px !important;
    border-radius:12px !important;
    margin-bottom:10px !important;
}

.memberItem span{
    font-weight:800 !important;
    color:#111 !important;
}

.memberItem form{
    margin:0 !important;
}

.memberItem .deleteBtn{
    width:34px !important;
    height:34px !important;
    font-size:18px !important;
}
.membersPage{
    max-width:1280px;
    margin-top:40px !important;
    margin:40px;
    padding:20px 30px 30px;
    background:transparent !important;
    border-radius:0 !important;
    box-shadow:none !important;
}


/* ===== VERBETERDE NIEUWS OVERZICHT PAGINA ===== */
.newsPage,
.pageSection.newsPage{
    padding:80px 4vw 120px !important;
}

.newsPage .newsCard,
.newsCard{
    max-width:1450px !important;
    margin:0 auto 54px !important;
    display:grid !important;
    grid-template-columns:minmax(260px, 360px) 1fr !important;
    gap:42px !important;
    align-items:center !important;
    background:rgba(255,255,255,.45) !important;
    border-radius:28px !important;
    padding:28px !important;
    box-shadow:0 14px 38px rgba(0,0,0,.07) !important;
    border:1px solid rgba(139,0,28,.08) !important;
    transition:transform .25s ease, box-shadow .25s ease !important;
    overflow:hidden !important;
}

.newsPage .newsCard:hover,
.newsCard:hover{
    transform:translateY(-4px) !important;
    box-shadow:0 20px 48px rgba(0,0,0,.11) !important;
}

.newsPage .newsCard img,
.newsCard > img,
.newsCard img{
    width:100% !important;
    height:245px !important;
    object-fit:cover !important;
    border-radius:20px !important;
    box-shadow:0 12px 26px rgba(0,0,0,.12) !important;
    display:block !important;
}

.newsCardContent{
    padding:8px 10px !important;
}

.newsCardContent h2,
.newsCard h2{
    color:#8b001c !important;
    font-size:clamp(34px, 3.2vw, 54px) !important;
    line-height:1.05 !important;
    margin:18px 0 18px !important;
}

.newsCardContent p,
.newsCard p{
    color:#252525 !important;
    font-size:17px !important;
    line-height:1.75 !important;
    max-width:980px !important;
    margin:0 0 22px !important;
}

.newsDate{
    display:inline-block !important;
    color:#c79a1b !important;
    font-weight:900 !important;
    letter-spacing:.5px !important;
    text-transform:uppercase !important;
    margin-bottom:8px !important;
}

.newsCard .outlineBtn,
.newsCard .primaryBtn,
.newsCard a.outlineBtn{
    padding:13px 24px !important;
    border-radius:12px !important;
    font-size:15px !important;
    letter-spacing:.3px !important;
}

@media(max-width:900px){
    .newsPage .newsCard,
    .newsCard{
        grid-template-columns:1fr !important;
        gap:22px !important;
        padding:22px !important;
    }

    .newsPage .newsCard img,
    .newsCard > img,
    .newsCard img{
        height:280px !important;
    }

    .newsCardContent h2,
    .newsCard h2{
        font-size:clamp(32px, 8vw, 46px) !important;
    }
}

@media(max-width:600px){
    .newsPage,
    .pageSection.newsPage{
        padding:45px 18px 80px !important;
    }

    .newsPage .newsCard img,
    .newsCard > img,
    .newsCard img{
        height:220px !important;
    }
}

/* FORCE nieuwsoverzicht compact */
.pageSection .newsCard{
    max-width:1500px !important;
    margin:0 auto 40px !important;

    display:grid !important;
    grid-template-columns:350px 1fr !important;

    min-height:320px !important;

    overflow:hidden;

    border:3px solid #d6c8b8 !important;
    border-radius:24px !important;

    background:#f5efe7 !important;
    padding:0 !important;
}

.pageSection .newsCard img{
    width:350px !important;
    height:100% !important;
    object-fit:cover !important;
    display:block;

    border-radius:0 !important;
}

.pageSection .newsCardContent{
    padding:30px 40px !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
}

.pageSection .newsCardContent .newsDate{
    margin-bottom:12px !important;
}

.pageSection .newsCardContent h2{
    font-size:clamp(34px,3vw,50px) !important;
    line-height:1.1 !important;
    margin:0 0 18px !important;
}

.pageSection .newsCardContent p{
    max-width:900px !important;
    font-size:17px !important;
    line-height:1.7 !important;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.pageSection .newsCardContent .primaryBtn,
.pageSection .newsCardContent .outlineBtn{
    margin-top:20px !important;
    align-self:flex-start !important;
}


/* ===== OVER ONS / WAT DOEN WIJ PAGINA'S ===== */
.infoPage{
    padding:90px 6vw 130px !important;
    background:#d1c3b0 !important;
}

.infoIntroGrid{
    max-width:1350px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0, 1.45fr) minmax(320px, .75fr);
    gap:34px;
    align-items:stretch;
}

.infoTextCard,
.infoAccentCard,
.activityCard{
    background:#f5efe7;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    border:1px solid rgba(139,0,28,.18);
}

.infoTextCard{
    padding:clamp(32px, 4vw, 62px);
    border-left:8px solid #98001a;
}

.infoTextCard h2,
.infoAccentCard h3,
.activityCard h3{
    color:#8b001c;
    margin-top:0;
}

.infoTextCard h2{
    font-size:clamp(42px, 5vw, 74px);
    line-height:.95;
    margin-bottom:28px;
    text-transform:uppercase;
}

.infoRichText{
    color:#1f1f1f;
    font-size:20px;
    line-height:1.9;
    font-weight:500;
}

.infoAccentCard{
    padding:34px;
    background:#8b001c;
    color:white;
}

.infoAccentCard h3{
    color:#d4a72c;
    font-size:32px;
    margin-bottom:24px;
}

.infoAccentCard ul{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:16px;
}

.infoAccentCard li{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    border-radius:16px;
    padding:17px 18px;
    font-weight:900;
    font-size:18px;
}

.infoAccentCard li::before{
    content:"✓";
    color:#d4a72c;
    margin-right:12px;
    font-weight:900;
}

.wideInfoCard{
    max-width:1180px;
    margin:0 auto 38px;
}

.activityCards{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
}

.activityCard{
    padding:30px;
    display:flex;
    gap:20px;
    align-items:center;
    transition:.25s ease;
}

.activityCard:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 55px rgba(0,0,0,.14);
}

.activityCard span{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#8b001c;
    color:#d4a72c;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:28px;
    font-weight:900;
}

.activityCard h3{
    font-size:24px;
    margin:0;
    line-height:1.2;
}

@media(max-width:950px){
    .infoIntroGrid,
    .activityCards{
        grid-template-columns:1fr;
    }

    .infoPage{
        padding:60px 22px 90px !important;
    }
}

.settingsTabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0 30px;
}

.settingsTabs a{
    background:#efe7dc;
    color:#8b001c !important;
    text-decoration:none;
    padding:12px 18px;
    border-radius:999px;
    font-weight:800;
    border:2px solid #8b001c;
}

.settingsTabs a:hover{
    background:#8b001c;
    color:white !important;
}

.backToTop{
    position:fixed;
    right:28px;
    bottom:28px;
    width:54px;
    height:54px;
    border-radius:50%;
    background:#8b001c;
    color:white;
    border:0;
    font-size:26px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
}

.backToTop:hover{
    background:#d4a72c;
    color:#8b001c;
}


/* ===== ADMIN: rechten en Wat doen wij onderpanelen ===== */
.adminUserPermissionForm{
    margin-top:14px;
    padding:16px;
    background:#f6f1eb;
    border-radius:16px;
    border:1px solid #e0d6cc;
}

.compactPermissions{
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    margin:12px 0 16px;
}

.activityBlockAddForm,
.activityBlockEditForm{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
    align-items:center;
}

.activityBlockList{
    margin-top:18px;
}

.activityBlockItem{
    display:grid;
    grid-template-columns:1fr auto;
    gap:16px;
    align-items:center;
    border:1px solid #e0d6cc;
}

.activityBlockItem form{
    margin:0;
}

.activityBlockItem input,
.activityBlockAddForm input{
    margin:0 !important;
}

.smallBtn{
    width:42px;
    height:42px;
    padding:0 !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:800px){
    .activityBlockAddForm,
    .activityBlockEditForm,
    .activityBlockItem{
        grid-template-columns:1fr;
    }
}
.adminUserCard{
    padding:22px !important;
    margin-bottom:20px !important;
}

.adminUserCard > p{
    margin:4px 0 14px !important;
}

.adminUserCard .permissionsGrid{
    max-width:1000px !important;
}

.adminUserCard .permissionsGrid label{
    min-height:58px !important;
    padding:12px 16px !important;
}

.adminUserCard .deleteBtn{
    margin-top:10px !important;
}
.adminUserTopActions{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.adminUserBottomActions{
    margin-top:20px;
}

.deleteUserBtn{
    background:#c70022;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:12px 20px;
    font-weight:800;
    cursor:pointer;
}

.deleteUserBtn:hover{
    background:#98001a;
}
