/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Farben */
:root {
    --primary-color: #4a4a4a; /* Mitteldunkles Grau */
    --accent-color: #FFD700;  /* Nicht arg kräftiges Gelb */
}

/* Header */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image-placeholder {
    width: 100px;
    height: 100px;
   background-color: white;
    border-radius: 10px;
    margin-right: 20px;
    background-image: url('as_logo.png'); /* Pfad zum Logo */
    background-size: contain; /* Stellt sicher, dass das Logo in den Platzhalter passt */
    background-position: center;
    background-repeat: no-repeat;
}

.header-text {
    text-align: left;
}

.header-text h1 {
    margin: 0;
    font-size: 2.5em;
}

.header-text p {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Über uns */
#about {
    background: #fff;
    padding: 40px 0;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

#about h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

#about p {
    font-size: 1.1em;
    padding: 0 20px;
}

/* Dienstleistungen */
#services {
    background: var(--accent-color);
    padding: 40px 0;
    text-align: center;
}

#services h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: var(--primary-color);
    text-align: center;
}

/* Kontakt */
#contact {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

#contact h2 {
    color: var(--primary-color);
}

#contact p {
    font-size: 1.1em;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

.partner-section {
    background-color: #f4f4f4;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.partner-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-section h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.partner-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: #0056b3;
}

.partner-logo {
    width: 50px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.partner-link:hover .partner-logo {
    transform: scale(1.1);
}
