/* =====================================================
   CHEFS & FRIENDS STYLING
===================================================== */

div.profile-text{
	max-width: 700px;
}

.nav > li > a span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.team-title {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.team-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card h3 {
  margin: 0.5rem 0;
}

.team-card p {
  margin-bottom: 1rem;
	  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
	  max-height: 4.5em;
  overflow: hidden;
  position: relative;
}

.team-card p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 1.2em;
  background: linear-gradient(to right, transparent, var(--light-bg));
}

.team-card .btn-kennis {
  margin-top: auto;
}

.team-img img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.icon-koksmuts {
  width: 1.3em;
  height: 1.3em;
  fill: var(--white);
  transition: transform 0.3s ease;
}

.intro-card {
  background-color: var(--success-color);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =====================================================
   DETAIL PAGE HERO
===================================================== */

/* CTA onder recepten */

.chef-recepten-cta{
text-align:center;
padding:3rem 0 5rem;
}

.chef-recepten-cta h3{
margin-bottom:0.5rem;
}

.chef-recepten-cta p{
max-width:500px;
margin:0 auto 1.5rem;
color:var(--primary-color);
}

.profile-hero {
  background-color: var(--light-yellow);
  padding: 7rem 0 3rem;
  display: flex;
  justify-content: center;
}

.profile-content {
  display: flex;
  width: 1500px;
  justify-content: space-around;
  align-items: center;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.profile-photo {
  position: relative;
}

.profile-photo img {
  width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: -3rem;
}

.profile-quote-wrapper {
  position: absolute;
  top: 10rem;
  right: -5rem;
  max-width: 220px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--btn-radius);
  transform: rotate(5deg);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-icon img{
  width:150px;
  height:auto;
}

.profile-quote {
  line-height: 1.4;
  word-break: break-word;
}

/* Eigenschappen */

.eigenschappen-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: left;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.eigenschappen-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-color);
}

.dot-separator {
  width: 6px;
  height: 6px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}



/* GRID */
.chef-recepten-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
	padding-top: 30px;
}

/* KAART */
.chef-recepten .latest-card {
  flex: 1 1 calc(33.333% - 3rem);
  max-width: 450px;
  position: relative;
  transition: all 0.25s ease;
}

.chef-recepten .latest-card:hover {
  transform: translateY(-10px);
}

.chef-recepten {
  text-align: center;
	padding-bottom:100px;}



/* IMAGE */
.chef-recepten .latest-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
	padding-top: 2rem;
}

.chef-recepten .latest-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.chef-recepten .latest-card__overlay {
  position: absolute;
  bottom: -3rem;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  transition: all 0.25s ease;
}

.chef-recepten .latest-card__overlay:hover {
  transform: translateY(-10px);
}

.chef-recepten .latest-card__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* KNOP */


/* =====================================================
   FAVORIET PRODUCT
===================================================== */

.chef-fav-product {
  padding-top: 6rem;
	padding-bottom:3rem;
}

.chef-fav-product .fav-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 1500px;
}

.fav-content > div {
  flex: 1;
  min-width: 0;
}


.image-background {
  background-color: var(--light-bg);
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.product-image-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 auto;
}

.product-image {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 500px;
  width: auto;
}


/* =====================================================
   SOCIALS
===================================================== */

.chef-socials {
  background: var(--primary-color);
  text-align: center;
  padding: 6rem 2rem;
  margin-top: 6rem;
}

.socials-container h2,
.socials-container p {
  color: #fff;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 60px;
  height: 60px;

	  border-radius: 50%;
background: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-4px) scale(1.05);
}

.social-btn img {
  width: 30px;
	  border-radius: 0;

}

/* FRIENDS STYLING*/
.influencer-posts {
  width: 100vw;              
  max-width: 100%;
  margin: 0;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--white);
}


.title-row {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin: 0 auto 4rem;
  padding: 0 4rem;
  text-align: center;
}

.title-row h2 {
  margin: 0;
}

.swiper-slide video {
  max-width: 350px;
  border-radius: 20px;
  margin:0;

}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
}

/* Swiper + Yellow Button Fix */
/* Prev knop naar links laten wijzen */
.swiper-button-prev.btn-yellow-arrow::before {
  transform: rotate(180deg);
}


.swiper-button-prev.btn-yellow-arrow,
.swiper-button-next.btn-yellow-arrow {
  margin: 0 !important;          /* verwijdert negatieve margin */
  transform: none !important;    /* geen schuif animatie */
}

.swiper-button-prev.btn-yellow-arrow:hover,
.swiper-button-next.btn-yellow-arrow:hover {
  transform: scale(1.1) !important;  /* subtiele hover i.p.v. slide */
}


.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: var(--success-color);
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  position: static !important;
  padding: 0; /* extra zekerheid */
  box-sizing: border-box; /* fix voor afwijkingen */
  transition: background 0.3s ease, transform 0.2s ease;
   color: #fff !important;   /* pijltje wit */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.swiper-nav {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  
}


.tiktok-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;   
  gap: 2rem;
  width: 100%;
}

.tiktok-swiper .swiper-slide {
  flex: 0 0 400px; 
  display: flex;
  justify-content: center;
}

.tiktok-swiper .swiper-slide video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}


.chef-quote{
margin:5rem;
	font-size: 20px;
}

.quote-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:20px;
  align-items:flex-start;
	  padding:0rem 3rem;

}

.quote-icon{
font-size:80px;
color:var(--success-color);
line-height:1;
}

p.quote-text{
font-size:20px;
color:var(--primary-color);
padding: 0 2rem
}

.profile-beschrijving{
max-width:650px;
}

.profile-beschrijving p{
margin-bottom:1.4rem;
}

@media (max-width: 1200px) {

  .profile-content{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:60px;
  }


  .profile-text{
    max-width:500px;
  }
	.profile-hero{
padding:5rem 2rem 3rem;
}


}

@media (max-width: 768px){

	
	.product-image{
box-shadow:none !important;
filter:none !important;
}
	
	.social-btn {
    width: 50px;
		height: 50px;}
	
	.social-links{
		gap:15px;
	}
	
	.chef-fav-product .fav-content{
    flex-direction:column;
    width:100%;
    text-align:center;
    gap:2rem;
}

/* tekst eerst */
.chef-fav-product .fav-content > div:first-child{
    order:1;
}

/* product afbeelding daarna */
.chef-fav-product .product-image-wrapper{
    order:2;
}

	
	.chef-fav-product .fav-content{
		gap:8rem;
	}
	
.chef-quote{
margin:3rem 0;
}

.quote-inner{
max-width:100%;
padding:0 1rem;
gap:12px;
}

.quote-icon img{
width:50px;
}


	
.product-image-wrapper{
width:260px;
height:260px;
margin:0 auto;
}

.product-image{
position:relative;
bottom:auto;
left:auto;
transform:none;
max-height:320px;
margin:0 auto;
display:block;
	        left: 100px;
        margin-top: -250px;
}
	
	.chosen-card-inner{
		aspect-ratio: 4/5;
	}
	
	.team-grid {
    grid-template-columns: 1fr 1fr;
  
}
.btn-kennis{
    font-size:13px;
    padding:15px 10px !important;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:0px;
}

	
	.chosen-cards{
		gap:0px;
	}
	
	.team-img img {
    border-radius: 50%;
    width: 130px;
    height: 130px;

}
	
	.team-card{
		padding:1rem;
	}
	
	.team-grid {
    gap: 1rem;
}

.profile-content{
flex-direction:column;
text-align:center;
}

.profile-text{
max-width:100%;
}

.profile-photo img{
width:100%;
margin:0 auto;
}
	
	.quote-icon img{
  width:80px;
}
	
	.quote-inner{
flex-direction:column;
align-items:center;
text-align:center;
padding:0 1.5rem;
}

.quote-icon img{
width:60px;
}

p.quote-text{
padding:0;
font-size:25px;
}

	.chef-recepten-grid{
flex-direction:column;
align-items:center;
gap:2rem;
}

.chef-recepten .latest-card{
flex:none;
width:100%;
max-width:420px;
}

}
