/* Grundeinstellungen */
:root {
    --green-dark: #1C3B37;
    --green-light: #006B5F;
}


body {
    min-height: 100vh;
    background: var(--green-dark);
    color: white;
    font-family: "obliqua", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 40px;
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 60px;
}

/* Text Section */
.text-section {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.logo-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 4px;
}

.warning {
    width: 150px;
    height: auto;
    margin-top: 10px;
}

.logo {
    width: 400px;
    height: auto;
    margin-top: 36px;
    margin-left: 20px;
}

.tagline {
    margin-left: 90px;
    font-size: 15px;
    margin-bottom: 40px;
}

.Headline {
    margin-top: 50px;
    font-size: 54px;
	font-weight: 400;
	margin-bottom: 30px;
}

.message {
    font-size: 150%;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 500px;
}

.cta {
    display: inline-block;
    color: white;
    text-decoration: none;
    border: 5px solid var(--green-light);
    padding: 25px 30px;
    border-radius: 11px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
}

.cta:hover {
  transform: scale(1.05);  /* Leichtes Aufklappen */
  background-color: var(--green-light);  /* Hintergrundfarbe ändert sich */
}


.social {
    display: flex;
    gap: 6px;
}

.social img {
    width: 35px;
    height: 35px;
    margin-top: 20px;
}

.social img {
    transition: transform 0.3s ease; /* Übergangsanimation definieren */
  }
  
  .social img:hover {
    transform: scale(1.2); /* Bei Hover wird das Icon um 20% vergrößert */
  }

/* Baubild */
.image-section {
    position: absolute;
    right: 1px;
    top: 35px;
    width: 650px;
    z-index: 1;
}

.image-section img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    padding: 15px;
    opacity: 0.7;
}

.footer strong {
    font-weight: 700;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .image-section {
        right: -100px;
        width: 600px;
    }
}

@media (max-width: 1000px) {
    .Headline {
      font-size: clamp(30px, 20vw, 54px); 
    }
    .logo {
        width: 370px;
        height: auto;
        margin-top: 36px;
        margin-left: 0px;
    }
  }




@media (max-width: 991px) {
    body {
        padding: 30px;
    }

    main {
        padding-bottom: 100px;
    }

    .text-section {
        max-width: 100%;
        text-align: center;
    }

    .tagline {
        margin-left: 0;
        text-align: center;
    }

    .image-section {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        margin: 40px auto;
    }

    .social {
        justify-content: center;
    }

    h1 {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px;
    }

    .logo-group {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .tagline {
        margin-top: 16px;
    }

    h1 {
        font-size: 36px;
    }

    .message {
        font-size: 16px;
    }
}

#impressum h1 {
    margin-bottom: 10px;
}