/* zusatz CSS: Kontakt/Impressum Seite */


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




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


                /* VARIANTEN Hintergrund für Kontaktdaten Wrapper*/
/* 
                .kontakt-wrapper {
                    display: flex;
                    gap: 10px;
                    align-items: flex-start;
                    width: 100%;
                    max-width: 900px;
                    margin: 20px auto;
                    padding: 30px; 
                    box-sizing: border-box;

                    background: #f3e9d8; 
                    border-radius: 10px;
                }
 */


                .kontakt-wrapper {
                    display: flex;
                    gap: 10px;
                    align-items: flex-start;
                    width: 100%;
                    max-width: 900px;
                    margin: 20px auto;
                    padding: 30px;              /* etwas mehr Luft */
                    box-sizing: border-box;

                    background: linear-gradient(180deg, #f7f2ea, #e8dfd2); /* warmes Beige */
                    border-radius: 10px;

                    box-shadow: 0 2px 6px rgba(0,0,0,0.1);

                }

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

                    background: #fff;
                    border: 1px solid #ddd;
                    border-radius: 10px;
                    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
                }

 */







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

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



    margin-bottom: 0.2rem;

}



/* Bild-Spalte */
/* 
.kontakt-bild img {
    max-width: 80%;
    height: 160px;
    display: block;
    margin-left: auto;
    border-radius: 10px;

}
 */ /* Bild rechts ausrichten */

                                /* VERSUCH mit Block, Stift, Weizenähre*/
                                .kontakt-bild1 {
                                    position: relative;
                                }

                                .kontakt-bild1 img {
                                    position: absolute;
                                    right: -25px;
                                    top: -60px;
                                    width: 230px;
                                    height: auto;
                                    opacity: 1.0;              /* leicht transparent */
                                    mix-blend-mode: multiply;   /* verschmilzt mit Hintergrund */
                                    pointer-events: none;       /* verhindert Klickblockade */
                                }








/* ------------------------------------------------------------
   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;

                    /* VARIANTE */
                    background: #ffffff;
                    border: 1px solid #8f6723;
                    color: #8f6723;
                    box-shadow: 0 2px 4px rgba(0,0,0,0.1);



    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) {

  
  
    h3 {
        font-size: 2.5rem;
        margin-top: 3rem;
       /*  line-height: 1.5; */
    }





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

    .kontakt-block {
        width: 100%;
    }

    .kontakt-block p {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    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;

      }




                                /* VERSUCH mit Block, Stift, Weizenähre*/
                                .kontakt-bild1 img {
                                    right: -80px;
                                    top: -900px;
                                    width: 560px;
                                    opacity: 1.0;              /* leicht transparent */
                                }









}
