:root {
    --gold:#c9a24d;
    --bg:#f3efe8;
    --card:#ffffff;
    --text:#2b2b2b;
    --muted:#6b6b6b;
}

/* ---------- Basis ---------- */

body {
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter, Arial, sans-serif;
}

a {
    color:inherit;
    text-decoration:none;
}

/* ---------- Seitenbreite ---------- */

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

/* ---------- Admin-Bar ---------- */

.admin-bar {
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:10px 20px;
    display:flex;
    gap:20px;
    font-size:.9rem;
}

/* ---------- Hero ---------- */

.hero {
    text-align:center;
    margin-bottom:60px;
}

.hero h1 {
    font-family:"Playfair Display", serif;
    font-size:3rem;
    margin-bottom:10px;
}

.hero p {
    font-size:1.1rem;
    color:var(--muted);
}

/* ---------- Karten ---------- */

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

.card {
    background:var(--card);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.card-img img {
    width:100%;
    height:340px;
    object-fit:cover;
    transition:transform 6s ease;
}

.card:hover img {
    transform:scale(1.07);
}

.card-body {
    padding:22px;
}

.card span {
    color:var(--gold);
    font-size:.75rem;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.card h2 {
    margin:6px 0 0;
    font-size:1.2rem;
}

/* ---------- Galerie ---------- */

.gallery-wrapper {
    max-width:1000px;
    margin:40px auto;
}

.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.gallery img {
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:18px;
}

/* ---------- Editor-Inhalte ---------- */

.recipe-content {
    line-height:1.8;
    margin-bottom:30px;
}

.recipe-content ul,
.recipe-content ol {
    padding-left:20px;
}

.recipe-content li {
    margin-bottom:8px;
}

/* ---------- Formulare ---------- */

.form-wrap {
    max-width:900px;
    margin:40px auto;
    background:var(--card);
    border-radius:24px;
    padding:40px;
}

input, select, textarea, button {
    width:100%;
    padding:14px;
    margin-top:10px;
    border-radius:14px;
    border:none;
    background:#f6f6f6;
    color:#000;
    font-size:15px;
}

select option {
    background:#fff;
    color:#000;
}

button {
    background:var(--gold);
    color:#000;
    font-weight:700;
    cursor:pointer;
}
/* ---------- LOGIN ---------- */

.login-box {
    margin-top:30px;
    display:flex;
    gap:10px;
    justify-content:center;
}

.login-box input {
    max-width:200px;
}

.login-box button {
    background:var(--gold);
    border:none;
    padding:14px 20px;
    cursor:pointer;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .hero h1 {
        font-size:2.4rem;
    }

    .card-img img {
        height:280px;
    }
}

@media (max-width: 600px) {
    .page {
        padding:20px 15px;
    }

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

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

    .login-box {
        flex-direction:column;
        align-items:stretch;
    }

    .login-box input {
        max-width:100%;
    }

    .card-img img {
        height:240px;
    }
}

