* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.black {
  background-color: #000;
  color: #fff;
}

.ww {
  background-color: #f0f0f0;
  color: #fff;
}

.white {
  background-color: #fff;
  color: #000;
}

/* Abschnitt 1 */

#header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.sectionA {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle, #313131 0%, #111111 70%, #000000 100%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-image img {
  width: 700px;
  height: auto;
  object-fit: cover;
  animation: slideUpFadeIn 4s ease-out;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgb(254, 254, 255) 0%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(5px);
  z-index: 1;
}

.text-content {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}


.logo {
  font-size: 4.9rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 5px rgba(254, 254, 254, 0.7);
  animation: slideDownFadeIn 4s ease-out;

  max-width: 100vw;
  width: 1000px;     
  margin: 0 auto;   
  word-break: break-word;
}

.fixed-logo {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}

.fixed-logo img {
  height: 130px;
  width: auto;
}

.container {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 110px;
  height: 110px;
}

@keyframes slideDownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  65% {
    opacity: 0.9;
    transform: translateY(20px);
  }
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.round-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff7256;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.round-link:hover {
  background-color: #aaa;
}

.circle-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circle-text svg {
  position: absolute;
  top: 0;
  left: 0;
}

text {
  font-size: 10px;
  text-anchor: middle;
  fill: #fff;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-text svg {
  animation: rotate 8s linear infinite;
}

/* Abschnitt 2 */

#produkte {
  min-height: 100vh;
  align-items: flex-start;
}

.sectionB {
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
}

.product {
  background-color: #f9f9f9;
  padding: 20px;
  width: 30%;
  margin-top: 60px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.produkte-content {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.produkte-ueberschrift {
  font-size: 60px;
  margin-bottom: 40px;
  margin-top: 0;
  padding-bottom: 200px;
  color: #000;
}

.product p {
  font-size: 16px;
  color: #333;
}

.product:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.produkte-beschreibung {
  font-size: 18px;
  color: #555;
  margin-top: -180px;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Abschnitt 3 */

.sectionC {
  background-color: #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
  text-align: center;
}

.text-contentA {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  color: #000;
}

.btn {
  padding: 12px 24px;
  background-color: #ff7256;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Abschnitt 4 */

.sectionD {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
  text-align: center;
  padding: 40px 20px;
}

.review-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 80px;
  color: #fff;
}

.review-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.review-box {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px 20px 50px; 
  width: 300px;
  min-height: 250px;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.reviewer-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff7256;
}

.review-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  margin-top: 45px;
}

.review-box:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.stars {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #ff7256;
  letter-spacing: 5px;
}

/* Abschnitt 5 */

#footer {
  min-height: 25vh;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  text-align: center;
  width: 100%;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  color: #ff7256;
}

.footer-bottom {
  font-size: 0.9em;
  color: #777;
}

@media screen and (max-width: 1024px) {
  .text-content {
    z-index: 100;
  }

  .logo {
    font-size: 3.5rem;
    margin-top: -20vh;
  }

  .hero-image img {
    width: 650px;
  }

  .fixed-logo {
    font-size: 1.2rem;
    top: 15px;
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  /* Abschnitt 1*/

  #header {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding-top: 350px;
  }

  .logo {
    font-size: 3rem;
    margin-top: 0;
    padding: 0 15px;
  }

  .hero-image img {
    width: 500px;
  }

  .fixed-logo img {
    height: 110px;
   }

  .container {
    bottom: 20px;
    right: 10px;
    width: 90px;
    height: 90px;
  }

  .round-link {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  text {
    font-size: 8px;
  }

  /* Abschnitt 2*/

  .product {
    width: 100%;
  }

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

  .produkte-ueberschrift {
    font-size: 40px;
    padding-bottom: 100px;
  }

  .produkte-beschreibung {
    margin-top: -100px;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 2.2rem;
  }

  .hero-image img {
    width: 400px;
  }

  .container {
    display: none;
  }

  .fixed-logo img {
   height: 60px;
  }

  text {
    font-size: 7px;
  }
}
