/* Schriftarten importieren */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* Allgemeine Stile */
body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #000000 300px,
        #f5f5f5 50%,
        #000000 calc(100% - 300px),
        #000000 100%
    );
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 18px;
    min-height: 100vh;
    line-height: 1.6;
}

/* Hauptcontainer */
.main {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Gemeinsame Containerstile */
.container, .container-header, .container-footer {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Spezifische Container-Anpassungen */
.container {
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 20px;
}

.container-header, .container-footer {
    background-color: transparent;
    border: none;
}

/* Header */
header {
    background: transparent;
    padding: 20px;
    color: #ffffff;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.logo-container h1 {
    margin: 0 100px 0 0;
    font-size: 2em;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.logo-container img.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 100px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin-right: auto;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px auto;
    transition: 0.4s;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-buttons li {
    display: inline-block;
}

.header-button {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;
    margin: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #C0c0c8;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.header-button:hover {
    background-color: #3B82F6;
}

/* Karten-Stil */
.card-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #C0c0c8, #1E3A8A);
}

.card-icon {
    font-size: 2.5em;
    color: #1E3A8A;
    margin-bottom: 20px;
    text-align: center;
}

.card h3 {
    color: #1E3A8A;
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.card p {
    font-size: 14px;
}

.card ul {
    list-style-type: none;
    padding: 0;
}

.card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.card ul li::before {
    content: '✓';
    color: #1E3A8A;
    position: absolute;
    left: 0;
}

/* Buttons */
.btn-delete, .btn-primary, button {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    display: inline-block;
    margin: 10px 0;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
}

.btn-delete:hover {
    background-color: #c82333;
}

.btn-delete:active {
    background-color: #bd2130;
}

.btn-primary, button {
    background-color: #C0c0c8;
    color: #fff;
}

.btn-primary:hover, button:hover {
    background-color: #3B82F6;
}

.btn-primary:active, button:active {
    background-color: #1E3A8A;
}

/* Formular Layout */
form {
    display: grid;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="file"] {
    padding: 5px;
}

/* Tabellen-Stil */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #C0c0c8;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Navigation */
.nav-bar {
    background-color: transparent;
    width: 100%;
    padding: 5px 0;
}

.nav-bar .container-header {
    background-color: #C0c0c8;
    border-radius: 0 0 10px 10px;
    padding: 5px 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

nav ul li {
    margin: 1px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 4px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: transparent;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    padding-top: 10px;
    background-color: transparent;
}

.footer-bottom .container-footer {
    background-color: #C0c0c8;
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: calc(100% - 40px);
        padding: 20px;
    }
    .card-container {
        flex-direction: column;
    }
    .hamburger-menu {
        display: block;
    }
    .header-buttons {
        display: none;
    }
    .header-buttons.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .header-buttons li {
        margin: 10px 0;
    }
    .logo-container {
        flex-direction: column;
        align-items: center;
    }
    .logo-container h1 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .logo-container img.logo {
        margin-right: 0;
    }
}

/* Zusätzliche Stile */
.green-title {
    color: #1E3A8A;
    margin-bottom: 20px;
}

.content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.image-link {
    display: block;
    text-align: center;
    margin: 20px 0;
}

.image-link img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-link:hover img {
    transform: scale(1.05);
}

/* Stil für die benefits-list */
.benefits-list {
    list-style-type: none;
    padding-left: 40px;
}

.benefits-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    font-style: italic;
}

.benefits-list li::before {
    content: '\1F6CE';  /* Unicode für Rezeptionsklingel */
    position: absolute;
    left: 0;
    color: #1E3A8A;  /* Dunkelblau, passend zum Farbschema */
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
}

/* Zusätzliche Stile für bessere Lesbarkeit und Struktur */
p {
    margin-bottom: 15px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1E3A8A;
    margin-top: 30px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.5em;
}

/* Verbesserte Abschnittsstile */
section {
    margin-bottom: 40px;
}

/* Hervorgehobener Text */
.highlight {
    background-color: #f0f4ff;
    padding: 15px;
    border-left: 5px solid #1E3A8A;
    margin: 20px 0;
}

/* Zitat-Stil */
blockquote {
    font-style: italic;
    border-left: 3px solid #1E3A8A;
    padding-left: 20px;
    margin: 20px 0;
    color: #555;
}

/* Verbesserte Tabellenstile */
table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

th {
    background-color: #1E3A8A;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

td {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

tr:hover td {
    background-color: #f0f4ff;
}

/* Verbesserter Formularstyling */
form label {
    display: block;
    margin-bottom: 5px;
    color: #1E3A8A;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
    border-color: #1E3A8A;
    outline: none;
}

form button[type="submit"] {
    background-color: #1E3A8A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #3B82F6;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    h3 {
        font-size: 1.5em;
    }

    .card {
        padding: 20px;
    }

    .benefits-list {
        padding-left: 20px;
    }

    .benefits-list li {
        padding-left: 25px;
    }

    .benefits-list li::before {
        font-size: 1em;
    }
}
.header-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rundet die Ecken ab */
}