@font-face {
  font-family: 'Gottak';
  src: url('../fonts/Gottak-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gottak-Bold';
  src: url('../fonts/Gottak-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

*{
	text-decoration: none;
	color: white;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  margin: 0;
  font-family: 'Gottak', Arial, sans-serif;
  line-height: 1.6;
  background-color: #284532;
}

body > *:not(.footer) {
  flex: 1 0 auto;
}

.header {
  background-image: url("../images/header-background.png");
  text-align: center;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.header-container img {
  max-width: 100%;
  height: auto;
}

.slogan {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}


.slogan-container p {
  margin: 0;
  font-family: 'Gottak-Bold', Arial, sans-serif;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: #ae9a64;
	padding: 0.5rem;
}

.buttons {
  background-color: #284532; 
  padding: 3rem 1.5rem;
}

.buttons-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.btn {
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	text-decoration: none;
	padding: 1.5rem 1rem;
}

.btn-line {
  	font-size: 1.15rem;
	letter-spacing: 1.2px;
}

.btn-strong {
  	font-family: 'Gottak-Bold', Arial, sans-serif;
  	font-size: 1.5rem;
	letter-spacing: 1.5px;
}

.btn-primary {
  	background-color: #203B2A;
  	color: #FFFFFF;
	transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #ae9a64;
  transform: translateY(-2px);
}

.footer {
  background-color: #203B2A; /* donker groen, passend bij branding */
  color: #FFFFFF;
  text-align: center;
  padding: 1rem;
  flex-shrink: 0; /* altijd zichtbaar */
}

.footer a {
  color: #ae9a64; /* goud accent */
  text-decoration: underline;
}

#privacy-link{
	text-decoration: none;
}

@media (min-width: 768px) {
  .buttons-container {
  	  flex-direction: row;
	  gap: 5rem;
	  justify-content: center;
  }

  .btn {
    flex: 1; 
	  padding: 2rem;
  }
}

/* Modal overlay */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.6); /* donker transparant */
}

/* Modal content box */
.modal-content {
  background-color: #284532; /* Broth & Beyond groen */
  color: #FFFFFF;
  margin: 10% auto; 
  padding: 2rem;
  border-radius: 16px;
  max-width: 500px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  font-family: 'Gottak', Arial, sans-serif;
  position: relative;
  line-height: 1.5;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ae9a64; /* goud accent */
  cursor: pointer;
}

.close-btn:hover {
  color: #ffffff;
}

/* Modal headings */
.modal-content h2 {
  color: #ae9a64; /* goud accent */
  margin-top: 0;
  font-size: 1.8rem;
  text-align: center;
}

/* Modal links */
.modal-content a {
  color: #ffd97d; /* licht goud voor links */
  text-decoration: underline;
}

/* Responsive: mobiel full-width */
@media (max-width: 600px) {
  .modal-content {
    width: 90%;
    margin: 15% auto;
    padding: 1.5rem;
  }
}