/* RostRoth-Branding, angelehnt an rostroth.de */

:root {
    --rr-red: #ce142e;
    --rr-red-dark: #a80f24;
    --rr-bg: #f9f8f6;
    --rr-text: #313131;
}

body {
    font-family: 'Kanit', Arial, sans-serif;
    background: var(--rr-bg);
    color: var(--rr-text);
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .btn {
    font-family: 'Kanit', Arial, sans-serif;
}

h1, h2, h3 {
    font-weight: 800;
}

.site-header {
    background: #1a1a1a;
    padding: 14px 0;
    margin-bottom: 32px;
}
.site-logo {
    height: 40px;
}

.card {
    border: none;
    border-radius: 10px;
}

.btn-primary {
    --bs-btn-bg: var(--rr-red);
    --bs-btn-border-color: var(--rr-red);
    --bs-btn-hover-bg: var(--rr-red-dark);
    --bs-btn-hover-border-color: var(--rr-red-dark);
    --bs-btn-active-bg: var(--rr-red-dark);
    --bs-btn-active-border-color: var(--rr-red-dark);
    --bs-btn-focus-shadow-rgb: 206, 20, 46;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
}

.form-control:focus {
    border-color: var(--rr-red);
    box-shadow: 0 0 0 0.25rem rgba(206, 20, 46, 0.15);
}

a {
    color: var(--rr-red);
}
a:hover {
    color: var(--rr-red-dark);
}

.alert-success {
    background-color: #eef7ee;
    border-color: #cde7cd;
    color: #2e6b2e;
}

.dropzone {
    border: 2px dashed #c9c5c0;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.dropzone.dragover {
    border-color: var(--rr-red);
    background: #fdeeef;
}
.dropzone .dz-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 8px;
}

.file-row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid #e9e6e2;
    border-radius: 8px;
    background: #fff;
}
.file-row .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Honeypot: fuer echte Nutzer unsichtbar, aber im DOM vorhanden (Bots fuellen es oft trotzdem aus) */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
