

/* =======================================
   GRUNDEINSTELLUNGEN
======================================= */


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    color: #333333;
}

p {
    color: #666666;
}


/* =======================================
   STARTSEITE
======================================= */

.starttext
{
    max-width: 700px;
    margin: 0 auto;
    
}


/* =======================================
   TEXTSEITEN
======================================= */

.textseite
{
    max-width: 700px;
    margin: 0 auto;
   
}





/* =======================================
   NAVIGATION
======================================= */


nav {
    background: #333;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}

.menu a:hover {
    background: #555;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #333;
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu li {
    width: 100%;
}

.dropdown:hover .submenu {
    display: block;
}



/* =======================================
   ARTIKELKARTEN
======================================= */



.artikel {
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 15px;
    margin-bottom: 15px;
}
.artikel h2 {
    margin-top: 0;
}


/* =======================================
   BILDERGALERIE
======================================= */

.galerie {
    margin: 20px 0;
}

.vorschaubild {
    width: 200px;
    height: auto;
    margin: 5px;
    border: 1px solid #cccccc;
}

.vorschaubild:hover {
    border: 1px solid #333333;
}



/* =======================================
   LIGHTBOX
======================================= */


.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.lightbox-bild {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: 3% auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}


/* =======================================
   HANDYANSICHT
======================================= */




@media (max-width: 800px)
{
    .container
    {
        margin: 10px;
        padding: 10px;
    }

    .menu
    {
        flex-direction: column;
    }


.menu li
{
    margin-bottom: 3px;
}

.menu a
{
    display: block;
    background: white;
    color: #333333;
    text-align: center;
    border-radius: 8px;
    padding: 6px;
    margin: 0 10px;
    border: 1px solid #cccccc;
    text-decoration: none;
}

    .galerie
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vorschaubild
    {
        width: 90%;
        max-width: 400px;
    }

    h1
    {
        font-size: 1.6em;
    }

    h2
    {
        font-size: 1.4em;
    }
}

.seitentitel
{
    display: none;
}

.katbutton
{
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 8px 15px;
    margin-bottom: 5px;
    font-size: 1.1em;
}


.starttext
{
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}





/* =======================================
   KATEGORIEBUTTONS
======================================= */

.kategorien {
    margin: 10px 0;
}

.katbutton {
    display: inline-block;
    background: #333;
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    margin: 3px;
    border-radius: 5px;
}

.katbutton:hover {
    background: #555;
}







/* =======================================
   KONTAKTBUTTONS
======================================= */



.kontaktbutton {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px 10px 10px 0;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.kontaktbutton:hover {
    background: #555;
}

.whatsapp {
    background: #25D366;
    margin-left: 30px;
}

.whatsapp:hover {
    background: #1da851;
}