@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merge+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=K2D&display=swap');

body {
  background-color: var(--background-beige);
  margin: 0;
  padding: 0;
}

.cover img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tekst {
  background-color: var(--background-beige);
}

/* --- BUTTONS (Vorige/Volgende) --- */
.btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 150px;
  flex-wrap: wrap;
}

.btn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--main-colour);
  font-family: 'Cormorant', serif;
  transition: transform 0.3s ease;
}

.btn-item:hover {
  transform: scale(1.05);
}

.btn-item img {
  width: 75px;
  height: auto;
}

.btn-item h1 {
  font-size: 18px;
  margin: 0;
  padding-top: 5px;
}

.mirror {
  transform: scaleX(-1);
}

/* --- TEXT BLOK --- */
.text-container-portfolio {
  text-align: center;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 40px;
}

.divider-portfolio {
  height: 1px;
  background: var(--main-colour);
  border: none;
  margin: 40px 140px;
  max-width: 100%;
}

/* --- PORTFOLIO BACKGROUNDS --- */
#portfolio1, #portfolio2, #portfolio3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 0;
}

#portfolio1 {
  background-image: url(../../images/portfolio/reviewbg.jpg);
}

#portfolio2 {
  background-image: url(../../images/portfolio/japan.jpg);
}

#portfolio3 {
  background-image: url(../../images/portfolio/letterbg.jpg);
  filter: brightness(50%);
}

#portfolio1::before,
#portfolio2::before,
#portfolio3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(35%);
}

#portfolio1::before {
  background-image: url(../../images/portfolio/reviewbg.jpg);
}

#portfolio2::before {
  background-image: url(../../images/portfolio/japan.jpg);
}

#portfolio3::before {
  background-image: url(../../images/portfolio/letterbg.jpg);
}

#portfolio1 *, #portfolio2 *, #portfolio3 * {
  position: relative;
  z-index: 2;
}

/* --- LOVE LETTER TEXT --- */
.reviews-content {
  max-width: 950px;
  padding: 20px;
}

.reviews-content h6 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.review {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 32px;
  font-weight: 100;
  color: white;
  line-height: 1.2;
  padding: 70px 0;
}

.naam {
  font-size: 20px !important;
  color: white;
}

/* --- GALLERY --- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 50px;
  margin: 60px 140px 0 140px;
  padding-bottom: 60px;
}

.gallery-item {
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .btn-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: center;
  }

  .btn-item {
    flex-direction: column;
    text-align: center;
  }

  .btn-item img {
    width: 60px;
  }

  .btn-item h1 {
    font-size: 16px;
  }

  .text-container-portfolio {
    padding: 0 20px;
  }

  .divider-portfolio {
    margin: 30px 30px;
  }

  .photo-gallery {
    margin: 40px 20px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
  }

  .review {
    font-size: 20px;
    padding: 30px 15px;
  }

  .reviews-content h6 {
    font-size: 18px;
  }

  .naam {
    font-size: 14px !important;
  }

  #portfolio1, #portfolio2, #portfolio3 {
    height: 350px;
  }
}
