/* Allgemeines Styling */
body {
    font-family: sans-serif;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-card {
    background: linear-gradient(to bottom right, rgba(0, 100, 200, 0.08) 0%, rgba(0, 100, 200, 0.3) 100%);
    padding: 1em;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 100, 200, 0.2);
}

/* Header */
header {
    background: linear-gradient(to right, rgba(0, 100, 200, 0.08) 0%, rgba(0, 100, 200, 0.3) 100%);
    padding: 1rem 0;
}

#head {
    .container {
        margin-left: 2em;
    }
}

#logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0.5em;
}

/* Hero-Bereich */
#hero {
    background-image: url("business_background_banner_website.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin: 0 auto;
}

#hero h2 {
    font-size: 3rem;
}

#hero button {
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
}

/* Weitere Abschnitte */
#about,
#services,
#trainings,
#contact {
    padding-top:2em;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

#contact-button {
    /* Buttonfarbe */
    border-radius: 4px;
    cursor: pointer;
}

#contact-button:hover{
    background-color: #0056b3;
}

#backToTopBtn {
    display: none;
    /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 15px;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 5rem;
}

#backToTopBtn:hover {
    background-color: #0056b3;
}

#contact h2 {
    text-align: left;
    margin-bottom: 30px;
}

#contact .form-group {
    margin-bottom: 20px;
    width: 75%;
}

#contact label {
    display: block;
    margin-bottom: 5px;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact button {
    background-color: #4CAF50;
    /* Buttonfarbe */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#contact button:hover {
    background-color: #45a049;
    /* Hover-Effekt */
}