/* ===== GLOBALE STYLES ===== */
:root {
    --primary: #5d5fef;
    --primary-dark: #4b4dbf;
    --secondary: #f8f9fa;
    --dark: #2c3e50;
    --light: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}
/* ------------------------------------------------------------------------- */

h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1em;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 1em;
    
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
   
}
p {
    margin-bottom: 1em;
}
/*============================Impressum & Datenschutzerklärung=======================================**/
.container-text-official
{
    width: 100%; 
    margin-top: auto;
    padding-top: 250px;
    text-align: center;
  
}
.datenschutz
{
    margin-top: auto;
    padding-top: 250px; 
    text-align: left; 
    width: 100%;
    margin-left:  auto;
    margin-right: auto;
    padding-left: 20px;
}


/*=====================================Therapeutin / About Us ==============================**/
/* ----- Hintergrund & Grundlayout ----- */
main {
  background: #f8f9fa; /* Heller Hintergrund */
  min-height: 100vh;
}

.container-text2 {
  width: 100%;
  margin: 0 auto;
  padding: 200px 0px 0px; /* Oben mehr Platz für Header */
  text-align: left;
  
}


/* ----- Titel ----- */
.container-text2 h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

/* ----- Content-Block (Bild + Text) ----- */
.content-block {
    display: flex;
    flex-direction: column; /* Mobile: untereinander */
    gap:40px;
}
.container-text3 {
  width: 100%;
  text-align: center;
  background-color: var(--light);
  padding: 40px 20px;
  
}
.container-text3 h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  text-align: center;
}

/* ----- Bild ----- */
.image-wrapper {
  display: flex;
  justify-content: flex-start; /* Bild horizontal zentrieren */
  
}

.lena-pic {
  width: 100%; /* Größeres Bild auf Mobile */
  max-width: 350px; /* Maximalbreite */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  margin-left: auto;
  margin-right:auto;
}

.lena-pic:hover {
  transform: scale(1.03);
}

/* ----- Text ----- */
.text-wrapper{
    width:80%;
}
.text-wrapper p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* ------------------------------------------------------------------------- */
/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border: none;
    padding: 0px 0;
    display: flex;
    height: fit-content;
    /* NEU: Zentrierung der Inhalte im Header */
    justify-content: space-between;
    align-items: center;
}

.header-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    height: fit-content;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    flex-direction: column; 
    align-items: flex-end; 
    width: 100%; 
    height: fit-content;
    order: 2;
    padding-right: 10px;
}

.headline {
    
    font-size: 1rem;
    color: white;
    text-align: center; 
    order: 1; 
    margin-top: 15px;
}
/* Hamburger Menü ------------------------------------------------------------------*/
.hamburg { 
    display: block;
    background: transparent; 
    position: relative; 
    width: 30px;
    height: 24px;
    z-index: 1002;
    cursor: pointer;
    margin-right: auto;
    margin-bottom: 20px;
}

.line { 
   position: absolute; 
   left:10px;
   height: 3px; width: 60px; 
   width:100%;
   background: #fff; border-radius: 2px;
   display: block; 
   transition: all 0.3s ease;
   transform-origin: center; 
}

.line:nth-child(1) { top: 12px; }
.line:nth-child(2) { top: 24px; }
.line:nth-child(3) { top: 36px; }

.hamburg.checked .line:nth-child(1){
   transform: translateY(12px) rotate(-45deg);
}

.hamburg.checked .line:nth-child(2){
   opacity:0;
}

.hamburg.checked .line:nth-child(3){
   transform: translateY(-12px) rotate(45deg);
}
/*------------------------------------------------------------------------------------*/

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 50px;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: calc(100vh-100px);
    background: #D7B49E;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    padding: 80px 30px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 2rem;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: white;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}





/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background:  url('pics/achtsamkeit-ruhe-geborgenheit-natur-gelassenheit-01\ Kopie.webp') no-repeat center center;
    justify-content:center; 
    background-size: cover;
    color: var(--light);
    text-align: center;
    /* padding-top: 40px;
    margin-top: 100px; */
   
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--secondary);
}

.section-light {
    background-color: var(--light);
}
.section-color {
    background-color: #666633;
}
.section-color h2 {
    color: white;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
    
}
.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}


.feature-card-kosten {
    background-color: var(--light);
    border-radius: 10px;
    padding: 2rem;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom:0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: rgba(159, 228, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}



.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #666633;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #666633;
}
/** Feature Card Kontakt **/


.features-grid-kontakt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    
}


.feature-card-kontakt {
    background-color: var(--light);
    border-radius: 10px;
    padding: 2em;
    margin-top: 1rem;
    margin-bottom:0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
    box-sizing: border-box;
}

.feature-card-kontakt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0rem;
}

.process-step {
    background-color: var(--light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #666633;
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: #D7B49E;
    color: var(--light);
    padding: 3rem 0 0;
}
.footer-contact a{
    color: white;
    text-decoration: none;
    transition: color 0.3s;

}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light);
}

.footer-copyright {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== MEDIA QUERIES ===== Responsive ===========================/*desktop Version*=================*/
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

   .features-grid-kosten {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
        gap: 2rem;
        margin-top: 1rem;
    }
   
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .content-block {
    flex-direction: row; /* Bild + Text nebeneinander */
    align-items: flex-start; /* Obere Ausrichtung */
    gap: 60px; /* Größerer Abstand */
    margin-left: 20em;
  }
  .content-block-index {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 200px;
        }
        
 
  .image-wrapper {
    flex: 0 0 auto; /* Bild behält feste Breite */
    width: auto; 
    
  }

  .text-wrapper {
    flex: 1; /* Text füllt restlichen Raum */
  }
  .text-wrapper p {
  
  margin-right: 5em;
  width: 70%;
}
 
.text-wrapper-index p {
  
  margin-right: 5em;
  width: 80%;
  margin-top: 12em;
}

  .hero {
    
    background:  url('pics/achtseimkeits-bild-kanada-nationalpark-horizontal-desktop-version.webp') no-repeat center center;
    
   
}
   
}
@media (max-width: 768px) { /*Mobile Version*/
    .headline h1 {
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(1, 1fr);
    }
    .logo-above-headline {
        font-size: 2rem;
    }
    .image-wrapper {
    display: flex;
    justify-content: center; /* Bild horizontal zentrieren */
  
    }
    .text-wrapper {
    margin-left:  4rem;
    margin-right: 4rem;
  }
  .text-wrapper-index p {
  
    margin-right: 1em;
    margin-left: 1.5em;
}

.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 0.3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}
.header-logo img{
   width: 70px;
}
   
}