/* ABOUT ME */

:root {
  --font-color: #2f2f2fd4;
  --font-color-warm: #3b2f2cc4;
  --font-color-button: #4a4340;
  --link-color: #705647;
  --link-hover: #A88B77;
  --caption-color: #555;
  --card-bg: #f8f5f2;
  --font-base: 'Lexend';
  --font-h2: 'Archivo Black';
  --font-h3: 'Poppins';
  --primary-color:rgb(230, 226, 216);
  --primary-color-light: rgba(67, 24, 2, 0.296);
  --secondary-color: #CCBAA2;
  --highlight-color: #abbd99;
  --background-box:rgba(67, 24, 2, 0.081);
  --button-color: #59230E;
  --button-hover-color: #798177;
  --background-color:#FBF7F4;
  --bbg-dark:#c5c5c55e;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Karten */
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background-color: white;
  color: var(--primary-color);
  margin: 0 auto;
  padding-top: 8rem;
  line-height: 1.6;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--font-color-warm);
  position: relative;
}


p {
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

h3 {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--font-color);
}

.image-container {
  margin: 2rem 0;
}

.parallax-img {
  max-width: 250px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

/* Story Highlight */
.story-hero {
  background-color: #f6f1e9;
}

.story-text-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  place-items: center;
  gap: 2rem
}

.first-text {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}


.first-text p{
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
  margin: 0;
}

.story-img-container {
  grid-column: 1;
  align-self: start;
  margin-bottom: 4rem;
}
.story-text p {
  line-height: 1.8;
  font-weight: 300;
  color: var(--font-color);
}

@media (min-width: 768px) {
  .story-text-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
  }

  .first-text {
  grid-column: 1 / 4;
  grid-row: 1;
  align-self: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.story-img-container {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

  .first-text p{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 400;
  }
  
  .second-text {
    grid-column: 2 / 4;
    grid-row: 2;
  }
  
  .quote-in-text {
    grid-column: 1/4;
    padding-inline: 3rem;
  }
  
  .thrid-text {
    grid-column: 1 / 4;
  }

  .stat-block.with-number {
    grid-column: 1 / 2;
    grid-row: 5;
  }
}
.stat-block.with-number {
  display: flex;
  align-items: center;
  background-color: var(--caption-color);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
  gap: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  min-width: 100px;
  text-align: center;
}

.stat-text p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}
.stat-text strong {
  color: var(--secondary-color);
}


.story-text h2 {
  font-size: 1.8rem;
  color: var(--font-color-warm);
  margin-bottom: 1rem;
}

.story-img img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Grid Section */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background-color: var(--bg-light);
}

.info-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h3 {
  font-size: 1.3rem;
  color: var(--font-color-warm);
  margin-bottom: 0.7rem;
}

.info-card p {
  font-weight: 300;
  color: var(--font-color);
  line-height: 1.7;
}

/* Tablet Grid */
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-container {
    flex-direction: row;
    align-items: center;
  }

  .story-text {
    flex: 1;
  }

  .story-img {
    flex: 1;
    text-align: center;
  }

  .story-img img {
    max-width: 100%;
  }
}

.story-organic {
  background: radial-gradient(ellipse at top left, #f9f5f0, #fefbf6);
  border-radius: 2rem 2rem 1rem 3rem;
  padding: 2.5rem 1.5rem;
  margin: 2rem 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.story-organic-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.story-organic-text {
  color: var(--font-color);
}

.story-organic-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.story-organic-text p {
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.story-organic-img img {
  width: 100%;
  max-width: 280px;
  border-radius: 50% 50% 35% 65% / 45% 60% 40% 55%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .story-organic-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .story-organic-text {
    flex: 1;
    padding-right: 2rem;
  }

  .story-organic-img {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*inline-zitat*/
.quote-in-text {
  text-align: center;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--button-hover-color);
}

.quote-in-text blockquote {
  margin: 0;
}

span {
  font-weight: 600;
}

@media (min-width: 768px) {
  .quote-in-text {
    font-size: 1.5rem;
  }
}

.burnout-quote {
  max-width: 700px;
  margin: 4rem auto;
  padding: 2rem 1.5rem;
  background-color: rgba(236, 232, 228, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 1rem;
  font-style: italic;
  text-align: center;
  color: #4a4340;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  animation: fadeInUp 1.2s ease forwards;
}

.burnout-quote blockquote {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

.burnout-quote .quote-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.burnout-quote .quote-author {
  display: block;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #777;
}


.quote-highlight {
  background-color: var(--background-box);
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  margin-top: 5rem;
  width: 100vw;
}

.quote-author {
  text-align: right;
  color: var(--button-hover-color);
  font-weight: 500;
}

.quote-highlight {
  background-color: var(--primary-color);
  color: var(--font-color);
  text-align: center;
  padding: 5rem 1.5rem;
}

.quote-highlight blockquote {
  font-family: var(--font-h2);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.quote-highlight .quote-author {
  font-size: 1rem;
  font-weight: 400;
  color: var(--button-hover-color);
}

.highlight-item {
  background: var(--background-box);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--link-color);
  margin-bottom: 0.5rem;
}

.approach-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 6rem;
}

.approach-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.approach-text h2 {
  font-size: 2.2rem;
  font-family: var(--font-h2);
  color: var(--font-color-warm);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.approach-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--font-color);
  margin-bottom: 1.5rem;
}

.approach-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-box {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  color: var(--font-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.highlight-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

.highlight-animated {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.approach-summary-block {
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.summary-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  animation: iconPulse 4s infinite ease-in-out;
  margin-bottom: 1rem;
}

.approach-summary-text {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--font-color);
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .approach-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-text h2 {
    font-size: 2.8rem;
  }
  .approach-text p {
    font-size: 1.1rem;
  }
  .approach-summary-text {
    font-size: 1.4rem;
  }
}

.summary-icon {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  animation: iconPulse 4s infinite ease-in-out;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
    text-shadow: 0 0 0 transparent;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    text-shadow: 0 0 12px var(--secondary-color);
  }
}

.approach-summary-text {
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--font-color);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section {
  background-color: var(--caption-color);
  padding: 3rem 1.5rem;
  text-align: center;
  width: 100%;
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--font-color-button);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--button-color-light);
}

.social-section {
  text-align: center;
  padding: 2rem 0;
}

.social-icon {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: var(--font-color);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--secondary-color);
}
