/* hotplate.css - eigenes Styling für die Hotplate-Seite */

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7fa;
  color: #222;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
}
.navbar-logo img {
  height: 40px;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}
.navbar-menu a:hover,
.navbar-menu .navbar-action:hover {
  background: #f0f0f0;
  color: #0078d7;
}
.navbar-action {
  background: #0078d7;
  color: #fff !important;
  margin-left: 0.5rem;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: background 0.2s;
}
.navbar-action:hover {
  background: #005fa3;
}

.navbar-toggle {
  display: none;
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .navbar-logo {
    flex: 1;
  }
  .navbar-toggle {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    width: 32px;
    height: 32px;
    z-index: 20;
    opacity: 0;
    cursor: pointer;
  }
  .navbar-toggle + label {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    width: 32px;
    height: 32px;
    z-index: 21;
    cursor: pointer;
  }
  .navbar-toggle + label span,
  .navbar-toggle + label span:before,
  .navbar-toggle + label span:after {
    display: block;
    position: absolute;
    width: 32px;
    height: 4px;
    background: #222;
    border-radius: 2px;
    transition: 0.3s;
    content: "";
  }
  .navbar-toggle + label span {
    top: 14px;
    left: 0;
  }
  .navbar-toggle + label span:before {
    top: -10px;
    left: 0;
  }
  .navbar-toggle + label span:after {
    top: 10px;
    left: 0;
  }
  .navbar-toggle:checked + label span {
    background: transparent;
  }
  .navbar-toggle:checked + label span:before {
    transform: rotate(45deg);
    top: 0;
  }
  .navbar-toggle:checked + label span:after {
    transform: rotate(-45deg);
    top: 0;
  }
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: none;
    z-index: 15;
  }
  .navbar-toggle:checked ~ .navbar-menu {
    display: flex;
  }
  .navbar-menu a {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 15px;
  }
  .navbar-action {
    margin-bottom: 5%;
  }
}

.logoimg {
  height: 40px;
}

.slideshow-bg {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin: 2rem auto 1rem auto;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}
.slide-bg.active {
  opacity: 1;
  z-index: 1;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.slide-content h1 {
  margin: 0 0 1rem 0;
  font-size: 2.2rem;
}
.slide-content p {
  margin: 0;
  font-size: 1.1rem;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  user-select: none;
}
.slide-btn.prev {
  left: 10px;
}
.slide-btn.next {
  right: 10px;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 5% 0;
}
.feature {
  text-align: center;
  max-width: 22vw;
  min-width: 220px;
  padding: 0;
  border: 1px solid #ddd;
  background: #fff;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.feature img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 1.5rem auto 0.5rem auto;
  display: block;
}
.txtwrap {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.produkte {
  padding: 60px 20px;
  text-align: center;
}
.produkt-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.produkt-grid .produkt {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  text-align: center;
  max-width: 260px;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}
.produkt-grid .produkt:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  border-color: #b3d4fc;
}
.produkt-grid .produkt img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.produkt-grid .produkt h4 {
  margin: 0.5rem 0 0.2rem 0;
  color: #0078d7;
  font-size: 1.15rem;
}
.produkt-grid .produkt p {
  margin: 0;
  font-size: 0.98rem;
  color: #444;
}

/* Fire background section */
.fire-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  margin: 0 0;
  background: url("assets/city.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fire-section .fire-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.fire-text {
  max-width: 40%;
}
.fire-section .fire-text h1 {
  margin: 0;
  font-size: 4rem;
  letter-spacing: 1px;
}
.fire-section img {
  margin-left: 5%;
  min-width: 30vw;
}

/* Fire background section */
.lava-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  margin: 0 0;
  background: url("assets/fire2.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lava-section .lava-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.lava-text {
  max-width: 40%;
}
.lava-section .lava-text h1 {
  margin: 0;
  font-size: 4rem;
  letter-spacing: 1px;
}
.lava-section img {
  margin-left: 5%;
  min-width: 30vw;
}
@media (max-width: 700px) {
  .fire-section .fire-text {
    padding: 1.2rem 0.5rem;
    font-size: 1.1rem;
  }
  .fire-section .fire-text h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature {
    max-width: 90vw;
    width: 90vw;
    margin-bottom: 2rem;
  }
  .produkt-grid {
    gap: 1rem;
  }
  .produkt-grid .produkt {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}
@media (max-width: 700px) {
  .produkt-grid {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .produkt-grid .produkt {
    max-width: 98vw;
    min-width: 0;
    padding: 1rem 0.5rem 0.8rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    padding: 0.5rem 0.5rem;
  }
  .navbar-menu {
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
  .slideshow-bg {
    min-height: 180px;
    max-width: 98vw;
  }
  .slide-content h1 {
    font-size: 1.2rem;
  }
  .slide-content p {
    font-size: 0.95rem;
  }
  .slide-content {
    padding: 1rem 0.5rem;
  }
  .footer {
    padding: 10px 5px;
    font-size: 0.9rem;
  }
}
.download-btn {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, transform 0.2s;
}
.download-btn i {
  margin-right: 0.6em;
  font-size: 1.2em;
  vertical-align: middle;
}
.download-btn:hover,
.download-btn:focus {
  background: #c0392b;
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}
/* Email Formula Styling */
#email-formula {
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.email-for {
  text-align: center;
  margin: 2em 0;
}
.email-formula-container {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.email-formula-container h2 {
  text-align: center;
  color: #0078d7;
  margin-bottom: 1.5rem;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#contactForm label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.2rem;
}
#contactForm input,
#contactForm textarea {
  margin-top: 0.4rem;
  padding: 0.7rem 1rem;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
  background: #f9f9f9;
  transition: border 0.2s;
}
#contactForm input:focus,
#contactForm textarea:focus {
  border: 1.5px solid #0078d7;
  outline: none;
  background: #fff;
}
#contactForm button[type="submit"] {
  background: #0078d7;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
#contactForm button[type="submit"]:hover {
  background: #005fa3;
}
#formMessage {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  color: #0078d7;
}
#contactForm label[style*="display:none"] {
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}
@media (max-width: 600px) {
  .email-formula-container {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
}

.footer {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.5rem 1.2rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}
.footer h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.footer p {
  margin: 0.2rem 0;
  color: #fff;
  font-size: 1rem;
}
.footer .socials {
  margin: 1.2rem 0 1.2rem 0;
}
.footer .socials a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer .socials a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #ff9800;
  border-radius: 6px;
  opacity: 0.7;
}
@media (max-width: 850px) {
  .fire-section .fire-text h1 {
    font-size: 2.5rem;
  }
  .lava-section .lava-text h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 700px) {
  .footer {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .footer .socials {
    margin: 0.7rem 0 0.7rem 0;
  }
  .footer .socials a {
    font-size: 1rem;
  }
  .navbar-action {
    max-width: 90%;
  }
}

@media (max-width: 450px) {
  .fire-section {
    flex-direction: column;
  }
  .lava-section {
    flex-direction: column;
  }
  .fire-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fire-section .fire-text h1 {
    align-self: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}
