* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.5;
}

/* Header */

.topbar {
    background: #9ad66a; /* grüner Balken */
    padding: 10px 0;
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-block {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 60px;
}

.logo-tagline {
    font-size: 14px;
    margin-top: 2px;
}

/* Navigation */

.main-nav {
    display: flex;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    padding: 6px 14px;
    border: 1px solid transparent;
    font-size: 14px;
}

.nav-link.active {
    border-color: #000;
}

/* Seite */

.page-wrapper {
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 0 15px 40px;
}

.section {
    margin-bottom: 40px;
}

.section-grey {
    background: #f5f5f5;
    margin: 0;
    padding: 30px 0;
}

.hero-inner, .content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-inner h1,
.content-inner h1 {
    font-weight: normal;
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-inner p {
    margin-bottom: 8px;
}

.hero-spacing {
    margin-top: 10px;
}

/* Breadcrumb */

.breadcrumb {
    font-size: 13px;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #c96c30;
    text-decoration: none;
}

/* Skills */

.subtitle {
    color: #777;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.logo-row {
    margin-bottom: 10px;
}

.logo-text {
    display: inline-block;
    margin-right: 25px;
    font-weight: bold;
    font-size: 18px;
}

/* Kontakt */

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 30px;
    margin-top: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.contact-form button:hover {
    background: #333;
}

.privacy-hint {
    margin-top: 10px;
    font-size: 13px;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #777;
}

/* Messages */

.msg-success,
.msg-error {
    margin-top: 15px;
    padding: 10px;
    font-size: 14px;
}

.msg-success {
    background: #dff0d8;
    color: #3c763d;
}

.msg-error {
    background: #f2dede;
    color: #a94442;
}

/* Footer */

.footer {
    background: #f5f5f5;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-left, .footer-right {
    flex: 1;
}

.footer-text-small {
    font-size: 13px;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #00a08f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer-right h3 {
    text-transform: lowercase;
    margin-bottom: 8px;
}

.footer-links a {
    color: #c96c30;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #777;
    padding-bottom: 20px;
}

/* Responsive */

@media (max-width: 800px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }
}