@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "DM Sans";
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.right-panel {
  background: url("/images/garden2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right 55% center;
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
  padding-left: 40%;
  position: relative;
}

.right-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 247, 239, 0.5);
  z-index: -1;
}

.right-panel > * {
  position: relative;
  z-index: 1;
  margin-left: 5rem;
}

.countdown-image {
  max-width: 50%;
  max-height: 40%;
  height: auto;
  display: block;
}

.left-panel {
  background-color: #fbf7ef;
  z-index: 2;
  clip-path: polygon(0% 0%, 60% 0%, 40% 100%, 0% 100%);
  align-items: center;
  justify-content: center;
}

.left-panel .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 45%;
  width: 100%;
}

.coming-soon-text {
  color: #384f35;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #384f35;
  color: #ffffff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #384f35;
  transform: translateY(-2px);
  outline: none;
}

.mobile-image {
  display: none;
}

#kontaktdaten {
  min-height: 100vh;
  color: #ffffff;
  background: #384f35;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  font-family: "DM Sans", sans-serif;
  text-align: left;
}

#kontaktdaten .contact-content {
  max-width: 700px;
  width: 100%;
}

#kontaktdaten .company-legal-info {
  margin-bottom: 40px;
}

#kontaktdaten .company-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#kontaktdaten p {
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 1rem;
}

#kontaktdaten strong {
  font-weight: 700;
}

#kontaktdaten .main-contact-info .section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

#kontaktdaten .contact-person {
  margin-bottom: 30px;
}

#kontaktdaten .contact-person:last-child {
  margin-bottom: 0;
}

#kontaktdaten .contact-person .name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

#kontaktdaten .contact-person .role {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

#kontaktdaten .contact-person .phone,
#kontaktdaten .contact-person .email {
  font-size: 1rem;
}

#kontaktdaten a {
  color: #fbf7ef;
  text-decoration: none;
}

#kontaktdaten a:hover,
#kontaktdaten a:focus {
  text-decoration: underline;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .container {
    height: auto;
  }
  .panel {
    position: relative;
    width: 100%;
    min-height: 50vh;
    clip-path: none !important;
    padding: 50px 20px !important;
  }
  .left-panel {
    z-index: 1;
    background-color: #fbf7ef;
  }
  .coming-soon-text {
    color: #384f35;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .right-panel {
    display: none;
  }
  .mobile-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .left-panel .content-wrapper {
    padding: 0;
  }
  .countdown-image {
    max-width: 75%;
  }
  #kontaktdaten {
    padding: 40px;
  }
  #kontaktdaten .company-name,
  #kontaktdaten .main-contact-info .section-title,
  #kontaktdaten .contact-person .name {
    font-size: 1.05rem;
  }
}
