/* style.css */

/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header .logo img {
    max-height: 50px;
}

/* Navigation */
.nav-link {
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d9534f;
}

.btn-warning {
    color: #fff;
    background-color: #ff9800;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #e68a00;
}

/* Hero-Bereich */
.hero {
    background: linear-gradient(to right, #ffccbc, #ffe0b2);
    color: #333;
}

.hero .btn-warning {
    font-size: 1.2rem;
    padding: 10px 20px;
}

/* Footer */
footer {
    font-size: 0.9rem;
}

footer a {
    color: #ff9800;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
