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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color:#f5e1dc; 
  color: #333;
  padding: 0px;
}

h2 {
  display: flex;
  justify-content: center;
  color: #333;

}

header {
  background: #7c2727;
  padding: 0, 0;
}

.nav-container { 
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Crimson Text", serif;   font-weight: 400;   font-style: normal;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #faf6f7;
  text-decoration: none;
  font-family: "Crimson Text", serif;   font-weight: 400;   font-style: normal;

}

.logo:hover a {
  color: #333;
}

.logo nav ul li a:hover {
  color: #333;
}

#butons {
  display: flex;
  list-style: none;
  gap: 1.2rem;  
  text-decoration: none;
  font-size: larger;
  padding-top: 20px;
  align-items: center;
  gap: 1rem;
}
#butons li a {
  background-color: transparent;
  color: #FAF9F6;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: montserrat, sans-serif;
}
#butons li a:hover {
  background-color: #ffffff;
  color: #333;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;  
  text-decoration: none;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.signup {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.signup a {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.signup .sign {
  background-color: #a14c4c;
  color: #fcd7d7;
  border: 2px solid #fcd7d7;
}
.signup .sign:hover {
  background-color: #642323;
  color: #ffffff;
}
.signup .log {
  background-color: #642323;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.signup .log:hover {
  background-color: #a14c4c;
  color: #fcd7d7;
}
.dropbtn {
  background-color: #f0cbf5;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #fa9eff;
}

#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}
.show {display: block;}

#toevoeg {
    display: flex;
    align-items: center;
    justify-content: center;   
    gap: 20px;
    position: relative;
    margin: 20px 0;
}

#toevoeg .btn {
    position: absolute;
    left: 0;
    background: #440707;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}
footer {
  background-color: #a84343;
  padding: 20px 0 20px 0;
  margin-top: 20px;
}
footer p, footer a {
  color: #333;
  text-align: center;
  font-family: open-sans, sans-serif;
}
/*kaart*/
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 500px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #4b2020;
  border-radius: 15px;

}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);

}

#kaart{
  display: grid;
  grid-template-columns: auto auto auto;
  margin-left: 5%;

}
.cardlink{
  text-decoration: none;
  color: #ffffff;
}
.signup p {
  color: white;
}