/* Mobile-first CSS voor Snauw Counter */

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 100%;
    padding: 1rem;
    margin: 0 auto;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Banner Section */
.banner-section {
    text-align: center;
    margin-bottom: 1rem;
}

.banner-image {
    display: inline-block;
    max-width: 100%;
    margin: 0 auto;
}

.snauw-banner {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: #2c3e50;
}

@media (max-width: 768px) {
    .snauw-banner {
        max-width: 95%;
    }

    .banner-section {
        margin-bottom: 0.5rem;
    }
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav a:hover,
.nav a.active {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

input[type="email"],
input[type="password"],
input[type="number"],
input[type="datetime-local"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Severity selector - speciale styling voor Snauw-index */
.severity-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.severity-btn {
    aspect-ratio: 1;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.severity-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.severity-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Snauw-index specific styling */
.snauw-phases div {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-left: 3px solid #e9ecef;
    padding-left: 0.75rem;
}

.snauw-phases div:nth-child(1) { border-left-color: #28a745; } /* Fase 1 - Groen */
.snauw-phases div:nth-child(2) { border-left-color: #ffc107; } /* Fase 2 - Geel */
.snauw-phases div:nth-child(3) { border-left-color: #fd7e14; } /* Fase 3 - Oranje */
.snauw-phases div:nth-child(4) { border-left-color: #dc3545; } /* Fase 4 - Rood */
.snauw-phases div:nth-child(5) { border-left-color: #6f42c1; } /* Fase 5 - Paars */

/* Color coding for severity buttons */
.severity-btn[data-severity="1"] { border-color: #28a745; color: #28a745; }
.severity-btn[data-severity="2"] { border-color: #ffc107; color: #ffc107; }
.severity-btn[data-severity="3"] { border-color: #fd7e14; color: #fd7e14; }
.severity-btn[data-severity="4"] { border-color: #dc3545; color: #dc3545; }
.severity-btn[data-severity="5"] { border-color: #6f42c1; color: #6f42c1; }

.severity-btn[data-severity="1"]:hover,
.severity-btn[data-severity="1"].active {
    background: #28a745;
    border-color: #28a745;
    color: white;
}
.severity-btn[data-severity="2"]:hover,
.severity-btn[data-severity="2"].active {
    background: #ffc107;
    border-color: #ffc107;
    color: white;
}
.severity-btn[data-severity="3"]:hover,
.severity-btn[data-severity="3"].active {
    background: #fd7e14;
    border-color: #fd7e14;
    color: white;
}
.severity-btn[data-severity="4"]:hover,
.severity-btn[data-severity="4"].active {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}
.severity-btn[data-severity="5"]:hover,
.severity-btn[data-severity="5"].active {
    background: #6f42c1;
    border-color: #6f42c1;
    color: white;
}

/* Statistieken */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Chart container */
.chart-container {
    position: relative;
    height: 300px;
    margin: 1rem 0;
}

/* Flash messages */
.flash-messages {
    margin-bottom: 1rem;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Privacy notice */
.privacy-notice {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Quick add incident floating button */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fab:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

/* Responsive design - Tablet */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 2rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .severity-selector {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .btn {
        width: auto;
        margin-right: 0.5rem;
    }
}
/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

#header-counter, #counter-digit-1, #counter-digit-2, #counter-digit-3 {
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

#header-counter.updated,
#counter-digit-1.updated,
#counter-digit-2.updated,
#counter-digit-3.updated {
    animation: pulse 1s ease-in-out 3;
    color: #f39c12 !important;
}
