/*
body{margin:0;font-family:Inter,sans-serif;background:#F6F1EB;color:#3A2F2A}
nav a{margin:0 10px;color:#B89B5E;text-decoration:none}
.hero{text-align:center;padding:80px 20px}
h1,h2{font-family:'Playfair Display',serif;color:#B89B5E}
.button{background:#B89B5E;color:#fff;padding:12px 30px;border-radius:30px;text-decoration:none}
.login{display:flex;justify-content:center;align-items:center;height:100vh}
.login-box{background:#fff;padding:40px;border-radius:10px}
*/
/* --- Body & Fonts --- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #F6F1EB;
    color: #3A2F2A;
    line-height: 1.6;
	animation: pageFade 0.8s ease forwards;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Header --- */
header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
	
	background-image: url("../img/bq-flower.png");
	background-size: 100px auto;
	background-position: top left 0px;
	background-repeat: no-repeat;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #B89B5E;
    text-decoration: none;
}

/* --- Nav Menu --- */
nav {
    position: relative;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    text-decoration: none;
    color: #B89B5E;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu li a:hover {
    color: #8C7045;
    letter-spacing: 1px;
}

.menu li .button {
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(184,155,94,0.3);
}

.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #B89B5E;
}

/* --- Hero --- */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #B89B5E;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    color: #B89B5E;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: #3A2F2A;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* --- Buttons --- */
.button {
    display: inline-block;
    background: #B89B5E;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184,155,94,0.3);
}

.button:hover {
    background: #8C7045;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140,112,69,0.4);
}

/* --- Footer --- */
footer {
    background: #fff;
    padding: 40px 50px;
    text-align: center;
    border-top: 1px solid #E0D7C8;
    font-size: 0.9rem;
    color: #3A2F2A;
}

footer a {
    color: #B89B5E;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #8C7045;
}

/* Zorg dat de afbeelding nooit breder is dan zijn container */
img {
	max-width: 100%; /* maximaal 100% van de containerbreedte */
	height: auto;    /* hoogte past zich proportioneel aan */
	display: block;  /* voorkomt extra witruimte onder afbeelding */
}

/* --- Responsive --- */
@media (max-width: 768px) {
    header {
        padding: 15px 30px;
        flex-wrap: wrap;
    }

    .menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 200px;
        border-radius: 10px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    #menu-toggle:checked + .menu-icon + .menu {
        max-height: 500px;
    }

    .menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    footer {
        padding: 30px 20px;
    }
}


/* --- Sectie spacing --- */
.section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* --- Content card (wit blok) --- */
.content-card {
    border-radius: 20px;
    padding: 60px;
    max-width: 900px;
	min-height: 400px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	
	background: #ffffff;
	background-image: url("../img/jr-2.png");
	background-size: 450px auto;
	background-position: center;
	background-repeat: no-repeat;
    /* Afbeelding
    background-image: url("../img/bq-flower.png");
    background-size: 300px auto;
    background-position: top left 0px;
    background-repeat: no-repeat;
	*/
}

/* --- Hero card iets groter & gecentreerd --- */
.hero-card {
    text-align: center;
    padding: 20px 20px;
}

/* --- Typography binnen card --- */
.content-card h1,
.content-card h2 {
    font-family: 'Playfair Display', serif;
    color: #B89B5E;
    margin-bottom: 20px;
}

.content-card p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* --- Mobiel responsive --- */
@media (max-width: 768px) {
    .content-card {
        padding: 30px 25px;
        border-radius: 16px;
		margin: auto;
		
		/* Afbeelding
		background-image: url("../img/bq-flower.png");
		background-size: 300px auto;
		background-position: top left 0px;
		background-repeat: no-repeat;
		*/
    }

    .content-card h1 {
        font-size: 2.2rem;
    }

    .content-card h2 {
        font-size: 1.8rem;
    }

    .content-card p {
        font-size: 1rem;
    }
}

/* --- Fade-in animatie --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBIEL PERFECT --- */
@media (max-width: 768px) {

    .page-wrapper {
        padding: 40px 16px;
    }

    .content-card {
        padding: 32px 24px;
        border-radius: 18px;
		
		/* Afbeelding 
		background-image: url("../img/bq-flower.png");
		background-size: 300px auto;
		background-position: top left 0px;
		background-repeat: no-repeat;	
		*/		
    }

    .hero-card h1 {
        font-size: 2.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    p {
        font-size: 1rem;
    }
}

/* --- Login card --- */
.login-card {
  max-width: 500px;
  padding: 60px 50px;
}

/* Afbeelding */
.login-image {
  width: 100%;
  max-width: 260px;
  margin-bottom: 30px;
  border-radius: 20px;
}

/* Titel */
.login-card h1 {
  font-family: 'Playfair Display', serif;
  color: #B89B5E;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.login-card h1 span {
  color: #D6BFA2;
}

/* Subtitel */
.login-subtitle {
  font-size: 1rem;
  margin-bottom: 35px;
  color: #5A4A44;
}

/* Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Input */
.login-form input {
  padding: 14px 18px;
  border-radius: 50px;
  border: 1px solid #E0D7C8;
  font-size: 1rem;
  outline: none;
  text-align: center;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.login-form input:focus {
  border-color: #B89B5E;
  box-shadow: 0 0 0 3px rgba(184,155,94,0.15);
}

/* Button */
.login-form button {
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: #B89B5E;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(184,155,94,0.35);
  transition: all 0.3s ease;
}

.login-form button:hover {
  background: #8C7045;
  transform: translateY(-2px);
}

/* Error */
.error {
  margin-top: 10px;
  color: #A94442;
  font-size: 0.9rem;
}

/* Mobiel */
@media (max-width: 480px) {
	.login-card {
		padding: 40px 25px;
	}

	.login-card h1 {
		font-size: 2rem;
	}

	.login-image {
		max-width: 200px;
	}
	
	.page-wrapper {
      padding: 0px;
    }
	
	.section {
		padding: 10px 10px;
	}
}

/* Programma */ 
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}

th, td {
	padding: 12px 15px;
	text-align: left;
}

th {
	background-color: #;
	color: #000;
	font-size: 1.1em;
}
/*
tr:nth-child(even) {
	background-color: #E0D7C8;
}
*/
tr:hover {
	background-color: #E0D7C8;
}

.icon {
	margin-right: 8px;
	color: #B89B5E;
}