
/* Schrift moderner */
body, a {
    font-family: Arial, Helvetica, sans-serif;
}

/* Navigation */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Menü nebeneinander */
.topnav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

/* Navigation Links */
.topnav a {
    color: red;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effekt */
.topnav a:hover {
    color: #b30000;
    text-decoration: underline;
    transform: scale(1.05);
}

/* WhatsApp rechts */
.whatsapp {
    color: red;
    font-weight: bold;
    font-size: 18px;
}

/* Inhalt nach unten schieben */
body {
    padding-top: 90px;
}
