/* GRUNDLAGEN & FARBPALETTE (Dezent und Schlicht) */
:root {
  /* HINTERGRUND & TEXT (Warm-Neutraler Kontrast) */
  --color-bg: #F9F7F0;        /* Hellbeige/Creme (Hintergrund bleibt warm) */
  --color-text: #333333;      /* Dunkelgrau für Haupttext */
  
  /* AKZENTE (Kühle, dezente Töne) */
  --color-accent-klecks: #6495ED;    /* Gedämpftes, ruhiges Königsblau ('kreativ') */
  --color-accent-dezent: #6495ED;    /* Gedämpftes Hellblau/Blaugrau A8C3CF,77a1b4,9cb0e0,7591d4,79A0B8 ('wertfrei') */
  --color-accent-hover: #79A0B8;     /* Etwas dunkleres Blau für Hover-Effekte */
  
  /* TYPOGRAFIE */
  --font-body: 'Helvetica Neue', 'Arial', sans-serif;
}

/* RESPONSIVE BASE (Mobile-First-Ansatz) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  padding-top: 60px; /* Platz für fixed Header */
}

/* LAYOUT CONTAINER */
.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}


/* TYPOGRAPHIE */
h1, h2, h3, h4 {
  font-weight: 300; /* Leichte Schriftstärke */
  margin-bottom: 0.5em;
  color: var(--color-text);
}
h1 { font-size: 2.1em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.1em; }

p { margin-bottom: 1em; }

/* HIGHLIGHTS: DER FARBKLECKS (Kreativität & Wertfreiheit) */
.highlight-coaching {
  color: var(--color-accent-klecks); /* Das auffälligere Königsblau */
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05); 
}

.highlight-wertfrei {
  color: var(--color-accent-dezent); /* Das dezentere Hellblau */
  font-weight: 600;
}


/* GRUNDSTYLING FÜR DAS LOGO */
.logo a {
    /* Stellt sicher, dass das Logo-Element selbst nicht gestylt wird */
    font-size: 1.5em; /* Kann entfernt werden, wenn nur das Bild verwendet wird */
    font-weight: bold;
    color: var(--color-accent-klecks); 
    text-decoration: none;
}

/* WICHTIG: Begrenzung der Bildgröße im Header */
.logo img {
    /* Setzt die maximale Höhe auf den gewünschten Wert */
    max-height: 100px; 
    /* Lässt die Breite automatisch skalieren, um Verzerrung zu vermeiden */
    width: auto; 
    /* Stellt sicher, dass das Bild auch auf dem Handy nicht zu breit wird */
    max-width: 100%; 
    display: block;
}

/* Anpassung des Headers, falls er durch die 100px zu groß wird */
header {
    /* Füllt den vertikalen Raum im Header gleichmäßig */
    padding: 15px 5%; 
    /* Stellt sicher, dass die Elemente im Header vertikal zentriert sind */
    align-items: center; 
}
/* GRUNDSTYLING FÜR DAS LOGO */


/* HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
  z-index: 1000;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Stellt sicher, dass Google Icons dieselbe Schriftfarbe wie der Link verwenden */
.material-symbols-outlined {
    font-size: 1.1em; /* Größe beibehalten */
    vertical-align: middle; 
    margin-right: 5px; /* Abstand zum Text */
    display: inline-block;
    
    /* NEUE KORREKTUR: Verschiebt das Icon optisch leicht nach unten */
    transform: translateY(-18%); 
}

/* Optional: Korrektur für den Footer */
footer nav a .material-symbols-outlined {
    /* Im Footer sind die Schriftgrößen oft kleiner, hier kann eine andere Korrektur nötig sein */
    transform: translateY(-10%); 
}

/* 1. DER BURGER-BUTTON (Standardmäßig auf Desktop versteckt) */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.8em;
    color: var(--color-text); /* Icon-Farbe */
    display: block; /* Auf Mobilgeräten standardmäßig sichtbar */
}
.menu-icon {
    transform: translateY(10%); /* Korrektur für Material Symbol */
    color: var(--color-accent-klecks);
}

/* 2. DIE NAVIGATION (Standardmäßig auf Mobilgeräten VERSTECKT) */
nav ul {
  list-style: none;
  /* Auf Mobilgeräten (kleiner Screen) soll die Liste standardmäßig versteckt sein */
  display: none; 
  flex-direction: column;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  position: absolute;
  top: 60px; /* Unterhalb des fixed Headers */
  left: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 3. Wenn die Navigation aktiv ist, wird sie sichtbar (durch JavaScript gesetzt) */
#main-navigation.is-open ul {
    display: flex; /* Override: Menü ist jetzt sichtbar */
}

nav ul li {
  margin: 0;
  padding: 10px 5%;
  border-bottom: 1px solid #f0f0f0;
}

nav ul a {
  display: block;
  padding: 5px 0;
  color: var(--color-text);
  font-weight: 500;
}

/* DESKTOP-ANSICHT (Responsive Optimierung - ab 768px) */
@media (min-width: 768px) {
    /* 1. Auf dem Desktop wird der Toggle-Button VERSTECKT */
    .menu-toggle {
        display: none;
    }

    /* 2. Auf dem Desktop ist die Navigation immer SICHTBAR */
    nav ul {
        display: flex !important; /* Wichtig: Override für .is-open und display: none */
        position: static;
        flex-direction: row;
        width: auto;
        box-shadow: none;
        padding: 0;
    }
    
    nav ul li {
        margin-left: 20px;
        padding: 0;
        border-bottom: none;
    }
}


.logo a {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--color-accent-klecks); /* Logo ist markant */
  text-decoration: none;
}

/* LINKS & BUTTONS */
a {
  color: var(--color-accent-klecks); /* Links im Inhalt sind auffällig */
  text-decoration: none;
}
a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* Stellt sicher, dass Google Icons dieselbe Schriftfarbe wie der Link verwenden */
.material-symbols-outlined {
    font-size: 0.7em; /* Größe leicht anpassen */
    vertical-align: middle; /* Icons mittig zum Text ausrichten */
    margin-right: 3px; /* Abstand zum Text */
    display: inline-block;
    transform: translateY(-18%); 
}


/* HERO SECTION (Startseite) */
.hero {
  padding: 80px 5%;
  text-align: center;
  background-color: #fcfcfc;
}

/* Stile vom alten img-Tag auf den neuen Container übertragen */
.hero-image {
  max-width: 100%;
}

/* Die spezifischen Bildstile beibehalten und an den neuen Container anpassen */
.hero-image picture,
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; 
  display: block;
  margin: 0px auto;
}
/* HERO SECTION (Startseite) */


/* CONTENT SECTIONS */
.content-section {
  padding: 40px 0;
  border-bottom: 1px solid #EBEBEB;
}

.content-section-last {
  padding: 40px 0;
}

.section-image-left {
  display: flex;
  flex-direction: column; 
  gap: 30px;
  align-items: center;
}

.section-image-left img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.section-text {
  flex: 1;
}

/* ÜBER MICH SEITE */
.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  float: right; 
  margin: 0 0 20px 20px;
}

/* FOOTER (Rechtliches) */
footer {
  text-align: center;
  padding: 30px 5%;
  margin-top: 40px;
  border-top: 1px solid #EBEBEB;
  font-size: 0.85em;
  color: #777777;
}

footer nav a {
  color: #777777; /* Graue Links im Footer, um sie dezent zu halten */
  margin: 0 10px;
}
footer nav a:hover {
    color: var(--color-accent-klecks); /* Hauptblau im Footer-Hover */
}

/* DESKTOP-ANSICHT (Responsive Optimierung) */
@media (min-width: 768px) {
  nav ul {
    display: flex; 
  }

  .container {
    max-width: 1100px;
    padding: 20px;
  }
  
  .section-image-left {
    flex-direction: row;
  }

  .section-image-left.reverse {
    flex-direction: row-reverse;
  }
}
/* DESKTOP-ANSICHT (Responsive Optimierung) */

/* --- KONTAKTFORMULAR STYLING --- */
.contact-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-klecks); 
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-accent-klecks); 
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--color-accent-hover);
}

/* --- Fehlermeldungs-Box --- */
.error-box {
    background-color: #ffe0e0; /* Hellrot */
    border: 1px solid #ff3333;
    color: #cc0000;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.error-box strong {
    font-weight: 700;
}

.error-box ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    margin-top: 5px;
}
/* --- Fehlermeldungs-Box --- */
/* --- KONTAKTFORMULAR STYLING --- */

/* --- GALERIE STYLING --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsives Raster */
    gap: 25px; /* Abstand zwischen den Bildern */
    margin-top: 40px;
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden; 
    text-align: center;
    display: flex; 
    flex-direction: column;
    justify-content: space-between; 
}

.gallery-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    display: block;
    border-bottom: 1px solid #eee; 
}

.gallery-item-info {
    padding: 15px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.gallery-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: var(--color-accent-klecks);
}

.gallery-item p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}
/* --- GALERIE STYLING --- */

/* SPEZIFISCHES STYLING FÜR DIE 404-SEITE */
.error-container {
    text-align: center;
    padding: 80px 20px;
    min-height: 0vh; /* variiert wie weit der Footer unten bleibt, 60vh setzt ihn weiter runter */
}

.error-code {
    font-family: Arial, sans-serif;
    font-size: 8em; /* Große Schriftgröße */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-4, .code-4-after {
    color: var(--color-text);
}

.error-message h2 {
    font-size: 1.8em;
    color: var(--color-accent-klecks);
    margin-bottom: 15px;
}

.error-message p {
    font-size: 1.1em;
    color: #666;
}
/* SPEZIFISCHES STYLING FÜR DIE 404-SEITE */

/* Spezifisches CSS für die Kreativraum-Seite */
 /* Layout für die Galerie-Fotos */
 .room-gallery {
     display: grid;
     gap: 20px;
     padding-bottom: 20px;
 }

 .room-gallery img {
     width: 100%;
     height: 350px; /* Einheitliche Höhe für alle Bilder */
     object-fit: cover; /* Schneidet die Bilder zu, um den Raum zu füllen */
     border-radius: 8px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 /* Info-Block */
 .info-block {
     background-color: var(--color-background-light); /* Helle Hintergrundfarbe */
     padding: 30px;
     border-radius: 12px;
     margin-top: 30px;
 }

 .info-list {
     list-style: none;
     padding: 0;
 }

 .info-list li {
     padding: 10px 0;
     border-bottom: 1px dashed #ddd;
     display: flex;
     align-items: center;
 }

 .info-list li:last-child {
     border-bottom: none;
 }

 .info-list .material-symbols-outlined {
     color: var(--color-accent-klecks);
     margin-right: 15px;
     font-size: 1.5em;
 }
 /* Info-Block */

/* Desktop-Optimierung für die Galerie */
 @media (min-width: 768px) {
     .room-gallery {
         grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Desktop */
     }
 }
/* Spezifisches CSS für die Kreativraum-Seite */

/* SPEZIFISCHES STYLING FÜR DIE ANGEBOTSSEITE */
.angebot-grid {
    display: grid;
    gap: 40px;
    padding-bottom: 50px;
}

.angebot-karte {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angebot-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.angebot-karte h3 {
    font-size: 1.6em;
    margin-top: 0;
    padding-bottom: 10px;
	border-bottom: 2px solid var(--color-accent-klecks);
}

.angebot-karte.wertfrei h3 {
    border-color: var(--color-accent-wertfrei);
}

.angebot-karte.coaching h3 {
    border-color: var(--color-accent-coaching);
}

.angebot-karte .angebot-icon {
    font-size: 2.0em;
    margin-right: 12px;
    vertical-align: middle;
}

	/* Desktop-Optimierung für das Grid */
	@media (min-width: 768px) {
    .angebot-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Desktop */
		}
	}	
/* SPEZIFISCHES STYLING FÜR DIE ANGEBOTSSEITE */

/* STYLING FÜR MAP */
.map-placeholder {
    position: relative;
    width: 100%;
    /* Höhe des Platzhalters festlegen, z.B. die spätere Höhe der Karte */
    height: 400px; 
    background-color: #f0f0f0; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 30px 0;
}

.consent-overlay {
    padding: 20px;
    max-width: 80%;
}

.consent-overlay p {
    margin-bottom: 15px;
    font-size: 1em;
}

.datenschutz-link {
    font-size: 0.8em;
    margin-top: 10px;
}
/* STYLING FÜR MAP */
