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

:root {
    --primary-color: #E8997B;
    --secondary-color: #D4A574;
    --accent-color: #8B6F47;
    --light-bg: #FFF9F5;
    --text-color: #333;
    --border-color: #E8D4C4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero .motto {
    font-style: italic;
    opacity: 0.9;
    margin: 1.5rem 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #6B5437;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-align: center;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.leitsatz {
    background-color: white;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.leitsatz strong {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.gedicht {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Offer Section */
.offer-section {
    background-color: white;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offer-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Ausstattung Section */
.ausstattung-section {
    background-color: var(--light-bg);
}

.ausstattung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ausstattung-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ausstattung-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.ausstattung-item p {
    color: #555;
    line-height: 1.6;
}

/* Konzept Section */
.konzept-section {
    background-color: white;
}

.konzept-content {
    max-width: 900px;
    margin: 0 auto;
}

.konzept-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.konzept-content ul {
    list-style: none;
    margin: 1rem 0;
}

.konzept-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.konzept-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.konzept-content p {
    margin: 1rem 0;
    line-height: 1.7;
}

/* Tagesablauf Section */
.tagesablauf-section {
    background-color: var(--light-bg);
}

.timeline {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.time {
    font-weight: bold;
    color: var(--primary-color);
    min-width: 100px;
    font-size: 0.95rem;
}

.event {
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 153, 123, 0.1);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* Legal Pages */
.legal-section {
    background-color: white;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .ausstattung-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        gap: 1rem;
        flex-direction: column;
    }

    .time {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .section {
        padding: 2rem 0;
    }
}
