@charset "utf-8";
/* CSS Document */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; 
}


.primary-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 40px;
    background-color: #FFFFFF; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 63px; 

/* Logo-Bereich (Links) */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 80px; 
    width: auto;
}

.logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #00000; 
}


.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px; 
}

.main-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 1.1em;
    padding: 10px 15px;
    transition: color 0.3s;
    border-radius: 999px;
}


.main-nav a:hover {
    color: #FF8800;
}


.nav-active {
    background-color: #FF8800; 
    color: white !important; 
    font-weight: bold;
    border-radius: 999px;
}

.nav-active:hover {
    background-color: #e67e00; /* Dunkleres Orange beim Hover */
	border-radius: 999px;
}

/* Dropdown-Container */
.dropdown {
    position: relative; 
}

/* Dropdown-Menü (Unterpunkte) */
.dropdown-menu {
    position: absolute;
    top: 150%; /* Unterhalb des "Wissen"-Links */
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 180px;
    z-index: 10; /* Stellt sicher, dass das Menü über anderen Inhalten liegt */
    padding: 10px 0;
    
    /* Zuerst verstecken */
    display: none; 
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block; 
    padding: 8px 15px;
    color: #333;
    font-size: 1em;
    background-color: transparent; 
    border-radius: 0; 
}

.dropdown-menu a:hover {
    background-color: #f0f0f0; 
    color: #FF8800;
}


.dropdown:hover .dropdown-menu,
.dropdown-menu-visible { 
    display: block;
    visibility: visible;
    opacity: 1;
}

.card-mitgefühl , .card-notruf , .card-sicherheit , .card-wunde {
	
	max-height: 20px;
	max-width: 15px; 
}
	
