@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-creme: #fdfcf9;
    --text-dark: #1a1a1a;
    --accent-gold: #b08d44;
    --border-light: #ecece7;
    --white: #ffffff;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Libre Bodoni', sans-serif; 
    background-color: var(--bg-creme); 
    color: var(--text-dark); 
    -webkit-font-smoothing: antialiased;
}

header { 
    background: var(--white); 
    padding: 40px 20px 0; 
    text-align: center; 
    border-bottom: 1px solid var(--border-light); 
}

.brand-title { 
    font-family: 'Libre Bodoni', serif; 
    font-size: 3.5rem; 
    margin-bottom: 5px; 
    color: var(--text-dark);
}

.tagline { 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    color: #888; 
    text-transform: uppercase; 
    margin-bottom: 30px; 
}

nav { 
    border-top: 1px solid var(--border-light);
    padding: 15px 0; 
}

nav ul { 
    display: flex; 
    justify-content: center; 
    list-style: none; 
    gap: 30px; 
}

nav a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-size: 0.8rem; 
    font-weight: 600; 
    text-transform: uppercase;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent-gold);
}

input, select { 
    padding: 10px 10px; 
    border: 1px solid var(--border-light);  
    outline: none; 
    font-family: inherit;
    font-size: 0.9rem;
}

button { 
    background: var(--accent-gold); 
    color: var(--white); 
    border: none; 
    padding: 18px 40px; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer; 
    transition: background 0.3s;
}

button:hover { 
    background: #967738; 
}

header {
  position: relative;
}

main {
	padding-top:1em;
}

.header-utility {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.login-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--border-light);
    padding: 8px 15px;
}
.login-link:hover, .cta-button-small:hover {
	background-color:black;
	color:white;
}

.cta-button-small {
    text-decoration: none;
    background: var(--accent-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 15px;
	min-width: 100px;
}

.hero-intro {
    padding: 80px 20px;
    text-align: center;
}

.hero-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-intro p {
    color: #666;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-gold {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

footer {
    padding: 60px 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 1200px;
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -8px;
}


[class^="col"], [class*=" col"] {
  padding-inline: 8px;
  width: 100%;
  flex: 0 0 auto;
}

.col-1  { width: 100%; }
.col-2  { width: 91.6667%; }  /* 11/12 */
.col-3  { width: 83.3333%; }  /* 10/12 */
.col-4  { width: 75%; }       /* 9/12  */
.col-5  { width: 66.6667%; }  /* 8/12  */
.col-6  { width: 58.3333%; }  /* 7/12  */
.col-7  { width: 50%; }       /* 6/12  */
.col-8  { width: 41.6667%; }  /* 5/12  */
.col-9  { width: 33.3333%; }  /* 4/12  */
.col-10 { width: 25%; }       /* 3/12  */
.col-11 { width: 16.6667%; }  /* 2/12  */
.col-12 { width: 8.3333%; }   /* 1/12  */

@media (min-width: 576px) {
  .col-sm-1  { width: 100%; }
  .col-sm-2  { width: 91.6667%; }
  .col-sm-3  { width: 83.3333%; }
  .col-sm-4  { width: 75%; }
  .col-sm-5  { width: 66.6667%; }
  .col-sm-6  { width: 58.3333%; }
  .col-sm-7  { width: 50%; }
  .col-sm-8  { width: 41.6667%; }
  .col-sm-9  { width: 33.3333%; }
  .col-sm-10 { width: 25%; }
  .col-sm-11 { width: 16.6667%; }
  .col-sm-12 { width: 8.3333%; }
}
@media (min-width: 768px) {
  .col-md-1  { width: 100%; }
  .col-md-2  { width: 91.6667%; }
  .col-md-3  { width: 83.3333%; }
  .col-md-4  { width: 75%; }
  .col-md-5  { width: 66.6667%; }
  .col-md-6  { width: 58.3333%; }
  .col-md-7  { width: 50%; }
  .col-md-8  { width: 41.6667%; }
  .col-md-9  { width: 33.3333%; }
  .col-md-10 { width: 25%; }
  .col-md-11 { width: 16.6667%; }
  .col-md-12 { width: 8.3333%; }
}
@media (min-width: 992px) {
  .col-lg-1  { width: 100%; }
  .col-lg-2  { width: 91.6667%; }
  .col-lg-3  { width: 83.3333%; }
  .col-lg-4  { width: 75%; }
  .col-lg-5  { width: 66.6667%; }
  .col-lg-6  { width: 58.3333%; }
  .col-lg-7  { width: 50%; }
  .col-lg-8  { width: 41.6667%; }
  .col-lg-9  { width: 33.3333%; }
  .col-lg-10 { width: 25%; }
  .col-lg-11 { width: 16.6667%; }
  .col-lg-12 { width: 8.3333%; }
}
@media (min-width: 1200px) {
  .col-xl-1  { width: 100%; }
  .col-xl-2  { width: 91.6667%; }
  .col-xl-3  { width: 83.3333%; }
  .col-xl-4  { width: 75%; }
  .col-xl-5  { width: 66.6667%; }
  .col-xl-6  { width: 58.3333%; }
  .col-xl-7  { width: 50%; }
  .col-xl-8  { width: 41.6667%; }
  .col-xl-9  { width: 33.3333%; }
  .col-xl-10 { width: 25%; }
  .col-xl-11 { width: 16.6667%; }
  .col-xl-12 { width: 8.3333%; }
}

/* 6) Row alignment helpers */
.row.center { justify-content: center; }
.row.between { justify-content: space-between; }
.row.around { justify-content: space-around; }
.row.middle { align-items: center; }

/* 7) Utilities (spacing) */
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.pt-2 { padding-top: .5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pb-2 { padding-bottom: .5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }

.hide-sm { display: none; }
@media (min-width: 576px) {
  .hide-sm { display: initial; }
  .show-sm-only { display: none; }
}

@media (max-width: 767.98px) {
  .header-utility {
    position: static;          /* verlaat absolute flow */
    width: 100%;               /* volle breedte */
    display: flex;
    justify-content: center; 
    gap: 12px;                 
    margin-bottom: 12px;       
    padding-inline: 16px;
	margin-top:-20px;
  }
}

.form-container {
    max-width: 500px;
    margin: 0em auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

h1 { text-align: center; }

.form-group {
    display: flex;
    flex-direction: column; /* Stapelt label op input */
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.checkbox-group {
    flex-direction: row; /* Zet checkbox naast de tekst */
    align-items: center;
    gap: 10px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.registratiebutton {
    width: 100%;
    padding: 12px;
	background-color: white;
    border-radius: 4px;
    cursor: pointer;
	text-decoration: none;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--border-light);
    padding: 8px 15px;
}
.registratiebutton:hover {
	background: var(--accent-gold);
	color: white;
}

.error-container {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
}

input.invalid {
    border: 2px solid #d9534f !important;
    background-color: #fff6f6;
}

.error-container ul {
    margin: 0;
    padding-left: 20px;
}

.alert {
	padding: 15px 30px;
	text-align:center;
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999; 
    min-width: 300px;
    border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
    from { top: -100px; opacity: 0; }
    to { top: 20px; opacity: 1; }
}

.alert-fade-out {
    animation: slideUp 0.5s ease-in forwards; /* 'forwards' houdt de eindpositie vast */
}

@keyframes slideUp {
    from { top: 20px; opacity: 1; }
    to { top: -100px; opacity: 0; }
}

.alert-success {
	background-color: #d4edda;
	color: #155724;
}
.alert-error {
	background-color: #f8d7da;
	color: #721c24;
}
.alert-warning {
	background-color: #fff3cd;
	color: #856404;
}
.alert-info {
	background-color: #d1ecf1;
	color: #0c5460;
}

.icon-input {
    position: relative;
    margin-bottom: 15px;
}


.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888; /* Grijze kleur voor het icoon */
    pointer-events: none; /* Zorgt dat je door het icoon heen kunt klikken naar de input */
}

/* Ruimte maken aan de linkerkant van de tekst */
.icon-input input {
    padding-left: 40px; /* Belangrijk: hierdoor begint de tekst na het icoon */
    width: 100%;
    height: 45px;
    box-sizing: border-box; /* Zorgt dat padding de input niet breder maakt */
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Optioneel: kleur veranderen van icoon als input actief is */
.icon-input input:focus + .input-icon, 
.icon-input input:focus {
    color: black;
	border: 2px solid var(--accent-gold);
}