/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

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

/* Header */
.header {
    background: #ffffff;
    color: #ffa013;
    text-align: center;
    padding: 2rem 1rem;
}

.header h1 {
    margin: 0;
    font-size: 4.5rem;
    text-decoration:solid; 
}

.header p {
    margin: 0.5rem 0 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: #ffa013;
    color: #333;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-primary:hover {
    background: #db8709;
}

/* Navigation */
.navbar {
    background: #333;
    color: #fff;
    padding: 0.5rem 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 1rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
    background: #db8709;
}

/* Sektionen */
.section {
    padding: 2rem 1rem;
}

.bg-light {
    background: #f4f4f4;
}

.bg-image-leistungen {
    background: url('leistungen.jpg') no-repeat center center/cover;
    color: #000000;
    text-decoration: black;
    font-weight: bold;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
                  url("leistungen.jpg");
}

.bg-image-ueber-uns {
    background: url('ueber.jpg') no-repeat center center/cover;
    color: #000000;
    font-weight: bold;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)),
                  url("ueber.jpg");
}

.bg-image-referenzen {
    background: url('referenzen.jpg') no-repeat center center/cover;
    color: #fff;
    font-weight: bold;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
                  url("referenzen.jpg");
}

.bg-image-kontakt {
    background: url('kontakt.jpg') no-repeat center center/cover;
    color: #000000;
    font-weight: bold;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)),
                  url("kontakt.jpg");
}

h2 {
    text-align: center;
    margin-bottom: 0.0rem;
    color: #000000;
    text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white; /* White outline */
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.699);
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

/* Kontaktformular */
.contact-form label {
    display: block;
    margin: 0.5rem 0 0.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 0.7rem;
    background: #ffa013;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background: #db8709;
}

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