/* ============================================================
   KONTAKT-BEREICH (Profi-Lösung)
   - ersetzt die alte Tabelle (#table4)
   - flexibles, modernes Layout
   ============================================================ */

.kontakt-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
    box-sizing: border-box;
}

/* Jede Spalte */
.kontakt-block {
    flex: 1;
    font-size: 1rem;
    line-height: 1.3;
}

.kontakt-block p {
    text-align: left;
}


/* Bild-Spalte */
.kontakt-bild img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------------------------
   Kontakt-Buttons (gleich breit, responsiv, modern)
   ------------------------------------------------------------ */
.kontakt-button {
    display: block;
    width: 100%;              /* füllt die Spalte */
    max-width: 260px;         /* aber nie breiter als 260px */
    margin: 15px auto 0 auto; /* zentriert */
    box-sizing: border-box;

    padding: 0.7em 1em;
    font-size: 1rem;
    font-weight: bold;

    background: #ffffff;
    border: 1px solid #990000;
    color: #990000;
    text-align: center;
    text-decoration: none;

    border-radius: 5px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}


.kontakt-button:hover {
    background: #990000;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}



/* ------------------------------------------------------------
   RESPONSIVE: Smartphone
   - Spalten untereinander
   ------------------------------------------------------------ */
@media (max-width: 1000px) {

  
  

    .kontakt-wrapper {
        flex-direction: column;
    }

    .kontakt-block {
        width: 100%;
    }

    .kontakt-block p {
    white-space: nowrap;        

    }

     .kontakt-button {
        font-size: 2.0rem;   /* oder 2.3rem – je nach Geschmack */
        padding: 0.8em 1em;  /* wächst proportional */    
        margin: 1.5em 0;
        max-width: 100%;     /* wichtig: volle Breite erlauben */
        border-radius: 10px;

      }



}
