/* Grundlegendes Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f7;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(45deg, #ff6347, #ff8c00); /* Farbverlauf von Tomate zu Orange */
    color: white;
    text-align: center;
    padding: 80px 20px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
    transform: skewY(-5deg);
    margin-bottom: 40px;
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
}

header p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Navigation */
#navbar {
    background-color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#navbar ul {
    display: flex;
    justify-content: center;
    padding: 15px;
    list-style-type: none;
}

#navbar li {
    margin: 0 20px;
}

#navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

#navbar a:hover {
    color: #ff6347;
    transform: translateY(-2px);
}

/* Sektionen */
section {
    background-color: #fff;
    margin: 20px auto;
    padding: 40px;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

section ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

section ul li {
    margin-bottom: 15px;
}

section ul li strong {
    color: #3498db;
}

blockquote {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
    border-left: 4px solid #ff6347;
    padding-left: 15px;
}

/* Kontaktformular */
#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form input, #contact-form textarea {
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#contact-form input:focus, #contact-form textarea:focus {
    border-color: #3498db;
}

#contact-form button {
    padding: 15px;
    background-color: #3498db;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
}

/* Responsivität */
@media (max-width: 768px) {
    section {
        width: 90%;
    }

    header h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2rem;
    }

    #navbar ul {
        flex-direction: column;
    }

    #navbar li {
        margin-bottom: 15px;
    }
}
