
@font-face {
  font-family: "area";
  src: url("../area.otf");
}

@font-face {
  font-family: "lato";
  src: url("../Lato-Thin.ttf");
}

@font-face {
  font-family: "entang";
  src: url("../entang.ttf");
}

body {
  background: rgb(230,232,255);
  background: linear-gradient(90deg, rgba(230,232,255,1) 0%, rgba(226,255,245,1) 100%);
}

h1 {
  font-family: lato;
  color: black;
}

form label {
  font-family: area;
  color: black;
}

.form-container {
  width: 400px;
  margin: 50px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
}

.form-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: black;
  text-transform: uppercase;
}

.form-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-container form label {
  margin-top: 20px;
  font-weight: bold;
  color: #555;
  transition: transform 0.1s ease;
  transform: translateY(-100%);
}

.form-container form input {
  padding: 12px;
  margin-bottom: 20px;
  border: #232323 1px solid;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  width: 300px;
  transition: all 0.1s ease;
  outline: none;
}

.form-container form input:focus {
  background: #e0e0e0;
  border: 2px solid #008000;
}

.form-container form button {
  padding: 12px 20px;
  border: none;
  border-radius: 9999px;
  background: #256137;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.1s ease;
  outline: none;
}

.form-container form button:hover {
  background: #256137;
  padding: 12px 23px;
}

.form-container form p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  font-family: area;
}

.form-container form p a {
  color: #008000;
  text-decoration: none;
  border-bottom: 1px dashed #008000;
  transition: border-bottom 0.2s;
  font-family: area;
}

.form-container form p a:hover {
  border-bottom: 1px solid #008000;
}

.planten {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  overflow: hidden;
}

.planten h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  font-family: area;
  color: black;
}

.planten-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plant-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plant-card:hover {
  transform: translateY(-5px);
}

.plant-card img {
  max-width: 100%;
  border-radius: 10px;
}

.plant-info {
  flex: 1;
}

.plant-info h2 {
  font-size: 20px;
  font-family: area;
  font-weight: 900;
}

.plant-info h3 {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: area;
}

.plant-info p {
  margin: 10px 0;
  color: #666;
  text-align: center;
  font-family: area;
}

.plant-price {
  margin-top: auto;
  font-family: area;
}

.cta-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #008000;
  color: white;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
  margin: 10px auto;
  text-align: center;
}

.cta-button:hover {
  background: #006600;
}

.dropdown-section {
  margin-top: 10px;
  text-align: left;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.dropdown-btn {
  background-color: #f9f9f9;
  color: black;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s;
  font-family: area;
}

.dropdown-btn:hover {
  background-color: #f0f0f0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1;
  width: 300px;
  left: 0;
}

.dropdown-content p {
  padding: 10px;
  margin: 0;
  font-family: area;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.bestelling-details {
  width: 280px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bestelling-details h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  font-family: area;
}

.plant-details {
  text-align: center;
  margin-bottom: 20px;
}

.plant-details img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.plant-details h2 {
  font-size: 20px;
  margin-top: 10px;
  font-family: area;
}

.plant-details p {
  color: black;
  line-height: 1.6;
  font-family: area;
}

.bestelling-details form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bestelling-details form label {
  margin-top: 10px;
  font-weight: bold;
}

.bestelling-details form input[type="text"],
.bestelling-details form input[type="email"],
.bestelling-details form input[type="number"],
.bestelling-details form button[type="submit"] {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.bestelling-details form button[type="submit"] {
  background-color: #008000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bestelling-details form button[type="submit"]:hover {
  background-color: #006600;
}

.bestelling-summary {
  max-width: 600px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bestelling-summary h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  font-family: area;
}

.bestelling-summary p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: area;
}

.bestelling-summary a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: area;
  padding: 10px 25px;
  background-color: #008000;
  border-radius: 9999px;
  transition: 0.3s ease;
}

.bestelling-summary a:hover {
  border: 1px #008000 solid;
  background-color: white;
  color: black;
}

.category-select {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-filter {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.category-filter label {
  color: black;
  text-align: center;
  margin-bottom: 20px;
}

#categorie {
  padding: 10px 30px;
  border-radius: 3px;
  border: 1px solid black;
}

.category-select  {
  color: black;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: area;
}

.category-select .dropdown {
  width: 100%;
}

.category-select .dropdown-content {
  width: 100%;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 2px solid #555555;
  border-radius: 3px;
  background-color: white;
}

.bestelling-confirmatie {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: area;
}

.plant-overzicht-container {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 20px;
}

.plant-overzicht {
  font-family: area;
}

.plant-overzicht img {
  max-width: 100%;
  height: 200px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#important-user {
  font-weight: 900;
}

.beoordelingen {
  background-color: white;
  border-radius: 20px;
  margin: 20px;
  padding: 20px;
  font-family: area;
}

.beoordelingen-container {
  background-color: beige;
  border-radius: 20px;
  margin: 20px;
  padding: 20px;
  font-family: area;
}

.opmerking {
  padding: 5px;
  border-left: 3px solid black;
}