/* Allgemeine Layout-Einstellungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
}

.header .logo {
    font-size: 1.8em;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    font-size: 1.2em;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff6600;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #ff6600, #ff3300);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #ff6600;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #ff3300;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 30px;
    background-color: #ffffff;
}

.feature {
    width: 30%;
    padding: 20px;
    text-align: center;
}

.feature h2 {
    font-size: 2em;
    color: #ff6600;
    margin-bottom: 15px;
}

/* About Section */
.about {
    background-color: #f2f2f2;
    padding: 50px 30px;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 50px 30px;
    text-align: center;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form label {
    font-size: 1.2em;
    display: block;
    margin-top: 10px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}

#contact-form button:hover {
    background-color: #ff3300;
}

#form-message {
    margin-top: 20px;
    font-size: 1.2em;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 30px;
}

.social-links a {
    color: white;
    margin: 0 15px;
    font-size: 1.2em;
}

.social-links a:hover {
    color: #ff6600;
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    animation: fadeIn 2s ease-in-out;
}
