/* ═══════════════════════════════════════════════════════════════════════════
   Homepage, Kontakt & Rechtliche Seiten CSS – pizzeriazimtundkoriander.de
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.zk-homepage {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
}

.zk-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
    background: #1a0a00;
}

.zk-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(192,98,42,.85) 0%, rgba(26,10,0,.95) 100%),
        url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600&q=80') center/cover no-repeat;
    z-index: 0;
}

.zk-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.zk-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fdf6ee;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 1.25rem;
}

.zk-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 .5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.zk-hero-slogan {
    font-size: clamp(1rem, 3vw, 1.35rem);
    color: #f0e4d0;
    margin: 0 0 2rem;
    font-weight: 400;
    letter-spacing: .02em;
}

.zk-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.zk-hp-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.zk-hp-btn--primary {
    background: #c0622a;
    color: #fff;
    box-shadow: 0 4px 20px rgba(192,98,42,.4);
}

.zk-hp-btn--primary:hover {
    background: #9a4d22;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192,98,42,.5);
}

.zk-hp-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
}

.zk-hp-btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}

.zk-hp-btn--lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

.zk-hero-info {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    color: rgba(255,255,255,.75);
    font-size: .9rem;
}

@media (min-width: 600px) {
    .zk-hero-info { flex-direction: row; justify-content: center; gap: 1.5rem; }
}

/* ── Features ─────────────────────────────────────────────────────────────── */

.zk-features {
    background: #fdf6ee;
    padding: 4rem 1.5rem;
}

.zk-features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) { .zk-features-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .zk-features-inner { grid-template-columns: repeat(4, 1fr); } }

.zk-feature-card {
    background: #fff;
    border: 1px solid #e0d0be;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}

.zk-feature-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }

.zk-feature-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.zk-feature-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: #9a4d22; }
.zk-feature-card p  { margin: 0; font-size: .9rem; color: #666; line-height: 1.5; }

/* ── Speisekarte Vorschau ─────────────────────────────────────────────────── */

.zk-menu-preview {
    padding: 4rem 1.5rem;
    background: #fff;
}

.zk-section-inner { max-width: 1000px; margin: 0 auto; }

.zk-section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    color: #9a4d22;
    text-align: center;
    margin: 0 0 .5rem;
}

.zk-section-sub {
    text-align: center;
    color: #666;
    margin: 0 0 2.5rem;
    font-size: 1.05rem;
}

.zk-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) { .zk-preview-grid { grid-template-columns: repeat(3, 1fr); } }

.zk-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    background: #fdf6ee;
    border: 1px solid #e0d0be;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: .2s;
}

.zk-preview-item:hover { border-color: #c0622a; background: #fff8f4; }

.zk-preview-icon { font-size: 2rem; }
.zk-preview-name { font-weight: 700; font-size: .95rem; }
.zk-preview-price { color: #c0622a; font-weight: 800; font-size: 1rem; }

.zk-preview-cta { text-align: center; }

/* ── Öffnungszeiten & Kontakt ─────────────────────────────────────────────── */

.zk-hours-contact {
    background: #2a1200;
    color: #fdf6ee;
    padding: 4rem 1.5rem;
}

.zk-hc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) { .zk-hc-grid { grid-template-columns: 1fr 1fr; } }

.zk-hours-box h2, .zk-contact-box h2 {
    color: #e8936a;
    margin-top: 0;
    font-size: 1.5rem;
}

.zk-hours-table { width: 100%; border-collapse: collapse; }
.zk-hours-table td { padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.zk-hours-table tr:last-child td { border-bottom: none; }

.zk-open-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
}

.zk-open-badge--open   { background: rgba(58,125,68,.3); color: #7dcf8a; }
.zk-open-badge--closed { background: rgba(192,98,42,.3); color: #e8936a; }

.zk-contact-links { display: flex; flex-direction: column; gap: .75rem; }

.zk-contact-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fdf6ee;
    text-decoration: none;
    padding: .6rem .75rem;
    border-radius: 10px;
    transition: background .2s;
}

.zk-contact-link:hover { background: rgba(255,255,255,.08); color: #fdf6ee; }
.zk-contact-link--text { cursor: default; }
.zk-contact-link--text:hover { background: none; }

.zk-cl-icon { font-size: 1.25rem; width: 28px; text-align: center; flex-shrink: 0; }

/* ── Google Maps ─────────────────────────────────────────────────────────── */

.zk-map-section { line-height: 0; }
.zk-map-section iframe { display: block; }

/* ── CTA Bottom ──────────────────────────────────────────────────────────── */

.zk-cta-bottom {
    background: linear-gradient(135deg, #c0622a 0%, #9a4d22 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.zk-cta-inner { max-width: 600px; margin: 0 auto; }

.zk-cta-bottom h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin: 0 0 .75rem;
}

.zk-cta-bottom p { color: rgba(255,255,255,.85); margin: 0 0 1.75rem; font-size: 1.05rem; }

.zk-cta-bottom .zk-hp-btn--primary {
    background: #fff;
    color: #c0622a;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.zk-cta-bottom .zk-hp-btn--primary:hover {
    background: #fdf6ee;
    color: #9a4d22;
}

/* ── Rechtliche Seiten ───────────────────────────────────────────────────── */

.zk-legal-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem 4rem;
    line-height: 1.7;
}

.zk-legal-page h1 {
    font-size: 2rem;
    color: #9a4d22;
    border-bottom: 3px solid #e8936a;
    padding-bottom: .5rem;
}

.zk-legal-page h2 { color: #c0622a; margin-top: 2rem; }
.zk-legal-page h3 { color: #9a4d22; }
.zk-legal-page a  { color: #c0622a; }
.zk-legal-page ul { padding-left: 1.5rem; }
.zk-legal-page li { margin-bottom: .4rem; }

/* ── Kontaktseite ────────────────────────────────────────────────────────── */

.zk-contact-page {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem 4rem;
}

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

@media (min-width: 768px) { .zk-contact-grid { grid-template-columns: 1fr 1.3fr; } }

.zk-contact-info h2, .zk-contact-form-wrap h2 {
    color: #9a4d22;
    margin-top: 0;
}

.zk-contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.zk-ci {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.zk-ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.zk-ci a    { color: #c0622a; }

.zk-contact-form .zk-form-row { margin-bottom: 1rem; }

.zk-contact-form input, .zk-contact-form textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 2px solid #e0d0be;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .2s;
    background: #fff;
}

.zk-contact-form input:focus, .zk-contact-form textarea:focus {
    outline: none;
    border-color: #c0622a;
}

.zk-dsgvo-check label {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .9rem;
    color: #444;
}

.zk-dsgvo-check input { width: auto; flex-shrink: 0; margin-top: 2px; accent-color: #c0622a; }
.zk-dsgvo-check a { color: #c0622a; }

.zk-cf-result { margin-top: 1rem; }

.zk-notice {
    padding: .85rem 1rem;
    border-radius: 10px;
    font-size: .95rem;
}

.zk-notice--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.zk-notice--error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ── Admin CSS (in public/css/admin.css) ─────────────────────────────────── */
