@charset "UTF-8";
body {
  font-family: "Nunito", sans-serif;
  color: #f7f7f7;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Amatic SC", cursive;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #f7f7f7;
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #287233;
}

.header {
  background-color: #000;
  color: #f7f7f7;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
}

#logo {
  font-family: "Amatic SC", cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
  }
}
.navbar li {
  margin-right: 20px;
  font-size: 1.6rem;
  font-family: "Amatic SC", cursive;
}
@media (max-width: 768px) {
  .navbar li {
    margin: 10px 0;
  }
}

.active-link {
  color: #287233;
  font-weight: bold;
  transition: color 0.3s ease;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #f7f7f7;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons i {
  font-size: 2rem;
  color: #f7f7f7;
  transition: color 0.3s ease;
}
.social-icons i:hover {
  color: #287233;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #287233;
    width: 100%;
    border: 1px solid #ddd;
    padding: 3rem 1rem 3rem 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .navbar a {
    padding: 0.5rem 0;
  }
  .navbar.active {
    display: block;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    position: relative;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 4px 0;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #eee;
  color: #333;
  text-align: center;
  padding: 1em;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

#cookie-banner button {
  margin: 0 10px;
  padding: 0.5em 1em;
  border: none;
  background-color: #8FAF8C;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

#cookie-banner a {
  color: #003557;
  text-decoration: underline;
}

.footer {
  background-color: #000;
  color: #f7f7f7;
  padding: 2rem 0;
  text-align: center;
  font-size: 1rem;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  gap: 20px;
}

.footer-block {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}
.footer-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-block ul {
  list-style: none;
  padding: 0;
}
.footer-block li {
  margin-bottom: 0.5rem;
}
.footer-block a {
  color: #f7f7f7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-block a:hover {
  color: #287233;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.social-icons a {
  font-size: 1.8rem;
  color: #f7f7f7;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #287233;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #287233;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  display: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
#back-to-top:hover {
  background: rgb(26.7532467532, 76.2467532468, 34.1103896104);
  transform: translateY(-3px);
}

.hero {
  width: 100%;
  height: 40vh;
  background: url("/assets/images/Betoverende%20Gerookte%20Boscaiola%20Ricks%20Keuken%20recepten%20hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f7f7f7;
  padding: 2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: "Amatic SC", cursive;
}

.recipes {
  background-color: white;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .recipes {
    padding: 0;
  }
}

.receptenplaatje {
  width: 40%;
  margin: auto;
  height: 100%;
}
.receptenplaatje img {
  padding: 2rem 0;
  width: 100%;
  height: 100%;
}

#receptenContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, calc(25% - 10px)));
  gap: 10px;
  justify-content: center;
  width: 95%;
  margin: 2rem auto;
  border-radius: 20px;
  background-color: #333;
  padding: 2rem 0;
}

.recept {
  background-color: #333;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.recept:hover {
  transform: translateY(-5px);
}
.recept img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.recept p {
  text-align: justify;
  hyphens: auto;
  max-height: 5em;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1rem 1rem;
}
.recept .recept-intro {
  margin: 0;
}
.recept .recept-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin: 0;
}

.tagsearch {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
  margin: auto;
}
@media (max-width: 768px) {
  .tagsearch {
    flex-direction: column;
    gap: 20px;
    padding-top: 2rem;
  }
}
.tagsearch input {
  height: 30px;
  font-size: 1.7rem;
  width: 90%;
  max-width: 500px;
  padding: 10px;
  border: 2px solid #287233;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}
.tagsearch input:focus {
  border-color: rgb(26.7532467532, 76.2467532468, 34.1103896104);
}
@media (max-width: 768px) {
  .tagsearch input {
    font-size: 1rem;
  }
}

.tag {
  padding: 2px 5px;
  background-color: white;
  color: black;
  margin: 5px 5px 0 0;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
}
.tag:hover {
  background-color: #287233;
  color: white;
}
.tag.active-tag {
  background-color: #287233;
  color: white;
}

.recept-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #333;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 10px;
}

.recept-titel {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Amatic SC", cursive;
  text-align: center;
  margin-bottom: 1rem;
}

.recept-afbeelding {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
}
@media (max-width: 786px) {
  .recept-afbeelding {
    width: 90%;
  }
}

.recept-intro {
  text-align: left;
  font-size: 1.2rem;
  margin: 1rem auto;
  max-width: 800px;
}
@media (max-width: 786px) {
  .recept-intro {
    width: 90%;
  }
}

.ingredienten, .bereiding {
  padding: 1.5rem;
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
}

.ingredienten ul, .bereiding ol {
  font-size: 1rem;
  line-height: 1.6;
}

.tags-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.tags {
  text-align: center;
  margin-top: 2rem;
}

.tags .tag {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  background-color: #287233;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
}

.contactpage {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 2rem auto;
  gap: 15px;
}
.contact-form label {
  font-weight: bold;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #287233;
  border-radius: 5px;
  width: 100%;
}
.contact-form button {
  background: #287233;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form button:hover {
  background: rgb(26.7532467532, 76.2467532468, 34.1103896104);
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1rem;
}
.social-icons a {
  font-size: 2rem;
  color: #f7f7f7;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #287233;
}

.bedankt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  text-align: center;
  padding: 2rem;
}

.bedankt-container h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Amatic SC", cursive;
  margin-bottom: 1rem;
}

.bedankt-container p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.bedankt-container a {
  display: inline-block;
  background: #287233;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.bedankt-container a:hover {
  background: rgb(26.7532467532, 76.2467532468, 34.1103896104);
}

/* Algemene container instellingen */
#seriesContainer, #postsContainer, .blogintro {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

#postsContainer {
  background-color: #333;
  padding: 4rem;
  border-radius: 20px;
}

.serie, .post {
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 20px); /* Standaard drie kolommen */
  max-width: calc(33.333% - 20px); /* Beperk maximale breedte */
  box-sizing: border-box;
}
.serie img, .post img {
  width: 100%;
  border-radius: 5px;
}
.serie h3, .post h3 {
  font-size: 18px;
  margin-top: 10px;
}

/* Responsieve aanpassingen met minimale media queries */
@media (max-width: 1024px) {
  .serie, .post {
    flex: 1 1 calc(50% - 20px); /* Twee kolommen bij tablets */
    max-width: calc(50% - 20px);
  }
  .blogintro {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .serie, .post {
    flex: 1 1 100%; /* Één kolom op mobiele apparaten */
    max-width: 100%;
  }
}
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .blog-content {
    max-width: 90%;
  }
}
.blog-content #blogTitel {
  margin-bottom: 20px;
  text-align: center;
}
.blog-content #blogAfbeelding {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px 0;
}
.blog-content .blogTekst {
  margin-top: 20px;
  line-height: 1.6;
}
.blog-content .blogTekst h2, .blog-content .blogTekst h3 {
  margin: 20px 0 10px;
}
.blog-content .blogTekst p {
  margin: 10px 0;
}
.blog-content .blogTekst ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}
.blog-content .blogTekst ul li {
  margin-bottom: 5px;
}
.blog-content .blog-link {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
  text-decoration: none;
  border: 1px solid currentColor;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.blog-content .blog-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.blog-link {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
  text-decoration: none;
  border: 1px solid currentColor;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.blog-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/*# sourceMappingURL=main.css.map */
