/* ============================================
   REPORT ABUSE PAGE - Bio-Link.se
   Red-themed abuse reporting page
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    --primary: #667eea;
    --danger: #dc3545;
    --danger-dark: #c82333;
    --warning: #ffc107;
    --success: #28a745;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    --gradient-danger: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0,0,0,0.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,0.175);
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ============================================
   2. NAVBAR ENHANCEMENTS
   ============================================ */
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    color: var(--primary) !important;
}

/* ============================================
   3. ABUSE HERO
   ============================================ */
.abuse-hero {
    position: relative;
    overflow: hidden;
}

.abuse-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.abuse-hero h1 {
    position: relative;
}

.abuse-hero p {
    position: relative;
}

.zero-tolerance-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    font-weight: 700;
    gap: 0.75rem;
    border: 2px solid white;
    position: relative;
}

/* ============================================
   4. ALERT BOX
   ============================================ */
.alert-box h3 {
    color: var(--danger);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   5. VIOLATION CARDS
   ============================================ */
.violation-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.violation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--danger);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.violation-card:hover {
    border-color: var(--danger);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.violation-card:hover::before {
    transform: scaleX(1);
}

.violation-icon {
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.violation-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.violation-card p {
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   6. REPORT FORM CONTAINER
   ============================================ */
.report-form-container h2 {
    color: var(--danger);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.report-info-item:last-child {
    margin-bottom: 0;
}

.report-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.report-info-item strong {
    color: var(--danger);
}

.report-info-item a {
    color: var(--danger);
    font-weight: 600;
    text-decoration: none;
}

.report-info-item a:hover {
    text-decoration: underline;
}

/* ============================================
   7. REPORT CHECKLIST
   ============================================ */
.report-checklist {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.report-checklist h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.checklist-item:hover {
    background: var(--gray-50);
}

.checklist-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

/* ============================================
   8. SECURITY MEASURES
   ============================================ */
.security-card {
    transition: all 0.3s ease;
    height: 100%;
}

.security-card:hover {
    border-color: var(--success);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.security-badge {
    background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.security-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.security-card p {
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   9. STATS BANNER
   ============================================ */
.stats-banner {
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.stats-banner h3 {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.stats-grid {
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* ============================================
   10. BUTTONS
   ============================================ */
.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-danger {
    background: var(--gradient-danger);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
    color: white;
    text-decoration: none;
}

.btn-outline-danger {
    background: transparent;
    color: var(--danger);
    border: 2px solid var(--danger);
}

.btn-outline-danger:hover {
    background: var(--danger);
    color: white;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   11. RESPONSIVE DESIGN
   ============================================ */

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .btn {
        width: 100%;
    }
}

/* ============================================
   12. ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   13. PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    footer {
        display: none;
    }

    .abuse-hero {
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }

    .violation-card,
    .security-card {
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}