@charset "UTF-8";

/* CSS Document */

@media all {

    .produktbeschreibung {}

    .produktbild {
        padding: 20px;
        border: 5px solid #019AD1;
        /* Beibehaltung der Rahmenfarbe */
        border-radius: 10px;
        /* Abgerundete Ecken */
        transition: all 0.3s ease-in-out;
        /* Übergangseffekt für Hover */
    }

    .produktbild:hover {
        transform: scale(1.05);
        /* Vergrößerung des Bildes bei Hover */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        /* Schattierung beim Hover */
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .faq {
        background: url("faq.png") no-repeat;
        display: inline-block;
        width: 50px;
        height: 50px;
    }

    .faq:hover {
        background: url("faq-hover.png") no-repeat;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 110%;
        color: #038BD2;
        text-align: center;
        background: #D0EAF6;
    }

    h1 {
        color: #008AD1;
        font-size: 120%;
    }

    .clear {
        clear: both;
    }

    #wrapper {
        width: 60%;
        margin: 0 auto;
        text-align: left;
        background: #FFED00;
        overflow: hidden;
    }

    #inhalt {
        background: #FFFFA0;
    }

    #logo {
        background: #FFED00;
        text-align: center;
    }

    #menu {
        text-align: left;
        margin: 1%;
        background: #FFFFA0;
    }

    #menu ul {
        padding: 2%;
        list-style: none;
        display: inline;
    }

    #menu ul li {
        display: inline;
        margin: 2%;
    }

    #menu ul li a {
        font-weight: bold;
        padding: 3px 0.5em;
        margin-left: 3px;
        background: #FFD700;
        text-decoration: none;
        color: #008AD1;
    }

    #menu ul li a:hover {
        color: #004d8d;
    }

    /* Kameras und Monitore Bereich bleibt unverändert */
    #kameras {
        width: 45%;
        /* Die ursprüngliche Breite */
        float: left;
        color: #019AD1;
        text-align: center;
        background: #FFED00;
    }

    #monitore {
        width: 54%;
        /* Die ursprüngliche Breite */
        float: left;
        text-align: center;
        color: #019AD1;
        background: #FFED00;
        margin: 2% 
    }

    #footer {
        margin-top: 5px;
        padding: 0.1% 0;
        background: #FFFFA0;
        font-size: 90%;
        text-align: center;
    }

}

@media screen and (max-width: 700px) {

    #menu ul,
    #menu ul li,
    #kameras,
    #monitore {
        display: block;
    }

    #menu {
        text-align: center;
    }

    #kameras,
    #monitore {
        width: 100%;
        /* Ändert sich auf 100% Breite */
        text-align: center;
    }
}

/* Zusätzliche Anpassungen für die Bilder */
.produktbild {
    padding: 20px;
    border: 5px solid #019AD1;
    /* Beibehaltung des Rahmens */
    border-radius: 10px;
    /* Abgerundete Ecken */
    transition: all 0.3s ease-in-out;
    /* Übergangseffekt bei Hover */
}

.produktbild:hover {
    transform: scale(1.05);
    /* Vergrößerung des Bildes bei Hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Schattierung beim Hover */
}

/* Produktbeschreibung */
.produktbeschreibung {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #019AD1;
    /* Beibehaltung der originalen Textfarbe */
    text-align: center;
    padding: 5px;
    background-color: #FFD700;
    /* Originale Hintergrundfarbe für die Produktbeschreibung */
    border-radius: 5px;
}

/* Hover-Effekt für die Produktbereiche */
#kameras:hover,
#monitore:hover {
    background: #FFD700;
    /* Hintergrundfarbe beim Hover */
}

/* Responsives Design für kleinere Bildschirme */
@media screen and (max-width: 700px) {

    #kameras,
    #monitore {
        width: 100%;
        /* 100% Breite für kleinere Bildschirme */
        margin: 10px 0;
    }

    #kameras h1,
    #monitore h1 {
        font-size: 1.3em;
    }

    .produktbeschreibung {
        font-size: 1.1em;
    }
}
