.menu {
  color: var(--title-color);
}

.img-section {
  background: var(--main-color);
  /*border: 4px solid var(--accent-color);*/
  width: 100%;
  max-width: 1100px;
  padding: 30px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-title {
  font-size: 30px;
  color: var(--title-color);
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
}

.section-subtitle {
  font-size: 40px;
  color: var(--title-color);
  margin-bottom: 20px;
  margin-top: 40px;
  text-align: center;
}

.img-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 90px;
  margin-top: 40px;
}

.img-item {
  width: 222px;
  max-width: 222px;
  text-align: center;
  margin-bottom: 10px;
}

.img-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.title {
  font-size: 20px;
  font-weight: normal;
  margin-top: 20px;
  text-align: center;
}

.description {
  font-size: 13px;
  margin-top: 10px;
  color: var(--title-color);
  text-align: center;
}

.price {
  font-weight: normal;
  margin-top: 10px;
  color: var(--title-color);
  text-align: center;
}

.category-select {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#categoryDropdown {
  padding: 10px 16px;
  font-size: 22px;
  border-radius: 8px;
  border: 4px solid var(--accent-color);
  background: white;
  cursor: pointer;
  color: var(--title-color);
  margin-top: 20px;
}

#categoryDropdown:focus-visible,
.category-select select:hover {
  outline: 3px solid var(--link-color);
  outline-offset: 3px;
}

nav {
  flex-wrap: wrap;
}

/*===========================*/
/*Tablets / kleine Desktops*/
/*===========================*/
@media (max-width: 1024px) {
  body {
    max-width: 100%;
    padding: 0;
  }

  body.page-home {
    padding: 0 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 30px;
  }

  #categoryDropdown {
    padding: 6px 10px;
    font-size: 16px;
  }

  .description {
    font-size: 12px;
  }
}

/*====================================*/
/*Kleine Tablets und große Smartphones*/
/*====================================*/
@media (max-width: 768px) {
  body.page-home {
    font-size: 20px;
  }

  #categoryDropdown {
    padding: 6px 10px;
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 28px;
  }

  .description {
    font-size: 12px;
  }
}

/*====================*/
/*        Handy       */
/*====================*/

@media (max-width: 480px) {

  body.page-home {
    font-size: 18px;
  }

  #categoryDropdown {
    padding: 6px 10px;
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 24px;
  }

  body.page-home .description {
    font-size: 14px;
  }

  body.page-home .img-item {
    width: 300px;
    max-width: 300px;
  }
}