/* WageDamages.net Custom Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Badges */
.badge-tier {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Calculator Form */
.calculator-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.calculator-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Results Display */
.result-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.breakdown-item {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

/* Violation Type Checkboxes */
.violation-checkbox {
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.violation-checkbox:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

.violation-checkbox input[type="checkbox"]:checked + label {
    color: var(--primary-color);
    font-weight: bold;
}

/* Charts */
.chart-container {
    position: relative;
    height: 400px;
    min-height: 400px;
}

/* Watermark */
.watermark {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 2rem 0;
}

.watermark strong {
    color: #856404;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .result-amount {
        font-size: 2rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}
