/**
 * Theme Name: Mein Theme
 * Template:   twentytwentyfive
 * Author: Fabian Müller
 * Version: 1.0
 * Description: Mein eigenes WordPress-Theme mit eigenem Code
 */

 html {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    scroll-behavior: auto !important;
}

html.lenis {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}

/* Allgemeiner Hintergrund der gesamten Webseite */
body {
    background-color: #262626;
    color: #FFFFFF;                                             /* Weißer Text */
    font-family: Arial, sans-serif;                               /* Schriftart setzen */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#about-section,
#offers-detailed {
    overflow-x: hidden;
    position: relative;
}

h1 {
    color: #D1B188;
    text-align: center;
    margin: 0 auto;
    hyphens: auto;                                                /* Aktiviert automatische Silbentrennung */
}

h1:first-of-type {
    margin-top: 80px;                                             /* Erhöht den Abstand für das erste h1 & sorgt dafür, dass Header nicht Überschriften überlappt */
}

h2:first-of-type {
    margin-top: 80px;                                             /* Erhöht den Abstand für das erste h2 & sorgt dafür, dass Header nicht Überschriften überlappt */
}

h2 {
    color: #B67F65;
    hyphens: auto;
}

h3 {
    color: #FFDD80;
    font-size: 2.5rem;                                            /* Einheitliche Schriftgröße */
    line-height: 1.4;
    hyphens: auto;
}

/* Standard-Textfarbe für Absätze */
p {
    color: #FFFFFF;
    hyphens: auto;
}

/* Links in weiß, bei Hover orange */
a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    color: #D1B188;
    text-decoration: underline;
}

/* ______________________________________________Formatierung Startseite______________________________________________ */

/* Versteckt alle Elemente mit "fade-in" anfangs */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Sobald "visible" hinzugefügt wird, erscheinen die Elemente */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.cursor {
    display: inline-block;
    opacity: 0;                                 /* Standardmäßig unsichtbar */
    animation: blink 0.8s infinite;
    font-weight: bold;
    color: #B67F65;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

#hero {
    min-height: 100vh;                            /* Stellt sicher, dass die Hero-Sektion mindestens die volle Bildschirmhöhe hat */
    display: flex;
    align-items: center;                          /* Vertikal zentrieren */
    justify-content: flex-start;                  /* Inhalt nach links ausrichten */
    padding-left: 0 5%;                           /* Abstand vom linken Rand */
    position: relative;
    text-align: center;                           /* Standardtext links ausrichten */
}

#hero .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;                    /* Inhalt innerhalb des Containers links ausrichten */
    gap: 20px;
}

#hero h1 {
    text-align: left;                           /* H1 explizit linksbündig */
    font-size: 4.25rem;
    font-weight: 700;
    max-width: 100%;
    line-height: 1.2;
    hyphens: auto;
}

#hero h2 {
    text-align: left;                           /* H2 ebenfalls links ausrichten */
    font-size: 3rem;
    hyphens: auto;
}

.scroll-button {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    color: #D1B188;
    animation: bounce 2s infinite;
    transition: color 0.3s ease-in-out;
}

.scroll-button:hover {
    color: white;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.header-intro-1 h2 {
  color:#D1B188;                             /* CI-Bronze */
  font-weight:700;                             /* fett */
  text-align:center;
  line-height:1.2;
  /* Größe responsiv an die aus /leistungen anlehnen */
  font-size:clamp(1.75rem, 2.2vw + 1rem, 3rem);
  margin:0 auto 0.5rem;
  
  /* Silbentrennung & harte Umbrüche verhindern */
  -webkit-hyphens:none;
  -ms-hyphens:none;
  hyphens:none;
  word-break:normal;
  overflow-wrap:normal;
}

.header-intro-2 h3,
.header-intro-3 h3,
.header-intro-4 h3,
.header-intro-5 h3 {
    font-size: 1.8rem;                          /* Einheitliche, gut lesbare Größe */
    line-height: 1.5;                           /* Angenehme Lesbarkeit */
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;                           /* Normal für Fließtext */
}

/* Hervorgehobene Begriffe in Bronze */
.header-intro-2 h3 span,
.header-intro-3 h3 span,
.header-intro-4 h3 span,
.header-intro-5 h3 span {
    color: #B67F65;                           /* Bronze aus CI */
    font-weight: 600;                           /* Leichte Betonung */
}

/* Definiert bestimmtes Layout, dass vor eigentlichen Content gesetzt wird */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 37, .8);		   /* Definiert Hintergrundfarbe inkl. Sättigung */
    z-index: -1;
}

.container {
    width: 80%;
    margin: 0 auto;
    height: 100%;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

h1 {
    color: white;
    font-size: 4.25rem;
    font-weight: 700;
    max-width: 80%;
    text-align:center;
    line-height: 1.2;
    hyphens: auto;
}

h1 span {
    color: #D1B188;
}

h2 {
    color: white;
    font-size: 3rem;
    hyphens: auto;
}

h2 span {
    color: #B67F65;
}


video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;				                       /* Füllt kompletten verfügbaren Platz mit Objekt */
    z-index: -2;				                           /* Z-Index Legt Reihenfolge überlappender Elemente fest (2 = in den HIntergrund) */
}

.header-intro-1 {
    text-align: center;                                   /* Zentriert den gesamten Inhalt */
    background-color: #262626;                          /* Dunkler Hintergrund für Kontrast */
    color: white;                                       /* Weißer Text */
    border-radius: 10px;                                  /* Leicht abgerundete Ecken */
    margin: 20px auto;                                    /* Sorgt für gleichmäßigen Abstand nach oben und unten */
    max-width: 1200px;                                    /* Begrenzte Breite für bessere Lesbarkeit */
}

.header-intro-1 h1 {
    display: block;                                       /* Damit der Button zentriert werden kann */
    margin: 10px auto;
    font-size: 4rem;                                      /* Größer als Standard für mehr Aufmerksamkeit */
    color: #D1B188;                                     /* Orange für Konsistenz mit dem restlichen Design */
}

/* Alle h3-Elemente in den Klassen "header-intro-2" bis "heasder-intro-4" bekommen die gleiche Formatierung */
/* Die Checkbox-Texte sind nun auf einer Linie mit den Checkboxen und haben die gleiche Größe wie H3 */
.header-intro-2,
.header-intro-3,
.header-intro-4 {
    display: flex;
    align-items: baseline;                                /* Perfekte vertikale Ausrichtung */
    justify-content: center;                              /* Gleiche Ausrichtung */
    text-align: center;
    gap: .6rem;                                            /* Kleineren Abstand zwischen Checkbox und Text */
    font-size: 2.5rem;                                    /* Gleiche Größe wie header-intro-5 */
    line-height: 1.5;                                     /* Weniger Abstand zwischen den Zeilen */
    margin: 10px auto; 
    margin-bottom: 10px;                                  /* Weniger Abstand zwischen den Elementen */
    font-weight: normal;
}

/* Animierte Checkbox */
.animated-checkbox {
    display: inline-block;                                /* bekommt damit eine Baseline */
    vertical-align: text-bottom;                          /* Baseline am Text orientieren */      
    width: 30px;
    height: 30px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;                                       /* Verhindert, dass sich die Checkbox verkleinert */
    top: .08em;                  
}

/* Das Häkchen */
.animated-checkbox::after {
    content: "✔";
    font-size: 30px;
    color: #FFFFFF;
    opacity: 0;                                           /* Unsichtbar bis sichtbar */
    transition: opacity 0.3s ease-in-out;
}

/* Wenn die Box sichtbar wird */
.visible .animated-checkbox::after {
    opacity: 1;
}

/* Header-Element wird eingeblendet */
.visible {
    opacity: 1;
    transform: translateY(0);
}

h3 span {
    color: #B67F65;
}

.contact-button {
    color: black;
    background-color: #D1B188;
    display: block;                                     /* Damit der Button zentriert werden kann */
    margin: 20px auto;                                  /* Automatische horizontale Zentrierung */
    width: 70%;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    border: 1px solid #D1B188;
    box-shadow: 5px 5px 5px black;
    font-weight: bold;                                 
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.contact-button:hover {
    background-color: #262626;
    color: #D1B188;
    border-color: #D1B188;
    box-shadow: 5px 5px 5px black;
}

a.contact-button {
    color: black;
    background-color: #D1B188;
    display: block;                     /* macht das <a> block-level -> zentrierbar */
    margin: 20px auto;                  /* zentriert horizontal */
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    border: 1px solid #D1B188;
    box-shadow: 5px 5px 5px black;
    font-weight: bold;                                 
    text-align: center;
    cursor: pointer;
    text-decoration: none;              /* entfernt Unterstreichung */
    transition: background-color 0.3s ease-in-out,
                color 0.3s ease-in-out,
                border-color 0.3s ease-in-out;
}

/* Hover-Effekt */
a.contact-button:hover {
    background: #262626;
    color: #D1B188;
    border: 1px solid #D1B188
}

/* Hintergrundbanner für die Angebote */
.offers-section {
    background-color: #383838;                         /* Farbiger Banner */
    padding: 20px 0;                                     /* Abstand oben und unten für ein luftigeres Design */
    width: 100%;
    display: flex;
    justify-content: center;
}

.offers-short {
    display: flex;
    justify-content: center; 			                 /* Zentriert die Boxen horizontal */
    gap: 25px; 					                         /* Abstand zwischen den Boxen */
    padding: 40px 5%;
    align-items: stretch;                                /* Alle Boxen auf die gleiche Höhe bringen */
}

.offers-short > div {
    background-color: #262626;			                /* Dunkler Hintergrund */
    border-radius: 10px; 			                     /* Abgerundete Ecken */
    padding: 30px;
    max-width: 400px; 				                     /* Begrenzte Breite für gleiche Größe */
    flex: 1; 					                         /* Gleichmäßige Verteilung der Boxen */
    border: 1px solid #D1B188; 			            /* Orange Umrandung */
    box-shadow: 5px 5px 5px black;                     /* Leichter Schatten */
    display: flex;
    flex-direction: column;
    justify-content: space-between; 		             /* Button immer am unteren Rand */
    align-items: stretch;
    min-height: 100%;                                    /* Gleiche Höhe für alle Boxen */
}

/* Zahlen 01, 02, 03 mittig zentrieren */
.offers-short h1 {
    font-size: 5rem;                                     /* Erhöht Schriftgröße */
    color: #D1B188;                                    /* Orange */
    font-weight: bold;
    text-align: center;                                  /* Zentriert die Zahl horizontal */
    margin: 0 auto;                                      /* Verhindert seitliche Verschiebung */
    display: block;                                      /* Stellt sicher, dass es als Block-Element behandelt wird */
}

.offers-short h2 {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    color: #B67F65;
    font-weight: bold;
    word-break: normal;                                  /* Erlaubt Umbruch */
    overflow-wrap: normal;                               /* Verhindert erzwungenes Umbrechen innerhalb von Wörtern */
    hyphens: none;                                       /* Verhindert Silbentrennung */
    margin-bottom: 15px;
}

/* Liste links ausrichten und Bullet Points anzeigen */
.offers-short ul {
    flex-grow: 1;                                       /* Füllt den verfügbaren Platz aus */
    display: flex;
    flex-direction: column;
    min-height: 140px;                                  /* Falls nötig anpassen */
    list-style-type: disc; 			                    /* Standard-Bullet Points */
    text-align: left; 	                    			/* Links ausrichten */
    padding-left: 20px; 			                    /* Abstand zum Rand */
    color: #FFFFFF;
}

/* Größere Schrift für die Argumente */
.offers-short li {
    margin-bottom: 10px;
    font-size: 1.2rem; 				                    /* Erhöht Schriftgröße */
}

/* Button am unteren Rand ausrichten */
.offers-short input[type="button"] {
    background-color: #D1B188;
    color: black;
    border: 1px solid transparent;                     /* Border vorher transparent setzen */
    box-shadow: 5px 5px 5px black;
    padding: 10px 15px;
    margin-top: auto;                                  /* Schiebt den Button nach unten */
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.offers-short input[type="button"]:hover {
    background-color: #262626;
    color: #D1B188;
    border-color: #D1B188;                           /* Farbe ändern statt eine neue Border hinzuzufügen */
    box-shadow: 10px 5px 5px black;
}

/* Mehr Abstand zwischen den Elementen für ein luftigeres Layout */
.header-intro-1,
.header-intro-5,
.offers-short {
    margin-top: 70px;
    margin-bottom: 70px;
}

.container-logo {
    display: grid;
    width: 100%;
    height: 50vh;
    place-content: center;
    background-color: #262626;
}

.references-slider h1 {
    width: 100%;
    font-size: 3.5rem;
    color: #D1B188;
    text-align: center;
    word-break: normal;                                         /* Erlaubt Umbruch */
    overflow-wrap: normal;                                      /* Verhindert erzwungenes Umbrechen innerhalb von Wörtern */
    hyphens: none;                                              /* Verhindert Silbentrennung */
    margin-bottom: 2rem;
}

.references-slider {
    width: 100%;
    margin: 50px auto;
    padding: 0;
    flex-direction: column;
    box-sizing: border-box;
    display: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.slider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 70px;                                       /* Platz nach unten für die Buttons */
}

.card-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;                             /* Verteilt den Inhalt gleichmäßig */
    align-items: center;
    text-align: center;
    padding: 15px;
    height: 100%;                                               /* Nutzt die Höhe, die mit JavaScript festgelegt wurde */
}

.card-item .message-button {
    margin-top: auto;                                           /* Schiebt den Button nach unten */
}

.card-list .card-item {
    color: #B67F65;
    user-select: none;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center !important;
    border-radius: 8px;
    backdrop-filter: blur(30px);
    background: rgba(115, 111, 114, 0.2);
    border: 1px solid rgba(115, 111, 114, 0.5);
}

.card-list .card-item .user-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 3px solid #D1B188;
    padding: 4px;
}

.card-list .card-item .user-profession {
    font-size: 1.5rem;
    color: #B67F65;
    font-weight: 500;
    margin: 14px 0 40px;
}

.card-list .card-item .message-button {
    font-size: 1.25rem;
    padding: 10px 35px;
    text-align: center !important;
    display: block;
    margin: 0 auto;
    margin-top: auto;
    color: #262626;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background: #D1B188;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.card-list .card-item .message-button:hover {
    background: #262626;
    border: 1px solid #D1B188;
    color: #D1B188;
}

.card-item .user-name {
    white-space: nowrap;      						/* Verhindert Zeilenumbrüche */
}

.slider-wrapper .swiper-pagination-bullet {
    background: #B67F65;
    position: absolute;
    height: 15px;
    width: 15px;
}

.slider-wrapper .swiper-slide-button {
    color: #D1B188;
    margin-top: -50px;
    transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
    color: #B67F65;
}

.no-underline {
  text-decoration: none;
}

.no-underline:hover {
  text-decoration: none;
}

/* ______________________________________________Formatierung Leistungen______________________________________________ */

.entry__meta h1 {
    font-size: 3.5rem;                                          /* Reduzierte Schriftgröße für bessere Lesbarkeit */
    color: #D1B188;
    line-height: 1.2;                                           /* Stellt sicher, dass der Text sich über zwei Zeilen erstreckt */
    max-width: 100%;                                            /* Hält die Breite konsistent mit dem restlichen Text */
    word-wrap: break-word;                                      /* Bricht lange Wörter, falls notwendig */
    overflow-wrap: break-word;                                  /* Alternative für moderne Browser */
    word-break: normal;                                         /* Erlaubt Umbruch */
    overflow-wrap: normal;                                      /* Verhindert erzwungenes Umbrechen innerhalb von Wörtern */
    hyphens: none;                                              /* Verhindert Silbentrennung */
    margin-bottom: 0.5rem;                                      /* Abstand nach unten */
}

.entry__meta h2 {
    font-size: 2rem;
    color: #B67F65;
    margin-top: 2rem;
}

.entry__meta h3 {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.entry__meta p,
.entry__meta ul,
.entry__meta li {
    font-size: 18px;
}

.entry__meta strong {
    color: #B67F65;
    font-weight: bold;
}

#offers-detailed {
    padding: 5rem 10%;
}

.offers-detailed-1,
.offers-detailed-2,
.offers-detailed-3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;                               /* Text 1.2x so breit wie das Bild */
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Bilder */
.entry__media {
    background: var(--white-5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 10px;
}

.entry__media img {
    max-width: 100%;
    border-radius: 10px;
}

/* ______________________________________________Formatierung Referenzen______________________________________________ */

.references-slider-2 {
    width: 100%;
    margin: 50px auto;
    padding: 0;
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.references-slider-2 h1 {
    width: 100%;
    font-size: 3.5rem;
    color: #D1B188;
    text-align: center;
    margin-bottom: 2rem;
    word-break: normal;                                                 /* Erlaubt Umbruch */
    overflow-wrap: normal;                                              /* Verhindert erzwungenes Umbrechen innerhalb von Wörtern */
    hyphens: none;                                                      /* Verhindert Silbentrennung */
}

.card-item-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;                                     /* Verteilt den Inhalt gleichmäßig */
    align-items: center;
    text-align: center;
    padding: 15px;
    height: 100%;                                                       /* Nutzt die Höhe, die mit JavaScript festgelegt wurde */
}

.card-item-2 .message-button {
    margin-top: auto;                                                   /* Schiebt den Button nach unten */
}

.card-list .card-item-2 {
    color: #B67F65;
    user-select: none;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center !important;
    border-radius: 8px;
    backdrop-filter: blur(30px);
    background: rgba(115, 111, 114, 0.2);
    border: 1px solid rgba(115, 111, 114, 0.5);
}

.card-list .card-item-2 .user-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 3px solid #D1B188;
    padding: 4px;
}

.card-list .card-item-2 .user-profession {
    font-size: 1.5rem;
    color: #B67F65;
    font-weight: 500;
    margin: 14px 0 40px;
}

.card-list .card-item-2 .message-button {
    font-size: 1.25rem;
    padding: 10px 35px;
    text-align: center !important;
    display: block;
    margin: 0 auto;
    margin-top: auto;
    color: #262626;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background: #D1B188;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.card-list .card-item-2 .message-button:hover {
    background: #262626;
    border: 1px solid #D1B188;
    color: #D1B188;
}

.card-item-2 .user-name {
    white-space: nowrap;      						/* Verhindert Zeilenumbrüche */
}

/* Standardmäßig versteckt */
.references-slider-2, .card-item-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Wenn "visible" hinzugefügt wird, erscheinen die Elemente */
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ______________________________________________Formatierung Über mich______________________________________________ */

.about__meta strong {
    color: #B67F65;
    font-weight: bold;
}

.about__meta h2 {
    font-size: 3rem;
    text-align: center;
    color: #D1B188;
    font-weight: bold;
    margin-bottom: 15px;
    margin-bottom: 2rem;
    word-break: normal;                                         /* Erlaubt Umbruch */
    overflow-wrap: normal;                                      /* Verhindert erzwungenes Umbrechen innerhalb von Wörtern */
    hyphens: none;                                              /* Verhindert Silbentrennung */
}

.about__meta h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-top: 1rem;
    margin-bottom: 0.5rem !important;
}

.about__meta p,
.about__meta ul,
.about__meta li {
    font-size: 1.125rem;                                        /* entspricht 18px */
    line-height: 1.6;
    color: #FFFFFF;
}

.about__meta ul li h3 {
    display: inline;                                            /* Verhindert Zeilenumbruch */
    font-size: 1.5rem;
    font-weight: bold;                                          /* Optional, falls du es hervorheben möchtest */
    color: #FFFFFF;                                           /* Beibehaltung deiner bisherigen Farbe für h3 */
    margin-top: 1rem;
    margin-bottom: 0.5rem
}

.about__meta ul li {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #FFFFFF;
}

#about-section {
    padding: 5rem 10%;
}

.about-entry-1,
.about-entry-2,
.about-entry-3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;                            /* Text 1.2x so breit wie das Bild */
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Bilder */
.about__media {
    background: var(--white-5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 10px;
}

.about__media img {
    max-width: 100%;
    border-radius: 10px;
    border-radius: 2px 2px 2px black;
}

/* ========== Scroll-Animation ========== */

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ______________________________________________Formatierung Kontakt______________________________________________ */

/* --- Allgemeines Layout für den Kontaktbereich --- */
.contact-section {
    padding: 60px 5% 0px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #262626;
}

.contact-container {
    display: flex;
    align-items: flex-start;                    /* sorgt dafür, dass Children oben einheitlich ausgerichtet werden */
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Calendly-Styling --- */
.calendly-container {
    flex: 1;
    padding: 18px;
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.calendly-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.calendly-container h2 {
    color: #B67F65;
    padding-top: 5px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

/* --- Browser Add-Ons wie Grammarly vor das Textfeld setzen --- */
.contact-form-container textarea {
    resize: none;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1; /* Stellt sicher, dass Grammarly nicht dahinter liegt */
}

/* --- Kontaktformular-Styling --- */
.contact-form-container h2 {
    color: #B67F65;
    padding-top: 5px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form-container label {
    font-weight: bold;
    color: white;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    outline: none;
}

/* --- Styling für das Select-Feld („Ihr Anliegen“) --- */
.contact-form-container select {
    cursor: pointer;
    background: #636363;
    color: white;
    border-radius: 5px;
}

/* --- Datenschutz-Checkbox --- */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: white;
}

.form-checkbox a {
    color: #D1B188;
    text-decoration: underline;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

/* --- Kontaktbutton --- */
.contact-button {
    background: #D1B188;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid transparent;

}

.contact-button:hover {
    background: #262626;
    color: #D1B188;
    border: 1px solid #D1B188;
}

.error-message {
    color: #D1B188;
    font-size: 14px;
    margin-top: 5px;
}

.contact-info-wrapper {
    width: 100%;
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Direkte Kontaktinfos-Styling --- */
.contact-info-wrapper h2 {
    color: #B67F65;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-info-wrapper.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

/* --- Anpassung des Contact-Containers --- */
.contact-info-container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-size: 1rem;                                             /* Schriftgröße um 50 % reduziert */
}

/* --- Telefon & E-Mail Links in #D1B188 mit Unterstreichung & kleinere Schrift --- */
.contact-info-container p {
    font-size: 1.25rem;
    font-weight: bold;
}

.contact-info-container a {
    color: #D1B188;
    font-weight: bold;
    text-decoration: underline;
}

/* --- Mehr Abstand zwischen "E-Mail" und "Folgen Sie uns" --- */
.contact-info-container h3 {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    color: #FFFFFF;
}

/* --- Animationsstil --- */
.contact-form-container,
.contact-info-container {
    margin-top: 20px;
    width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact-form-container.visible,
.contact-info-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Social-Media-Links nebeneinander & größer --- */
.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a img {
    width: 60px;                                                    /* Vergrößert Icons um das Dreifache */
    height: 60px;
}

/* --- Responsive Anpassung für kleinere Bildschirme --- */
@media (max-width: 1100px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container,
    .calendly-container {
        width: 100%;
    }

    .calendly-container h2,
    .contact-form-container h2 {
        font-size: 1.75rem;             
    }
}

/* ______________________________________________Formatierung Impressum______________________________________________ */

html {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.impressum {
    width: 80%;                                     /* Begrenzt die Breite auf 80 % des Bildschirms */
    margin: 0 auto;                                 /* Zentriert das Element horizontal */
}

.impressum h1 {
    font-size: 3.5rem;
    color: #D1B188;
    text-align: left !important;                    /* Erzwingt linksbündige Ausrichtung */
    width: 100%;                                    /* Volle Breite erlauben */
    max-width: 100%;
    margin: 0 auto 2rem;                            /* Falls nötig, sicherstellen, dass kein externes Margin dazwischenfunkt */
    margin-top: 100px;
}

.impressum h2 {
    font-size: 2rem;
    color: #B67F65;
    margin-top: 2rem;
}

.impressum p,
.impressum li {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.impressum a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.impressum a:hover {
    color: #D1B188;
    text-decoration: none;
}

.footer-container {
    margin-top: 5rem;
    padding: 2rem 0;
    text-align: center;
}

/* ______________________________________________Formatierung Datenschutzerklärung______________________________________________ */

html {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.datenschutzerklaerung {
    width: 80%;
    margin: 0 auto;
}

.datenschutzerklaerung h1 {
    font-size: 3.5rem;
    color: #D1B188;
    text-align: left !important;                    
    width: 100%;                                    
    max-width: 100%;
    margin: 0 auto 2rem;                            
    margin-top: 100px;
}

.datenschutzerklaerung h2 {
    font-size: 2.5rem;
    color: #B67F65;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.datenschutzerklaerung h3 {
    font-size: 1.8rem;
    color: #FFDD80;
    margin-top: 2rem;
}

.datenschutzerklaerung h4 {
    font-size: 1.5rem;
    color: #FFDD80;
    margin-top: 1.5rem;
}

.datenschutzerklaerung p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.datenschutzerklaerung a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.datenschutzerklaerung a:hover {
    color: #D1B188;
    text-decoration: none;
}

.datenschutzerklaerung ul {
    list-style: none;
    padding-left: 0;
}

.datenschutzerklaerung ul li {
    font-size: 1.2rem;
    color: #D1B188;
    margin-bottom: 0.5rem;
}

.footer-container {
    margin-top: 5rem;
    padding: 2rem 0;
    text-align: center;
}

/* ______________________________________________ Formatierung Header (responsive + kombiniert) ______________________________________________ */

/* Header Grundlayout */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #373737;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}

.header.scrolled {
    transform: translateY(-100%);
    opacity: 0;
}

/* Desktop-Menü */
.navbar-desktop {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;               /* hinzugefügt für sanfte Bewegung */
}

.nav-link:hover {
    color: #D1B188;
    text-decoration: none;
    transform: translateY(-2px);                    /* bewegt Link nach oben */
}

/* Burger-Button */
.burger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3000;
    position: absolute;
    top: 22px;
    right: 22px;
    transition: transform 0.3s ease-in-out;
}

.burger-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #D1B188;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
}

.burger-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.burger-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
}

/* Apple-Style Slide-In Menü */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 2500;
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav .nav-link {
    margin: 15px 0;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.mobile-nav .nav-link:hover {
    transform: translateY(-2px);
    color: #D1B188;
}

body.menu-open {
    overflow: hidden;
}

/* Nur mobile Sichtbarkeit */
@media screen and (max-width: 1100px) {
    .burger-toggle {
        display: flex !important;
    }

    .navbar-desktop {
        display: none !important;
    }
}

/* ______________________________________________Formatierung Footer______________________________________________ */

.footer-container {
    display: flex;        			                /* Flexbox-Layout für zentrierte Anordnung */
    flex-direction: column; 		            	/* Elemente vertikal untereinander anordnen */
    align-items: center;   			                /* Zentriert die Elemente horizontal */
    justify-content: center; 			            /* Zentriert die Elemente vertikal (optional, je nach Höhe) */
    gap: 1rem;         				                /* Fügt Abstand zwischen den Elementen hinzu */
    background-color: #373737;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem; 					                    /* Abstand zwischen den Icons */
}

.footer-social-references {
    display: flex;
    justify-content: center;
    background-color: #373737;
    color: #FFFFFF;
    font-size: 30%;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;                          /* Entfernt standardmäßig die Unterstreichung */
}

footer a:hover {
    color: #D1B188;
    text-decoration: none;
}

/* Logo im Footer */
.footer-logo img {
    max-width: 150px; 				                /* Optional: Logo skalieren */
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 1100px) {
    h1 {
        font-size: 24px;
    }

    .footer-logo img {
        max-width: 100px;
    }
}

/* =================== Responsive Anpassung: Tablets (≤1024px) =================== */

    /* Startseite - Tablet optimiert */
    @media (min-width: 769px) and (max-width: 1100px) {
        #hero {
            padding-left: 5%;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
        }

        #hero .container {
            align-items: center;
        }

        #hero h1 {
        font-size: 3rem;
        text-align: center;
        }

        #hero h2 {
            font-size: 2rem;
            text-align: center;
        }

        .header-intro-2,
        .header-intro-3,
        .header-intro-4 {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-left: 0;             /* Entfernt das feste Einrücken */
            text-align: center;         /* Zentriert Text */
            gap: 15px;                  /* Abstand zwischen Checkbox und Text */
        }

        .animated-checkbox {
            width: 30px;
            height: 30px;
        }

        .header-intro-2 h3,
        .header-intro-3 h3,
        .header-intro-4 h3 {
            font-size: 2rem;            /* Gut lesbar auf Tablets */
        }

        .offers-short {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .offers-short > div {
            max-width: 90%;
            width: 100%;
        }

        .slider-wrapper {
            flex-direction: column;
            padding: 0 1rem;
        }

    /* Leistungen - Tablet optimiert */
    @media (max-width: 1100px) {
        .entry__meta h1 {
            font-size: 2.6rem;
            text-align: center;
            margin-top: 0.5rem;
        }

        .entry__meta h2 {
            font-size: 1.8rem;
        }

        .entry__meta h3 {
            font-size: 1.2rem;
        }

        .entry__meta p,
        .entry__meta ul,
        .entry__meta li {
            font-size: 1.05rem;
        }

        .offers-detailed-1,
        .offers-detailed-2,
        .offers-detailed-3 {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .entry__media {
            order: -1;
        }
    }

    /* Referenzen - Tablet optimiert */
        .references-slider-2 h1 {
            font-size: 2.6rem;
        }

        .card-list .card-item-2 .user-profession {
            font-size: 1.3rem;
        }

        .card-list .card-item-2 .message-button {
            font-size: 1.1rem;
        }
    }

    /* Über mich - Tablet optimiert */
    @media (max-width: 1100px) {
        #about-section {
            padding: 3rem 1.5rem;                               /* Weniger horizontaler Platz */
        }

        .about-entry-1,
        .about-entry-2,
        .about-entry-3 {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
            text-align: center;
        }

        .about__media {
            order: -1;                                          /* Bild über dem Text */
            padding: 1rem;
        }

        .about__meta h2 {
            font-size: 2.2rem;
            margin-top: 0.5rem;
        }

        .about__meta h3 {
            font-size: 1.25rem;
            margin-top: 0.75rem;
        }

        .about__meta ul li h3 {
            font-size: 1.25rem;
        }

        .about__meta p,
        .about__meta ul,
        .about__meta li {
            font-size: 1rem;
            line-height: 1.7;
            text-align: justify;
        }

        .contact-button {
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
        }

        .about__media img {
            max-width: 90%;
            height: auto;
        }
    }

    /* Kontakt - Tablet optimiert */
    @media (max-width: 1100px) {
        .contact-section {
            padding: 40px 2rem;
        }

        .contact-container {
            flex-direction: column;
            padding: 30px;
            gap: 10px;
        }

        .contact-form-container,
        .contact-info-wrapper {
            width: 100%;
            padding: 0;
        }

        .contact-form-container h2,
        .contact-info-wrapper h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .contact-form-container label {
            font-size: 0.95rem;
        }

        .contact-form-container input,
        .contact-form-container select,
        .contact-form-container textarea {
            font-size: 1rem;
            padding: 10px;
        }

        .contact-button {
            font-size: 1rem;
            padding: 0.75rem 1rem;
            width: 100%;
        }

        .contact-info-container p {
            font-size: 1rem;
        }

        .contact-info-container h3 {
            font-size: 1.5rem;
            margin-top: 1rem;
        }

        .social-links {
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-links a img {
            width: 50px;
            height: 50px;
        }
    }

    /* Impressum - Tablet optimiert */
    @media (max-width: 1100px) {
        .impressum {
            width: 90%;
            padding: 2rem 1rem;
        }

        .impressum h1 {
            font-size: 2.8rem;
            text-align: left;
            margin-top: 80px;
        }

        .impressum h2 {
            font-size: 1.8rem;
            text-align: left;
        }

        .impressum p,
        .impressum li {
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: left;
        }

        .footer-container {
            padding: 2rem 1rem;
        }
    }

    /* Datenschutzerklärung - Tablet optimiert */
    @media (max-width: 1100px) {
        .datenschutzerklaerung {
            width: 90%;
            padding: 2rem 1rem;
        }

        .datenschutzerklaerung h1 {
            font-size: 2.8rem;
            margin-top: 80px;
            text-align: left;
        }

        .datenschutzerklaerung h2 {
            font-size: 2rem;
            text-align: left;
        }

        .datenschutzerklaerung h3 {
            font-size: 1.6rem;
        }

        .datenschutzerklaerung h4 {
            font-size: 1.3rem;
        }

        .datenschutzerklaerung p,
        .datenschutzerklaerung ul li {
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: left;
        }

        .footer-container {
            padding: 2rem 1rem;
        }
    }


  /* =================== Responsive Anpassung: Smartphones (≤1100px) =================== */

    /* Startseite - Mobil optimiert */
    @media (max-width: 1100px) {
        #hero {
            padding: 3rem 5%;
            min-height: auto;
        }

        #hero h1 {
            font-size: 2.2rem;
            line-height: 1.3;
        }

        #hero h2 {
            font-size: 1.5rem;
        }

        .scroll-button {
            margin-top: 1rem;
        }

        .header-intro-1 h1,
        .references-slider h1 {
            font-size: 2.2rem;
        }

        .header-intro-5 h3 {
            font-size: 1.6rem;
        }

        .header-intro-2 h3,
        .header-intro-3 h3,
        .header-intro-4 h3 {
            font-size: 1.75rem;
        }

        .header-intro-2,
        .header-intro-3,
        .header-intro-4 {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-left: 0;                         /* Entfernt das feste Einrücken */
            text-align: center;                     /* Text mittig */
            gap: 15px;                              /* Abstand zwischen Checkbox und Text */
        }

        h3 span {
            font-size: 1.8rem;
        }

        .animated-checkbox {
            width: 30px;
            height: 30px;
        }

        .contact-button {
            font-size: 1rem;
            padding: 0.6rem 1.2rem;
        }

        .offers-short {
            flex-direction: column;
            align-items: center;                    /* Zentriert alle Boxen horizontal */
            gap: 30px;                              /* Etwas mehr Abstand zwischen den Boxen */
            padding: 20px;

        }

        .offers-short > div {
            width: 100%;
            max-width: 90%;
            height: auto !important;                /* Überschreibt eventuell gesetzte Höhe */
            min-height: auto !important;
            flex: none !important;                  /* verhindert Stretching */
        }

        .offers-short h1 {
            font-size: 3rem;
        }

        .offers-short h2 {
            font-size: 1.4rem;
            min-height: auto;
        }

        .offers-short li {
            font-size: 1rem;
        }

        .card-list .card-item {
            padding: 20px;
        }

        .card-list .card-item .user-image {
            width: 120px;
            height: 120px;
        }

        .card-list .card-item .message-button {
            font-size: 1rem;
            padding: 8px 20px;
        }
    }

    @media screen and (max-width: 768px) {
        #hero h1,
        #hero h2,
        .header-intro-2 h3 span,
        .header-intro-3 h3 span,
        .header-intro-4 h3 span,
        .header-intro-5 h3 span,
        .header-intro-2 h3,
        .header-intro-3 h3,
        .header-intro-4 h3,
        .header-intro-5 h3,
        .header-intro-1 h1,
        .header-intro-2,
        .header-intro-3,
        .header-intro-4,
        .header-intro-5 {
            hyphens: none !important;
            -webkit-hyphens: none !important;
            overflow-wrap: normal !important;
            word-break: normal !important;
        }
    }

    /* Leistungen - Mobil optimiert */
    @media (max-width: 1100px) {
        .entry__meta h1 {
            font-size: 2.2rem;
            line-height: 1.3;
            text-align: center;
            max-width: 100%;
            margin-top: 0.5rem;
        }

        .entry__meta h2 {
            font-size: 1.5rem;
            line-height: 1.4;
            margin-top: 1.5rem;
        }

        .entry__meta h3 {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-top: 1rem;
        }

        .entry__meta p,
        .entry__meta ul,
        .entry__meta li {
            font-size: 1rem;
            text-align: left;
        }

        .offers-detailed-1,
        .offers-detailed-2,
        .offers-detailed-3 {
            grid-template-columns: 1fr;         /* Text und Bild untereinander */
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .entry__media {
            order: -1;
            padding: 1rem;
        }

        .entry__media img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .entry__meta {
            text-align: left;
        }

        .entry__meta ul {
            padding-left: 1.2rem;
        }

        .entry__meta li {
            margin-bottom: 0.8rem;
        }
    }

    /* Referenzen - Mobil optimiert */
    @media (max-width: 1100px) {
        .references-slider-2 {
            padding: 0 1rem;
            margin-top: 3rem;
            min-height: auto;
        }

        .references-slider-2 h1 {
            font-size: 2rem;
            padding: 0 1rem;
            line-height: 1.3;
            word-break: break-word;
            hyphens: auto;
        }

        .card-list .card-item-2 {
            padding: 20px;
            margin-bottom: 2rem;
        }

        .card-list .card-item-2 .user-image {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
        }

        .card-list .card-item-2 .user-profession {
            font-size: 1.1rem;
            margin: 10px 0 20px;
        }

        .card-list .card-item-2 .message-button {
            font-size: 1rem;
            padding: 8px 20px;
        }

        /* Optional: Abstand zwischen mehreren Slides in Mobile-View */
        .swiper-wrapper {
            gap: 1rem;
        }
    }

    @media screen and (max-width: 768px) {
        .references-slider-2 h1 {
            hyphens: none !important;
            -webkit-hyphens: none !important;
            overflow-wrap: normal !important;
            word-break: normal !important;
        }
    }

    /* Über mich - Mobil optimiert */
    @media (max-width: 1100px) {
        .about__meta h2 {
            font-size: 1.8rem;
            margin-top: 0.5rem;
        }

        .about__meta h3,
        .about__meta ul li h3 {
            font-size: 1.1rem;
        }

        .about__meta p,
        .about__meta li {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .contact-button {
            width: 100%;
            font-size: 0.95rem;
        }

        .about__media img {
            width: 100%;
        }
    }

    /* Kontakt - Mobil optimiert */
    @media (max-width: 1100px) {
        .contact-section {
            padding: 2rem 1rem;
        }

        .contact-container {
            padding: 20px;
            gap: 20px;
        }

        .contact-form-container h2,
        .contact-info-wrapper h2 {
            font-size: 1.5rem;
        }

        .contact-info-container h3 {
            font-size: 1.25rem;
        }

        .contact-form-container input,
        .contact-form-container textarea,
        .contact-form-container select {
            font-size: 0.95rem;
        }

        .form-checkbox {
            font-size: 0.85rem;
        }

        .contact-info-container p {
            font-size: 0.95rem;
        }

        .social-links a img {
            width: 40px;
            height: 40px;
        }
    }

    /* Impressum - Mobil optimiert */
    @media (max-width: 1100px) {
        .impressum {
            width: 90%;
            padding: 1rem;
        }

        .impressum h1 {
            font-size: 2.2rem;
            text-align: left;
            margin-top: 70px;
        }

        .impressum h2 {
            font-size: 1.5rem;
            text-align: left;
            margin-top: 1.5rem;
        }

        .impressum p,
        .impressum li {
            font-size: 1rem;
            line-height: 1.6;
            text-align: left;
        }

        .footer-container {
            padding: 1.5rem 0;
        }
    }

    /* Datenschutzerklärung - Mobil optimiert */
    @media (max-width: 1100px) {
        .datenschutzerklaerung {
            width: 90%;
            padding: 1rem;
        }

        .datenschutzerklaerung h1 {
            font-size: 2.2rem;
            text-align: left;
            margin-top: 70px;
        }

        .datenschutzerklaerung h2 {
            font-size: 1.6rem;
            text-align: left;
            margin-top: 1.5rem;
        }

        .datenschutzerklaerung h3 {
            font-size: 1.4rem;
        }

        .datenschutzerklaerung h4 {
            font-size: 1.2rem;
        }

        .datenschutzerklaerung p,
        .datenschutzerklaerung ul li {
            font-size: 1rem;
            line-height: 1.6;
            text-align: left;
        }

        .footer-container {
            padding: 1.5rem 0;
        }
    }