  @font-face {
	  font-family: 'WinkySans';
	  src: url('/fonts/WinkySans-VariableFont_wght.ttf') format('truetype');
	  font-weight: normal;
	  font-style: normal;
	}
    body {
      font-family: 'WinkySans', sans-serif;
      margin: 0;
      padding: 0;
      background: #F2DFB9;
      color: #333;
      text-align: center;
    }
	
    header {
		background: #8FA17B;
		background: linear-gradient(90deg, rgba(143, 161, 123, 1) 0%, rgba(162, 170, 112, 1) 50%, rgba(185, 190, 134, 1) 100%);
		color: white;
		padding: 40px 20px;
    }
    header h1 {
      font-size: 2.5em;
    }
	
  .logo {
    margin-top: 12px;
    margin-bottom: 12px;;
  }
  .logo img {
    width: auto;
    height: 100px;
  }
  .language-selector a {
    font-size: 1.2em;
    color: #333;
  }
  footer {
    margin-top: 10px;
    margin-bottom: 80px;
    font-size: 0.9em;
    color: #777;
  }
  
  .carousel-section {
  padding: 60px 20px;
  background-color: #F2DFB9;
  /* background: linear-gradient(to bottom, #F2DFB9, #ffffff); */
  text-align: center;
}

.carousel-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 10px;
  width: max-content;
  margin: 0 auto; /* 🧩 To centruje zawartość karuzeli */
}

.carousel-track img {
  width: 240px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}


.avatar-image-section {
  background: #F2DFB9;
  padding: 60px 20px;
  text-align: center;
}

.avatar-image-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}
.responsive-avatar-image {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.emotion-image-section {
  background: #F2DFB9;
  padding: 60px 20px;
  text-align: center;
}

.emotion-image-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.responsive-emotion-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-section {
  background: #F2DFB9;
  padding: 60px 20px;
  text-align: center;
}

.video-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}
.video-content {
	padding: 20px 20px;
}
.video-content img {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 20px auto;
}
.video-app {
	width: 100%;
	max-width: 340px;
	border: 6px solid white;
	border-radius: 12px;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
	margin: 20px auto;
	display: block;
}

.facebook-section {
  background: #F2DFB9;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 60px;
  text-align: center;
}

.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* odstęp między badge'ami */
    margin-top: 20px;
}

.store-badges img {
    height: 60px;
    transition: transform 0.2s ease;
}

.store-badges img:hover {
    transform: scale(1.05); /* mały efekt hover */
}

@media (max-width: 480px) {
    .store-badges {
        gap: 12px;
        padding: 0 12px;
    }

    .store-badges img {
        height: 50px;
        max-width: 100%;
    }
}