/* Grundlayout */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #222;
    background: #fafafa;
}
a {
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    background: #111;
    color: #fff;
}
.site-header .topbar {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.8;
}
.site-header .branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.site-header .logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.site-header nav {
    display: flex;
    gap: 18px;
}
.site-header nav a {
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
}
.site-header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.2s;
}
.site-header nav a:hover::after,
.site-header nav a.active::after {
    width: 100%;
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .site-header .branding {
        flex-direction: row;
    }
    .site-header nav {
        display: none;
        flex-direction: column;
        padding: 10px 0 16px;
    }
    .site-header nav.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
}

/* Footer */
.site-footer {
    background: #111;
    color: #eee;
    padding: 30px 0 15px;
    margin-top: 60px;
    font-size: 14px;
}
.site-footer a {
    color: #eee;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.site-footer .footer-col {
    min-width: 200px;
}
.site-footer .footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    text-align: center;
    opacity: 0.7;
}

/* Standard-Heading-Abstände */
.page-header {
    text-align: center;
    padding: 40px 0 20px;
}
.page-header h1 {
    margin: 0 0 10px;
}
.page-header p {
    margin: 0;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.btn-primary {
    background: #d4af37;
    color: #111;
}
.btn-primary:hover {
    background: #c19a2f;
}
.btn-secondary {
    background: #eee;
    color: #111;
}
.btn-secondary:hover {
    background: #ddd;
}

/* Grids */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.gallery img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    border: 2px solid #ddd;
    transition: 0.2s;
}
.gallery img:hover {
    transform: scale(1.03);
    border-color: #c9a635;
}

/* Kategorie-Kacheln */
.kategorien {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.kat-box {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 18px;
    transition: 0.2s;
}
.kat-box:hover {
    background: #f3f3f3;
    transform: translateY(-4px);
}
.kat-box .icon {
    font-size: 40px;
    margin-bottom: 8px;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active {
    opacity: 1;
}
.slide-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    color: #fff;
    text-shadow: 0 0 10px #000;
    max-width: 520px;
}
.slide-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 10px;
}
.slide-content p {
    font-size: clamp(16px, 2vw, 20px);
}

/* Button-Area Startseite */
.button-area {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 40px 16px 60px;
    flex-wrap: wrap;
}
.big-button {
    width: 260px;
    height: 150px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #111;
    transition: 0.2s;
    border: 1px solid #ddd;
}
.big-button:hover {
    background: #f3f3f3;
    transform: translateY(-4px);
}

/* Content-Seiten */
.text-block {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 16px;
}
.text-block h2 {
    margin-top: 24px;
}

/* Admin-Login */
.admin-login {
    max-width: 360px;
    margin: 80px auto;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.admin-login h1 {
    margin-top: 0;
    text-align: center;
}
.admin-login label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}
.admin-login input[type=text],
.admin-login input[type=password] {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
}
.admin-login button {
    width: 100%;
    margin-top: 16px;
}
.admin-login .error {
    color: #b00020;
    margin-top: 10px;
    text-align: center;
}

/* ⭐ GOLDENER RAHMEN FÜR DEN FOOTER */
.footer-framed {
    border: 3px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto 0;
    max-width: 1250px;
}
