/* Allgemeine Stile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    text-align: center;
}

i {
    color: darkorange;
}

a {
    text-decoration: none; 
    color: #555; 
    transition: color 0.3s ease; 
}

a:hover {
    color: #333; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Logo */
header .logo {
    width: 80%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Bild mit Zonen */
.image-container {
    position: relative;
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
}

.zones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zone {
    position: absolute;
    border: 2px solid transparent; /* Unsichtbare Zonen */
    cursor: pointer;
}

.zone:hover {
    border: 1px dashed #5f5f5f; /* Sichtbare Umrandung beim Hover */
}

/* Beispiel für Zonengrößen und Positionen */
.zone:nth-child(1) { top: 10%; left: 2%; width: 5%; height: 80%; }
.zone:nth-child(2) { top: 10%; left: 10%; width: 15%; height: 80%; }
.zone:nth-child(3) { top: 10%; left: 30%; width: 10%; height: 80%; }
.zone:nth-child(4) { top: 10%; left: 42%; width: 18%; height: 80%; }
.zone:nth-child(5) { top: 10%; left: 61%; width: 15%; height: 80%; }
.zone:nth-child(6) { top: 10%; left: 75%; width: 15%; height: 80%; }
.zone:nth-child(7) { top: 10%; left: 92%; width: 5%; height: 80%; }

/* Textblock unter dem Bild */
.text-block {
    margin-top: 20px;
    font-size: 1.2em;
    color: #555;
    width: 80%; /* Gleiche Breite wie das Bild */
    max-width: 800px; /* Gleiche maximale Breite wie das Bild */
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Optional: Text linksbündig */
}

/* Footer */
.footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
    width: 80%; /* Gleiche Breite wie das Bild */
    max-width: 800px; /* Gleiche maximale Breite wie das Bild */
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Optional: Text linksbündig */
}

