/*
Colors
IJskoffie: #59afb9;
Pornstar: #e6a269;
Aperol: #e86549;
Sgroppino: #b7a678;
Coffee_light: #d1ad7f;
Coffee_dark: #96714b;



*/
html {
  scroll-behavior: smooth;
}
.bg-black{
	background-color: #000;
}
.bg-blue{
	background-color: #59afb9;
}
.bg-texture-paper{
	background-image: url("https://www.transparenttextures.com/patterns/beige-paper.png");
}
.bg-texture-asfalt{
	background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
}
.koco-logo{
	width: 160px;
}
.hero-banner {
	background-color: #000;
	padding: 4rem 0;
	text-align: center;
}
.product-caroussel {
	background-image: url("/public/images/bg-sand.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 4rem 0;
}
@media (max-width: 768px) {
	.product-caroussel {
		padding: 2rem 0;
	}
}

.scroll-indicator {
  font-size: 2rem;
   display: inline-block;
 color: #fdfad4;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


.hero-xl {
	font-size: 6em;
	color: #fdfad4;
	line-height: 80%;
	text-transform: uppercase;
}

.hero-l {
	font-size: 4em;
	line-height: 80%;
	text-transform: uppercase;
	color: #fdfad4;
}

@media (max-width: 768px) {
	.hero-xl {
		font-size: 4em;
	}
	.hero-l {
		font-size: 3em;
		line-height:110%;
	}
}
.hero-xl,
.hero-l {
	background: linear-gradient(90deg, #59afb9, #e86549); /* voorbeeldgradient */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.hero-xl,
.hero-l {
	background: linear-gradient(to top, #59afb9, #e6a269); /* IJskoffie naar Pornstar tint */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

/* van donker geel naar licht pastelgeel */

.hero-l {
	background: linear-gradient(to top, #e6d877, #fffad1); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.hero-xl{
	background: linear-gradient(to top, #96714b, #d1ad7f); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-slide-left {
  animation: slideInLeft 1s ease-out forwards;
}

.hero-slide-right {
  opacity: 0; /* verberg initieel */
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.4s;
}

/* Slide in from left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50%);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.slide-in-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50%);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.slide-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}


/* Fade in */
.fade-in {
  opacity: 0;
  transition: opacity 2s ease-out;
}

.fade-in.in-view {
  opacity: 1;
}

/* Zoom in */
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.zoom-in.in-view {
  opacity: 1;
  transform: scale(1);
}



.text-light-grey{
	color:#EEE;
}
.hero-content{
	color: #BBB;
}
.text-box-border-right{
	border-right: 1px solid #DDD;
}
@media (max-width: 768px) {
  .text-box-border-right {
    border-right: 0px;
    border-bottom: 1px solid #DDD;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.footer{
	background-color: #000;
}
.footer p{
	color: #CCC;
}
.btn-outline-light:hover {
	background-color: #ffffff;
	color: #000000;
	border-color: #ffffff;
	transition: 0.3s;
}

.btn-solid-red {
	background: linear-gradient(to right, #e86549, #f6ad8a);
	background-size: 200% auto;
	background-position: left center;
	color: #ffffff;
	border: none;
	transition: background-position 0.4s ease, box-shadow 0.4s ease;
}

.btn-solid-red:hover {
	background-position: right center;
	box-shadow: 0 4px 10px rgba(232, 101, 73, 0.3);
}

@media (max-width: 768px) {
.flyer-img {
    max-width: 90%;
  }
}



/* Instagram Social Media Carroussel */
/*
  .carousel-img {
    max-height: 400px;
    object-fit: cover;
	  border: 10px solid white;
  }
*/









/* Carousel */

.owl-stage-outer {
  overflow: visible !important;
}

/* Achtergrond van de carousel */
.carousel,
.carousel-item {
  background-color: black;
}


/* Algemene stijl voor de afbeeldingen */
    /* Voorbeeld: algemene achtergrondkleur voor de carousel */
.owl-carousel {
	background-color: black;
}

/* Zorg dat autoWidth de breedtes ophaalt vanaf de item-containers */
.owl-carousel .item.side-item img {
  width: 350px !important;
  transform: rotate(-10deg) !important;
  opacity: 0.8 !important;
}
.owl-carousel .item.center-item img {
  width: 400px !important;
  transform: rotate(0deg) !important;
  z-index: 2;
}
/* Overschrijf de img-fluid max-width als dat nodig is */
.owl-carousel .item img {
  max-width: none;
}

/* Overige styling blijft hetzelfde */
.carousel-img {
  border: 10px solid white;
  display: block;
  margin: 0 auto;
}


/*
.owl-carousel .item {
	background: black;
	position: relative;
	padding: 10px;
	border: none !important;
}
.carousel-img {
	border: 10px solid white;
	display: block;
	margin: 0 auto;
}
.owl-carousel .item.center-item img {
  width: 400px; !important
  transform: rotate(0deg);
  z-index: 2;
}
.owl-carousel .item.side-item img {
  width: 150px; !important 
  transform: rotate(-10deg);
  opacity: 0.8;
}
*/

.owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 2em;
	color: white;
}
.owl-nav .owl-prev {
	left: -30px;
}
.owl-nav .owl-next {
	right: -30px;
}











.gradient-ijskoffie {
  background: linear-gradient(to top, #377c83, #59afb9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-pornstar {
  background: linear-gradient(to top, #c67c3d, #e6a269);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-aperol {
  background: linear-gradient(to top, #b44630, #e86549);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-sgroppino {
  background: linear-gradient(to top, #8f825f, #b7a678);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-coffee-light {
  background: linear-gradient(to top, #b8935f, #d1ad7f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-coffee-dark {
  background: linear-gradient(to top, #6b4e34, #96714b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-ijskoffie-coffee-light {
  background: linear-gradient(to right, #59afb9, #d1ad7f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-pornstar-sgroppino {
  background: linear-gradient(to top, #e6a269, #b7a678);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-aperol-coffee-dark {
  background: linear-gradient(to right, #e86549, #96714b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-ijskoffie-aperol {
  background: linear-gradient(to right, #59afb9, #e86549);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-coffee-blend {
  background: linear-gradient(to right, #96714b, #d1ad7f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-pastel-yellow{
	background: linear-gradient(to top, #e6d877, #fffad1); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}




.atkinson-hyperlegible-regular {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.atkinson-hyperlegible-bold {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.atkinson-hyperlegible-regular-italic {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.atkinson-hyperlegible-bold-italic {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: italic;
}


.averia-sans-libre-light {
  font-family: "Averia Sans Libre", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.averia-sans-libre-regular {
  font-family: "Averia Sans Libre", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.averia-sans-libre-bold {
  font-family: "Averia Sans Libre", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.averia-sans-libre-light-italic {
  font-family: "Averia Sans Libre", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.averia-sans-libre-regular-italic {
  font-family: "Averia Sans Libre", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.averia-sans-libre-bold-italic {
  font-family: "Averia Sans Libre", sans-serif;
  font-weight: 700;
  font-style: italic;
}


// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

