/* Algemene stijlen */
:root {
  --primary-color: #9d899a; /* Bruin uit logo */
  --secondary-color: #9e7c5e; /* Lichter bruin */
  --accent-color: #d3b589; /* Gouden accent */
  --text-color: #333333;
  --light-color: #f8f5f2;
  --white: #ffffff;
  --rood: #ff0000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sub-container {
  text-align: left;

  width: 90%;
  max-width: 900px;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 2px;
}

button:disabled button[disabled] {
  background-color: var(--rood);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn2 {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn2:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn3 {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn3:hover {
  transform: translateY(-3px);
  color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header stijlen */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 80px;
  border-style: none;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li.active a {
  color: var(--primary-color);
}

/* Hero sectie */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("cean-afb/hero2.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-top: 90px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* About sectie */
.about {
  padding: 80px 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto 50px;
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}

.feature {
  flex: 1;
  min-width: 250px;
  margin: 15px;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
}

/* Galerij preview */
.gallery-preview {
  padding: 80px 0;
  background-color: var(--light-color);
  text-align: center;
}

.gallery-preview h2 {
  margin-bottom: 50px;
}

.preview-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.preview-images img {
  width: 300px;
  /* height: 300px; */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.preview-images img:hover {
  transform: scale(1.05);
}

/* Contact sectie */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact p {
  margin-bottom: 40px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

.contact textarea {
  height: 150px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}

footer p {
  margin-bottom: 20px;
}

.social img {
  width: 30px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social img:hover {
  transform: scale(1.2);
}

/* Pagina headers */
.page-header {
  text-align: center;
  padding: 120px 0 60px;
  margin-top: 90px;
  background-color: var(--light-color);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.container h2 {
  font-size: 2rem;
  margin-top: 15px;
  margin-bottom: 10px;
}

.workshops {
  padding: 60px 0;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.workshop-item {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.workshop-item img {
  max-width: 350px;
  max-height: 350px;
  width: auto;
  height: auto;
}

.workshop-details {
  padding: 30px;
  flex: 1;
  min-width: 300px;
}

.workshop-details h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.workshop-details .date {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.workshop-details .price {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 20px 0;
}

/* Modal formulier */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--white);
  margin: 15px auto;
  padding: 30px;
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
  position: relative;
}

.close {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 2rem;
  cursor: pointer;
}

.modal h2 {
  margin-bottom: 30px;
  text-align: center;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-input {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.beschikbaarheid {
  overflow-y: auto;
  height: 200px;
  font-size: 14px;
  font-family: sans-serif;
}

img.inschrijving {
  margin-left: 1px;
  margin-right: 1px;
}

.volgeboekt {
  text-decoration: line-through;
}

.dagnaam {
  display: inline-block;
  width: 75px;
}

.keuze-tekst {
  margin-left: 5px;
}

.modal input[type="checkbox"] {
  display: inline;
  text-align: center;
}

/* Grid layout voor formulier */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Galerij pagina */
.gallery {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  color: var(--white);
  margin-bottom: 5px;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav ul {
    margin-top: 20px;
  }

  nav ul li {
    margin-left: 15px;
    margin-right: 15px;
  }

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

  .features {
    flex-direction: column;
  }

  .workshop-item img {
    height: 300px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/********************************************
****  opmaak meldingen 
********************************************/
.port-melding {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0px;
}
.port-melding {
  color: #555555;
  /* border-radius:10px; */
  font-family: Tahoma, Geneva, Arial, sans-serif;
  /* font-size: 11px; */
  padding: 10px 35px;
}
.port-melding span {
  font-weight: bold;
}
.port-melding ul {
  margin: 0px;
  /* list-style-type: none;*/
}
.port-melding ul li {
  margin-left: 20px;
}
.port-error-opmaak .port-melding {
  background: #ffecec url("port-afb/port-afb-fout.png") no-repeat 10px 10px;
  border: 1px solid #f5aca6;
}
.port-melding-opmaak .port-melding {
  background: #e9ffd9 url("port-afb/port-afb-goed.png") no-repeat 10px 10px;
  border: 1px solid #a6ca8a;
}
.port-waarschuwing .port-melding {
  background: #fff8c4 url("port-afb/port-afb-warning.png") no-repeat 10px 10px;
  border: 1px solid #f2c779;
}
.port-opmerking .port-melding {
  background: #e3f7fc url("port-afb/port-afb-opmerking.png") no-repeat 10px 10px;
  border: 1px solid #8ed9f6;
}

