/* Warning Site Custom Styles */

/* Warning banner and alerts */
.warning-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.scam-alert {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    color: #856404;
}

.scam-alert h3 {
    color: #dc3545;
    margin-top: 0;
}

/* Company info styling */
.company-details {
    background: #f8f9fa;
    border-left: 5px solid #dc3545;
    padding: 20px;
    margin: 20px 0;
}

.company-details h4 {
    color: #dc3545;
    margin-top: 0;
}

/* Criminal record section */
.criminal-record {
    background: #ffe6e6;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.criminal-record h3 {
    color: #721c24;
    margin-top: 0;
}

/* Victim testimonial styling */
.victim-testimonial {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.victim-testimonial::before {
    content: "⚠️ VICTIM REPORT";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 4px;
}

.victim-testimonial blockquote {
    font-style: italic;
    border-left: 4px solid #dc3545;
    padding-left: 20px;
    margin: 20px 0;
}

/* Photo gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.photo-item {
    text-align: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.photo-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.photo-caption {
    margin-top: 10px;
    font-weight: bold;
    color: #495057;
}

/* Contact info styling */
.contact-info {
    background: #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.contact-info h4 {
    color: #495057;
    margin-top: 0;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}

.contact-info li:last-child {
    border-bottom: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .warning-banner {
        font-size: 1em;
        padding: 15px;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .warning-banner,
    .scam-alert,
    .criminal-record {
        background: white !important;
        border: 2px solid #000 !important;
        color: #000 !important;
    }
}
