/*----------------------
Allgemein
-----------------------*/
body{
    margin: 0;
}

@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Thin.ttf') format('truetype');
  font-weight: 100;
}

/*----------------------
Navbar
-----------------------*/
.navbar{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-logo{
    display: flex;
    justify-content: right;
    align-items: center;
}

.nav-logo img{
    height: 100px;
    width: auto;
    margin-left: 40px;
    filter: drop-shadow(0 0 8px rgba(19, 120, 40, 0.55));
}

.nav-links{
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    list-style: none;
    padding: 40px;
    gap: 30px;
}

.nav-links a{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    text-decoration: none;
    transition: 0.4s;
}

.nav-links a:hover{
    text-decoration: underline;
}

.nav-balken{
    background-color: rgb(19, 63, 25);
    width: 100%;
    height: 2px;
    position: fixed;
    top: 100px;
}

/*----------------------
Startseite-Hero1
-----------------------*/
.hero1-startseite{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 20px;
    margin-top: 80px;
    margin-bottom: 20px;
    
}

.hero1-startseite h1, .hero1-startseite h2{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    text-align: center;
}

.tabs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  width: 100%;
  border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
  flex: 1;
  padding: 16px 12px;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-family: 'NotoSans';
  color: #333;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.tab-btn.aktiv {
  background: rgb(19, 63, 25);
  color: white;
}

.tab-btn:hover:not(.aktiv) {
  background: rgb(59, 108, 65);
  color: rgb(255, 255, 255);
}

.tab-inhalt {
  display: none;
}

.tab-inhalt.aktiv {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 60px 80px;
}

.tab-inhalt-text {
  flex: 1;
}

.tab-inhalt-text h2 {
  color: rgb(19, 63, 25);
  font-family: 'NotoSans';
  font-size: 2rem;
  margin: 0 0 16px 0;
}

.tab-inhalt-text p {
  color: rgb(19, 63, 25);
  font-family: 'NotoSans';
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.tab-inhalt-text a {
  color: rgb(19, 63, 25);
  font-family: 'NotoSans';
  font-weight: 700;
  text-decoration: underline;
}

.tab-inhalt-bild {
  flex: 1;
}

.tab-inhalt-bild img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero1-startseite-tarif{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-color: rgb(19, 63, 25);

    margin-top: 0px;
    margin-bottom: 100px;
}

.hero1-startseite-text2{
    display: flex;
    justify-content: center;
}

.hero1-startseite-text2 h3{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero1-startseite-button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.4s;
}

.hero1-startseite-button:hover{
    transform: scale(1.04);
}

.hero1-startseite-button a{
    color: rgb(19, 63, 25);
    text-decoration: none;
    border: 1px solid rgb(19, 63, 25);
    border-radius: 6px;
    padding: 6px 14px;
    font-family: 'NotoSans';
}

/*----------------------
Startseite-Hero2
-----------------------*/
.hero2-startseite{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.hero2-startseite-überschrift{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hero2-startseite-überschrift h1{
    color: rgb(19, 63, 25);
    text-align: center;
    font-family: 'NotoSans';
}

.hero2-startseite-text{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.beratung, .wünsche, .geld{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    width: 300px;
    transition: 0.4s;
}

.beratung:hover, .wünsche:hover, .geld:hover{
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
    background-color: rgb(19, 63, 25);
    border-radius: 15px;
    border-color: black;
}

.beratung:hover h2, .wünsche:hover h2, .geld:hover h2,
.beratung:hover p, .wünsche:hover p, .geld:hover p {
    color: white;
}

.beratung h2, .wünsche h2, .geld h2, .beratung p, .wünsche p, .geld p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    text-align: center;
    margin: 10px;
}

.hero2-startseite-anfrage{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-color: rgb(19, 63, 25);
    
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero2-startseite-text2{
    display: flex;
    justify-content: center;
}

.hero2-startseite-text2 h3{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero2-startseite-button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.4s;
}

.hero2-startseite-button:hover{
    transform: scale(1.04);
}

.hero2-startseite-button a{
    color: rgb(19, 63, 25);
    text-decoration: none;
    border: 1px solid rgb(19, 63, 25);
    border-radius: 6px;
    padding: 6px 14px;
    font-family: 'NotoSans';
}

/*----------------------
Hero3-Startseite
-----------------------*/
.hero3-startseite{
    background-color: rgb(19, 63, 25);
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.hero3-startseite-überschrift{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    justify-content: left;
}

.hero3-startseite-überschrift h1{
    color: white;
    font-family: 'NotoSans';
    text-align: left;
}

.hero3-startseite-text{
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 20px;
    list-style: none;
    align-items: flex-start;
}

.hero3-startseite-text h3, .hero3-startseite-text p{
    color: white;
    font-family: 'NotoSans';
    text-align: left;
}

.hero3-startseite-balken{
    background-color: white;
    width: 100%;
    height: 2px;
}

.hero3-startseite-anfrage{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 40px;
}

.hero3-startseite-text2{
    display: flex;
    justify-content: center;
}

.hero3-startseite-text2 h3{
    color: white;
    font-family: 'NotoSans';
}

.hero3-startseite-button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.4s;
}

.hero3-startseite-button:hover{
    transform: scale(1.04);
}

.hero3-startseite-button a{
    color: white;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 6px;
    padding: 6px 14px;
    font-family: 'NotoSans';
}

/*----------------------
Hero1-Tarife
-----------------------*/
.hero1-tarife{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 140px;
}

.hero1-tarife-überschrift{
    display: flex;
    justify-content: center;
}

.hero1-tarife-überschrift h1{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero1-tarife-text{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    margin: 40px;
}

.basic, .professional, .business{
    width: 300px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(19, 63, 25);
    border-radius: 8px;
    transition: 0.4s;
}

.basic:hover, .professional:hover, .business:hover{
    transform: scale(1.04);
}



.basic-text, .professional-text, .business-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
}

.basic-text p, .professional-text p, .business-text p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    padding-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    min-height: 28px;
}

.basic-überschrift, .professional-überschrift, .business-überschrift{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.basic-überschrift h3, .professional-überschrift h3, .business-überschrift h3, .basic-text p, .professional-text p, .business-text p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero1-tarife-button{
    display: flex;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 15px;
    transition: 0.4s;
}

.hero1-tarife-button a{
    color: rgb(19, 63, 25);
    text-decoration: none;
    border: 1px solid rgb(19, 63, 25);
    border-radius: 6px;
    padding: 6px 14px;
    font-family: 'NotoSans';
}

.hero1-tarife-button:hover{
    transform: scale(1.04);
}

/*----------------------
Hero2-Tarife
-----------------------*/
.hero2-tarife{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 80px;
    margin-bottom: 80px;
}

.hero2-tarife-überschrift{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin: 0;
}

.hero2-tarife-überschrift h1{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    margin-bottom: 0;
}

.hero2-tarife-text{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    margin-top: 10px;
    row-gap: 40px;
}

.hosting{
    grid-column: 2;
}

.pflege, .logo, .seo, .extra-seite, .google-maps, .bildergalerie, .hosting{
    height: 300px;
    width: 330px;
    border: solid 2px rgb(19, 63, 25);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
}

.pflege:hover, .logo:hover, .seo:hover, .extra-seite:hover, .google-maps:hover, .bildergalerie:hover, .hosting:hover{
    transform: scale(1.04);
}

.pflege h3, .logo h3, .seo h3, .extra-seite h3, .google-maps h3, .bildergalerie h3, .hosting h3, .pflege p, .logo p, .seo p, .extra-seite p, .google-maps p, .bildergalerie p, .hosting p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.pflege p, .logo p, .seo p, .extra-seite p, .google-maps p, .bildergalerie p{
    margin-top: 20px;
    margin-bottom: auto;
    margin-left: 10px;
    margin-right: 10px;
}

.pflege p + p, .logo p + p, .seo p + p, .extra-seite p + p, .google-maps p + p, .bildergalerie p + p, .hosting p + p{
    margin-top: 8px;
    font-size: 0.9em;
    opacity: 0.85;
}

/*----------------------
Hero1-Über mich
-----------------------*/
.hero1-über-mich{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 60px;
    margin-top: 140px;
    height: 100vh;
}

.hero1-über-mich-überschrift{
    display: flex;
    justify-content: flex-start;
    width: 700px;
}

.hero1-über-mich-überschrift h1{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero1-über-mich-text1{
    display: flex;
    justify-content: flex-start;
    width: 700px;
}

.hero1-über-mich-text1 p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero1-über-mich-text2{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 700px;
}

.hero1-über-mich-text2 p, .hero1-über-mich-text2 h3{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.hero1-über-mich-text3{
    display: flex;
    justify-content: flex-start;
    width: 700px;
}

.hero1-über-mich-text3 h3{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

/*----------------------
Impressum
-----------------------*/
.hero1-impressum{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    height: 100vh;
}

.hero1-impressum-überschrift{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero1-impressum-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero1-impressum-überschrift h1, .hero1-impressum-text p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}
    
/*----------------------
Datenschutz
-----------------------*/

.datenschutz {
    max-width: 860px;
    margin: 0 auto;
    padding-top: 130px;
    padding-bottom: 80px;
    padding-left: 32px;
    padding-right: 32px;
    font-family: 'NotoSans';
    color: rgb(19, 63, 25);
}

.datenschutz h1 {
    font-family: 'NotoSans';
    font-weight: 700;
    font-size: 2rem;
    color: rgb(19, 63, 25);
    margin-bottom: 8px;
}

.datenschutz h2 {
    font-family: 'NotoSans';
    font-weight: 700;
    font-size: 1.25rem;
    color: rgb(19, 63, 25);
    margin-top: 48px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(19, 63, 25, 0.18);
}

.datenschutz h3 {
    font-family: 'NotoSans';
    font-weight: 700;
    font-size: 1rem;
    color: rgb(19, 63, 25);
    margin-top: 24px;
    margin-bottom: 8px;
}

.datenschutz p {
    font-family: 'NotoSans';
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgb(19, 63, 25);
    margin-top: 0;
    margin-bottom: 16px;
}

.datenschutz a {
    color: rgb(19, 63, 25);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.datenschutz a:hover {
    opacity: 0.65;
}

.datenschutz .index {
    list-style: none;
    padding: 20px 24px;
    margin: 24px 0 32px 0;
    background-color: rgba(19, 63, 25, 0.05);
    border-left: 4px solid rgb(19, 63, 25);
    border-radius: 0 6px 6px 0;
}

.datenschutz .index li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.datenschutz .index li:last-child {
    margin-bottom: 0;
}

.datenschutz .index a.index-link {
    color: rgb(19, 63, 25);
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.datenschutz .index a.index-link:hover {
    text-decoration: underline;
    opacity: 0.75;
}

.datenschutz .m-elements {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
    background-color: rgba(19, 63, 25, 0.04);
    border-radius: 6px;
    overflow: hidden;
}

.datenschutz .m-elements li {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgb(19, 63, 25);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(19, 63, 25, 0.12);
}

.datenschutz .m-elements li:last-child {
    border-bottom: none;
}

.datenschutz .m-elements li strong {
    font-weight: 700;
}

.datenschutz .glossary {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.datenschutz .glossary li {
    background-color: rgba(19, 63, 25, 0.04);
    border: 1px solid rgba(19, 63, 25, 0.14);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgb(19, 63, 25);
}

.datenschutz .glossary li strong {
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2px;
}

.datenschutz p.seal {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(19, 63, 25, 0.6);
    margin-top: 48px;
    line-height: 1.5;
}

.datenschutz p.seal a {
    color: rgba(19, 63, 25, 0.6);
    text-decoration: underline;
}

.datenschutz p.seal a:hover {
    opacity: 0.75;
}

.datenschutz ul:not(.index):not(.m-elements):not(.glossary) {
    padding-left: 20px;
    margin: 8px 0 20px 0;
}

.datenschutz ul:not(.index):not(.m-elements):not(.glossary) li {
    font-size: 0.93rem;
    line-height: 1.75;
    color: rgb(19, 63, 25);
    margin-bottom: 4px;
}

/*----------------------
Footer
-----------------------*/
.footer-balken{
    background-color: rgb(19, 63, 25);
    height: 2px;
    width: 100%;
    bottom: 100px;
}
.footer{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
}

.footer-main{
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 30px 40px 30px;
    gap: 40px;
    height: 100px;
}

.footer-logo{
    margin-left: auto;
    display: flex;
    align-items: center;
}

.footer-logo img{
    height: 90px;
    width: 100%;
    filter: drop-shadow(0 0 8px rgba(19, 120, 40, 0.55));
}

.footer-kontakt{
    display: flex;
    flex-direction: column;
}

.footer-kontakt h3{
    color: rgb(19, 63, 25);
    text-decoration: underline;
    font-family: 'NotoSans';
    margin: 0 0 8px 0;
}

.footer-kontakt p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    margin: 4px 0;
}

.footer-links{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 8px;
}

.footer-links a{
    color: rgb(19, 63, 25);
    text-decoration: none;
    font-family: 'NotoSans';
    transition: 0.4s;
}

.footer-links a:hover{
    text-decoration: underline;
}

.impressum-datenschutz{
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.impressum-datenschutz a{
    color: rgb(19, 63, 25);
    text-decoration: none;
    font-family: 'NotoSans';
    font-size: 0.85rem;
    transition: 0.4s;
}

.impressum-datenschutz a:hover{
    text-decoration: underline;
}

/*----------------------
Kontakt
-----------------------*/
.hero1-kontakt{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 140px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.kontakt-überschrift{
    display: flex;
    justify-content: center;
}

.kontakt-überschrift h1{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
}

.kontakt-form{
    width: 100%;
    max-width: 1050px;
}

.kontakt-section-titel{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.kontakt-optional{
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.7;
}

.kontakt-felder{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.kontakt-gruppe{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kontakt-gruppe label{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    font-size: 0.95rem;
}

.kontakt-input{
    font-family: 'NotoSans';
    color: rgb(19, 63, 25);
    border: 1px solid rgb(19, 63, 25);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
}

.kontakt-input:focus{
    box-shadow: 0 0 0 2px rgba(19, 63, 25, 0.15);
}

.tarif-auswahl{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    height: 200px;
}

.tarif-karte{
    cursor: pointer;
    transition: 0.4s;
    border-radius: 8px;
}

.tarif-karte:hover{
    transform: scale(1.04);
}

.tarif-karte input{
    display: none;
}

.tarif-karte .karte-inhalt{
    border: 2px solid rgb(19, 63, 25);
    border-radius: 8px;
    padding: 20px;
    width: 230px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.4s;
    box-sizing: border-box;
}

.tarif-karte .karte-inhalt h3,
.tarif-karte .karte-inhalt p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    margin: 4px 0;
}

.tarif-karte .karte-inhalt p{
    font-size: 0.85rem;
    opacity: 0.85;
}

.tarif-karte:has(input:checked) .karte-inhalt{
    background-color: rgb(19, 63, 25);
}

.tarif-karte:has(input:checked) .karte-inhalt h3,
.tarif-karte:has(input:checked) .karte-inhalt p{
    color: white;
    opacity: 1;
}

.extras-auswahl{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.extra-karte--hosting{
    grid-column: 2;
}

.extra-karte{
    cursor: pointer;
    transition: 0.4s;
    border-radius: 8px;
}

.extra-karte:hover{
    transform: scale(1.04);
}

.extra-karte input{
    display: none;
}

.extra-karte .karte-inhalt{
    border: 2px solid rgb(19, 63, 25);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.4s;
    min-height: 80px;
    justify-content: center;
}

.extra-karte .karte-inhalt h3,
.extra-karte .karte-inhalt p{
    color: rgb(19, 63, 25);
    font-family: 'NotoSans';
    margin: 2px 0;
}

.extra-karte .karte-inhalt h3{
    font-size: 1rem;
}

.extra-karte .karte-inhalt p{
    font-size: 0.85rem;
    opacity: 0.85;
}

.extra-karte:has(input:checked) .karte-inhalt{
    background-color: rgb(19, 63, 25);
}

.extra-karte:has(input:checked) .karte-inhalt h3,
.extra-karte:has(input:checked) .karte-inhalt p{
    color: white;
    opacity: 1;
}

.kontakt-nachricht{
    width: 100%;
}

.kontakt-nachricht textarea{
    min-height: 130px;
    resize: vertical;
}

.kontakt-submit{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.kontakt-submit button{
    color: rgb(19, 63, 25);
    background: none;
    border: 1px solid rgb(19, 63, 25);
    border-radius: 6px;
    padding: 10px 32px;
    font-family: 'NotoSans';
    font-size: 1rem;
    cursor: pointer;
    transition: 0.4s;
}

.kontakt-submit button:hover{
    background-color: rgb(19, 63, 25);
    color: white;
    transform: scale(1.04);
}

/*----------------------
Hamburger-Button (immer vorhanden, auf Desktop versteckt)
-----------------------*/
.nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 16px;
}

.nav-hamburger span{
    display: block;
    width: 24px;
    height: 2px;
    background-color: rgb(19, 63, 25);
    border-radius: 2px;
    transition: 0.3s;
}

/*----------------------
Mobile – max 768px
-----------------------*/
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar{
        height: 65px;
    }

    .nav-logo img{
        height: 55px;
        margin-left: 16px;
    }

    .nav-links{
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        border-top: 2px solid rgb(19, 63, 25);
        padding: 16px 0;
        gap: 0;
        z-index: 999;
        list-style: none;
        margin: 0;
    }

    .nav-links li{
        width: 100%;
    }

    .nav-links a{
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .navbar.nav-offen .nav-links{
        display: flex;
    }

    .nav-hamburger{
        display: flex;
    }

    .nav-balken{
        top: 65px;
    }

    /* --- Startseite Hero1 --- */
    .hero1-startseite{
        padding-top: 30px;
        margin-top: 65px;
    }

    .tab-inhalt.aktiv{
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px;
    }

    /* --- Startseite Hero2 --- */
    .hero2-startseite-text{
        flex-direction: column;
        align-items: center;
    }

    .beratung, .wünsche, .geld{
        width: 88%;
        max-width: 300px;
        height: auto;
        min-height: 150px;
    }

    .hero2-startseite-text2, .hero3-startseite-text2{
        display: flex;
        justify-content: center;
        text-align: center;
    }

    /* --- Tarife Hero1 --- */
    .hero1-tarife{
        margin-top: 80px;
    }

    .hero1-tarife-text{
        flex-direction: column;
        align-items: center;
        margin: 20px 16px;
    }

    .basic, .professional, .business{
        width: 88%;
        max-width: 300px;
    }

    /* --- Tarife Hero2 (Extras) --- */
    .hero2-tarife{
        margin-top: 40px;
    }

    .hero2-tarife-text{
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
        gap: 20px;
    }

    .pflege, .logo, .seo, .extra-seite, .google-maps, .bildergalerie, .hosting{
        width: 100%;
        height: 350px;
    }

    .hosting{
        grid-column: auto;
    }

    /* --- Über mich --- */
    .hero1-über-mich{
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 80px;
        height: auto;
        padding-right: 0;
    }

    .hero1-über-mich-überschrift,
    .hero1-über-mich-text1,
    .hero1-über-mich-text2,
    .hero1-über-mich-text3{
        width: 100%;
        max-width: 700px;
    }

    /* --- Impressum --- */
    .hero1-impressum{
        margin-top: 70px;
        height: auto;
        min-height: 60vh;
        padding: 0 16px;
    }

    /* --- Datenschutz --- */
    .datenschutz{
        padding-top: 90px;
    }

    /* --- Footer --- */
    .footer-main{
        flex-direction: column;
        height: auto;
        padding: 24px 20px;
        gap: 20px;
    }

    .footer-logo{
        margin-left: 0;
    }

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

    /* --- Kontakt --- */
    .hero1-kontakt{
        margin-top: 80px;
    }

    .kontakt-felder{
        grid-template-columns: 1fr;
    }

    .tarif-auswahl{
        height: auto;
    }

    .tarif-karte .karte-inhalt{
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: 110px;
    }

    .extras-auswahl{
        grid-template-columns: repeat(2, 1fr);
    }

    .extra-karte--hosting{
        grid-column: auto;
    }
}
