/* style.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    font-size: 18px;
}

.navbar {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    position: relative;
}

.navbar img {
    height: 50px;
    margin-left: 20px;
}

.navbarItems {
    margin-left: 20px;
    margin-right: 50px;
}

.navbarItems .button {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 16px 20px;
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.navbarItems .button:hover {
    background-color: #575757;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: black;
    min-width: 180px;
    z-index: 1000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: white;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #575757;
}

/* Dropdown auf Hover öffnen */
.dropdown:hover .dropdown-content {
    display: block;
}

.content {
    padding: 60px 20px;
    text-align: center;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 25px 0;
    font-size: 1rem;
}
