/* Grundlayout der About-Seite – inspiriert von “luftig, viel Weißraum” */
:root { --gap: 35px; }

body {
  font-family: Arial, serif;
  color: #000;
  background: #fff;
}

/* Containerweite entspricht optisch deiner Feed-Seite */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Abstand unter dem Header (dein Header hat viel Padding) */
.about { padding-top: 20px; }



/* Alternierende Content-Blöcke */
.about-block { padding: 20px 0 60px; }
.block-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  margin-bottom: var(--gap);
}
.block-row.reverse { direction: rtl; }
.block-row.reverse > * { direction: ltr; }

.block-media img {
  width: 100%;
  height: auto;
  display: block;
}
.block-text h3 {
  font-family: 'Unbounded', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 0 0 10px 0;
}
.block-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Brand-Logos */
.brands { padding: 20px 0 100px; border-top: 1px solid #e9e9e9; }
.brands h3 {
  font-family: 'Unbounded', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  margin: 0 0 18px 0;
}

.brand-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
.brand-grid li {
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
}
.brand-grid img {
  max-width: 100%;
  max-height: 32px;          /* bewusst klein */
  filter: grayscale(100%);   /* dezent neutral */
  opacity: 0.8;
}


  
  /* --- Mobile Anpassung --- */
  @media (max-width: 768px) {
    .about-text-dark {
      padding: 60px 0;
      text-align: center;
    }
  
    .about-text-inner p {
      font-size: 14px;
    }
  
    .about-media img {
      max-width: 280px;
      margin-top: 40px;
    }
  }
/* ------------------------------
   MODERN ABOUT SECTION – DUAL LAYOUT
------------------------------- */

.about-section {
    background: #fff;
    padding-bottom: 96px;
  }
  
  .about-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
    align-items: center;
    gap: 60px;
    position: relative;
  }
  
  .about-section .about-media img{
    width: 100%;
    max-width: clamp(320px, 24vw, 440px);
    display: block;
    margin: 0;
    border-radius: 6px;
    position: relative;
    z-index: 2;
  }

  .about-text-shape {
    position: relative;
    background: #000;
    color: #fff;
    padding: 72px 56px;                    /* mehr Fläche */
    clip-path: polygon(10% 0%, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    z-index: 1;
    transition: transform 0.3s ease;
    max-width: 720px;                      /* deutlich breiter */
    justify-self: start;                   /* linksbündig in der rechten Spalte */
  }
  
  .about-text-shape:hover {
    transform: translateY(-5px);
  }
  
  .about-text-inner h2 { 
    font-family: 'Unbounded', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; 
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    margin-bottom: 16px;
  }
  
  .about-text-inner p {
    font-family:Arial, Helvetica, sans-serif; 
    font-size: 10px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgb(255, 255, 255);
  }
  
  .contact-cta {
    display: flex;
    justify-content: center;
    margin: 80px 0;
  }
  
  .contact-btn {
    font-family: 'Unbounded', sans-serif;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: lowercase;
  }
  
  .contact-btn:hover {
    background-color: black;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .contact-cta {
    display: flex;
    justify-content: center;
    margin: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .contact-cta.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ------------------------------
     RESPONSIVE (Mobile)
  ------------------------------- */
  
  @media (max-width: 900px) {
  /* näher an die Navbar */
  .about { padding-top: 0; }
  .about-section { padding: 24px 0 88px; } /* oben knapper, unten Platz */

  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Bild etwas näher + definierte Breite */
  .about-section .about-media img{
    max-width: 320px;
    margin: 0 auto 0 auto;
  }

  .about-text-shape {
    max-width: 320px;              /* gleiche Breite wie Bild */
    width: 100%;
    margin: clamp(-140px, -24vw, -80px) auto 0; 
    /* oben NEGATIV: -80…-140px, mittig ~-24vw ≈ ~20–25% Bildhöhe bei 2:3 */
    padding: 44px 20px;
    text-align: center;
    position: relative;
    z-index: 3;                    /* über dem Bild */
    /* gleiche, einfache diagonale Form oben & unten (bleibt erhalten) */
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  }

  .about-text-inner { position: relative; z-index: 2; }
  .about-text-inner p { font-size: 14px; }
}

    
/* Responsive */
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; padding: 30px 0; }
  .block-row { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  
}
@media (min-width: 1025px) {
  .about-text-inner h2 {
    font-size: 28px; /* Überschrift – größer */
  }

  .about-text-inner p {
    font-size: 16px; /* Fließtext – etwas größer */
    line-height: 1.7; /* für bessere Lesbarkeit */
  }
}
@media (max-width: 768px) {
  .contact-cta {
    margin: 30px 0;
  }
}
@media (max-width: 600px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
