/* ↓↓↓↓↓Groot fotogebied↓↓↓↓↓ */
.bigfoto-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 100%;
  background-color: var(--title-color);
}

.bigfoto-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  height: 100%;
  max-width: 1300px;
}

.circle {
  background-color: #A3D1C6;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.image-container {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.image {
  justify-content: center;
  position: relative;
  align-items: center;
  display: flex;
  z-index: 2;
  margin-right: -30%;
  margin-bottom: -50%;
  width: 35vw;
  height: 35vw;
  max-width: 600px;
  max-height: 600px;
}

.image img {
  z-index: 2;
  max-height: 80%;
  width: 80%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  position: absolute;
}

.text {
  height: 100%;
  width: 100%;
  display: grid;
  align-items: center;
}

.text h1 {
  width: 100%;
  height: auto;
  font-size: 6rem;
  color: rgb(255, 255, 255);
  position: relative;
}

.text h1 span {
  position: absolute;
}

@keyframes text1 {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  1% {
    transform: translate(0, 0);
    opacity: 1;
  }

  15% {
    transform: translate(0, 0);
    opacity: 1;
  }

  24% {
    transform: translate(0, 0);
    opacity: 1;
  }

  25% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  100% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
}

@keyframes text2 {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  25% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  26% {
    transform: translate(0, 0);
    opacity: 1;
  }

  40% {
    transform: translate(0, 0);
    opacity: 1;
  }

  49% {
    transform: translate(0, 0);
    opacity: 1;
  }

  50% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  100% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
}

@keyframes text3 {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  50% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  51% {
    transform: translate(0, 0);
    opacity: 1;
  }

  65% {
    transform: translate(0, 0);
    opacity: 1;
  }

  74% {
    transform: translate(0, 0);
    opacity: 1;
  }

  75% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  100% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
}

@keyframes text4 {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  75% {
    transform: translate(-10%, 0);
    opacity: 0;
  }

  76% {
    transform: translate(0, 0);
    opacity: 1;
  }

  90% {
    transform: translate(0, 0);
    opacity: 1;
  }

  99% {
    transform: translate(0, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
}

.text h1 span:nth-child(1) {
  animation: text1 30s ease-in-out infinite;
}

.text h1 span:nth-child(2) {
  animation: text2 30s ease-in-out infinite;
}

.text h1 span:nth-child(3) {
  animation: text3 30s ease-in-out infinite;
}

.text h1 span:nth-child(4) {
  animation: text4 30s ease-in-out infinite;
}

@media screen and (max-width: 1300px) {
  .bigphoto-container {
    overflow-x: hidden;
  }

  .bigfoto-info {
    width: 100%;
  }

  .text {
    padding: 0 0 0 10%;
  }

  .text h1 {
    font-size: 5rem;
  }

  .image {
    overflow-x: clip;
    margin-right: 0;
    height: 40vw;
    width: 40vw;
  }

  .circle {
    width: 200%;
    height: 160%;
    position: absolute;
    left: 0;
    border-radius: 50% 0 0 50%;
  }

  .image img {
    max-height: 90%;
    width: 90%;
  }
}

/* ↓↓↓↓↓Introductiegebied↓↓↓↓↓ */
main {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 300px;
}

.hero-section p {
  font-size: 1.5rem;
  font-family: var(--text-font);
}

.hero-section h1 {
  font-size: 2.9rem;
}

.more-aboutus-btn {
  background-color: #3D8D7A;
  color: rgb(255, 255, 255);
  width: 250px;
  border-radius: 4px;
  padding: 15px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

.more-aboutus-btn:hover {
  background-color: #04AA6D;
  color: white;
}

.more-aboutus-btn {
  text-decoration: none;
  color: #FBFFE4;
  display: flex;
  font-family: var(--title-font);
  justify-content: center;
}

/* ↓↓↓↓↓Gebied met de meeste verkochte artikelen↓↓↓↓↓ */
.container-mostsale {
  width: 100%;
  background: white;
  margin-top: 200px;
  margin-bottom: 20vh;
}

.most-sale-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.button {
  background-color: #4A7F55;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.button h3 {
  color: #FBFFE4;
}

.main-product-mostsale {
  display: flex;
  background-color: #C8E0B8;
  margin-top: 20px;
  margin-bottom: 100px;
}

.title-product-main {
  margin-bottom: 20px;
}

.main-product-mostsale img {
  margin-right: 20px;
  width: 100%;
}

.products-mostsale {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.product-mostsale {
  background-color: #C8E0B8;
  width: 30%;
}

.product-mostsale img {
  width: 100%;
  height: 50%;
}

.main-product-image {
  width: 40%;
}

.product-text {
  height: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-text h1 {
  margin-bottom: 25px;
}

.main-product-mostsale-text {
  width: 60%;
  padding: 20px;
}

.product-text svg {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

/* ↓↓↓↓↓Workflow Introductiegebied↓↓↓↓↓ */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-steps h1 {
  color: #00796b;
  text-align: center;
  margin-bottom: 40px;
  font-size: 3rem;
}

.container-steps p {
  color: #333;
  line-height: 1.6;
  text-align: center;
  max-width: 1000px;
  font-size: 1.5rem;
}

a {
  color: #00796b;
  text-decoration: none;
  font-weight: bold;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
  padding: 20px 0;
}

.line {
  position: absolute;
  top: calc(50% - 1px);
  width: 100%;
  height: 2px;
  background-color: #D0B5B5;
  z-index: 1;
}

.step {
  position: relative;
  width: 25%;
  text-align: center;
}

.number {
  font-size: 5rem;
  font-weight: bold;
  color: #CCCCCC;
  display: block;
  font-family: var(--title-font);
  height: 50%;
  padding-bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #00796b;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}

.step h3 {
  font-size: 1rem;
  color: black;
  height: 50%;
  padding-top: 20px;
}

/* ↓↓↓↓↓Responsive adjustments for smaller screens ↓↓↓↓↓ */
@media screen and (max-width: 768px) {
  .bigfoto-container {
    height: auto;
  }

  .title-product-main {
    font-size: 1.5rem;
  }

  .bigfoto-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .text h1 {
    font-size: 4rem;
  }

  .image {
    width: 70vw;
    height: auto;
    margin-right: 0;
  }

  .circle {
    width: 150%;
    height: 150%;
  }

  .hero-section {
    margin-top: 150px;
  }

  .hero-section p {
    font-size: 1.2rem;
  }

  .more-aboutus-btn {
    width: 200px;
    font-size: 1.4rem;
    padding: 10px 8px;
  }

  .products-mostsale {
    flex-direction: column;
    gap: 20px;
  }

  .product-mostsale {
    width: 100%;
  }

  .container-steps h1 {
    font-size: 2.5rem;
  }

  .container-steps p {
    font-size: 1.2rem;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .line {
    display: none;
  }

  .step {
    width: 80%;
    margin-bottom: 20px;
  }

  .number {
    font-size: 4rem;
  }

  .main-product-mostsale {
    display: flex;
    flex-direction: column;
  }

  .main-product-mostsale-text {
    width: 100%;
    height: 50%;
  }

  .main-product-image {
    width: 100%;
  }

  .button h3 {
    font-size: 0.7rem;
  }

  .most-sale-top h1 {
    font-size: 1.5rem;
  }
}
  .container-contact {
    display: flex;
    align-items: center;
    background-color: #b5d7a8;
    border-radius: 30px;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 200px;
    margin-bottom: 200px;
  }

  .image-container-contact img {
    height: 300px;
    object-fit: contain;
  }

  .text-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    flex: 1;
  }

  .text-container h2 {
    color: #1c4740;
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .buttons {
    display: flex;
    gap: 60px;
  }

  .tel-button,
  .email-button {
    padding: 15px 70px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
  }

  .tel-button {
    background-color: #4a9a83;
    color: white;
  }

  .email-button {
    background-color: white;
    color: #1c4740;
  }

  @media screen and (max-width: 900px) {
    .container-contact {
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    .tel-button,
    .email-button {
      padding: 15px 20px;

    }

    .text-container h2 {
      font-size: 1.2rem;

    }

    .buttons {
      gap: 30px;
    }

    .image-container-contact img {
      height: 250px;
    }

  }
