/**
 * Sektör Tanıtım — Solid Medya özel yazılımı
 * © 2026 Solid Medya Yazılım Ajansı · https://solidmedya.com
 * Bu kaynak, Solid Medya tarafından bu proje için özel olarak geliştirilmiştir.
 */
html, body {
    margin: 0;
    background: #fff;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
}
.sheet {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 16px 80px;
    box-sizing: border-box;
}
.card {
    width: min(420px, 100%);
    text-align: center;
}
h1 {
    font-size: 20px;
    margin: 0 0 6px;
    line-height: 1.3;
}
.meta {
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
}
.qr {
    width: 360px;
    max-width: 100%;
    height: auto;
    background: #fff;
}
.url {
    margin: 14px 0 0;
    font-size: 13px;
    word-break: break-all;
    color: #222;
}
.bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 12px;
    background: #fffdf6;
    border-top: 1px solid #ead9a0;
}
.bar button,
.bar a {
    appearance: none;
    border: 1px solid #d7c57a;
    background: #e9be2d;
    color: #111;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}
.bar a.ghost {
    background: #fff;
}
@media print {
    .bar {
        display: none !important;
    }

    .sheet {
        padding: 0;
        min-height: auto;
    }

    .qr {
        width: 70mm;
    }

    @page {
        margin: 12mm;
    }
}
