:root {
    --beige-light: #f6f1e7;
    --beige: #e9dfd2;
    --beige-dark: #d8c9b8;
    --text: #2b2622;
    --shadow: rgba(0,0,0,0.08);
    --radius: 16px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "TT Commons Pro";
    background: var(--beige-light);
    color: var(--text);
    line-height: 1.55;
    font-size: 1.05rem;
       
    }
    
   


/* HEADER */
header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

nav a {
    margin-right: 0.8rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
}


/* SECTIONS */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 5%;
}

#ueber-uns .row {
    display: flex;
    gap: 100px; /* Abstand zwischen Text und Bildern */
}

h2 {
    font-family: "TheSeasons";
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-family: "TheSeasons";
    font-size: 1.25rem;
    margin: 0 0 0.6rem 0;
}

/* GRID */
.items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 99% !important;   /* Scroll-Fix */
    margin: 0 auto;
}

.full {
    grid-column: 1 / -1;
}

/* TEXTBOX */
.textbox {
    background: #ffffffd9;
    padding: 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--beige);
    box-shadow: 0 4px 14px var(--shadow);
    font-size: 1rem;
    line-height: 1.45;
    width: 98%;              /* Scroll-Fix */
    margin: 0 auto;
}

/* BUTTONS */
input[type="submit"] {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    border: none;
    background: var(--beige-dark);
    cursor: pointer;
    margin-top: 0.6rem;
    max-width: 100%;         /* Scroll-Fix */
}
/* Textbox ohne Hintergrund (für Über uns & Fähigkeiten) */
.textbox.transparent {
    background: none;
    border: none;
    box-shadow: none;
padding-inline-end: 2.5rem;
   
    max-width: 100%;
}

/* IMAGES */
.imgwrap {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 2/ 3;
    width: 80%;              /* Scroll-Fix */
    margin: 0 auto;
    height: auto;
    max-height: 700px;
    object-fit: cover;
}

.imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 18px var(--shadow);
}

/* FOOTER */
footer {
  
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

#feedback .items {
    grid-template-columns: 1fr 1fr;
}

#feedback .textbox {
    width: 95%;
}

.row {
    display: flex;
    width: 100%;
    align-items: stretch; /* beide Spalten exakt gleich hoch */
    gap: 0; /* kein unnötiger Abstand */
  }
  
  /* Linke Spalte */
  .text {
    flex: 1;
    margin: 0;
    padding: 0;
    overflow: hidden; /* verhindert Überlauf */
  }
  
  /* Rechte Spalte mit mehreren Bildern */
  .bilder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    height: 600px; /* feste Höhe – verhindert Springen */
    padding-bottom: 1rem;
}

  
  /* Bilder teilen sich die Höhe gleichmäßig */
  .bilder img {
    flex: 1 0 auto;   /* verhindert dynamisches Strecken */
    width: 100%;
    height: auto;     /* Bildhöhe bleibt stabil */
    max-height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}


 


  /* ✧ ACCORDION – Überschrift NICHT weiß, NICHT blockig */
details {
    margin: 1.2rem 0;
    border-radius: var(--radius);
    background: transparent;
    border: none;
    box-shadow: none;
    padding-bottom: 0.4rem;
}

/* Header – transparent, nur Text + Linie */
details summary {
    cursor: pointer;
    padding: 0.4rem 0;
    background: transparent;
    font-family: "TheSeasons";
    font-size: 1.2rem;
    font-weight: 500;
    list-style: none;
    position: relative;
    user-select: none;
    border-bottom: 1px solid var(--beige-dark);
}

/* Hover – nur Textfarbe leicht dunkler */
details summary:hover {
    color: #1f1a17;
}

/* Default arrow entfernen */
details summary::-webkit-details-marker {
    display: none;
}

/* Pfeile für ALLE Details-Ebenen aktivieren */
details summary::after,
details details summary::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

/* Pfeil dreht sich für alle offenen Details */
details[open] > summary::after,
details details[open] > summary::after {
    transform: translateY(-50%) rotate(225deg);
}


.row.reverse {
    flex-direction: row-reverse;
}




.sprache button {
    background-color: #ffffff;   /* deine Wunschfarbe */
    color: #000000;              /* Textfarbe */
    border: 1px solid #ccc;      /* optional */
    padding: 6px 12px;
    border-radius: 6px;          /* abgerundete Ecken */
    cursor: pointer;
}

.sprache button:hover {
    background-color: #e6e6e6;   /* Hover-Farbe */
}



