/* Facts Page - Clean Festival Design Inspired by thebloom.com */

.nav-link.active {
    color: #f05d79;
    font-weight: 600;
}

.facts-hero {
    background: linear-gradient(135deg, #f05d79 0%, #ff8fa3 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.facts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.facts-hero .container {
    position: relative;
    z-index: 2;
}

.facts-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.facts-subtitle {
    font-size: 1.4em;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.4;
}

.facts-content {
    padding: 100px 0;
    background: #fafafa;
}

.content-intro {
    margin-bottom: 100px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.4em;
    line-height: 1.6;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.fact-sections {
    display: grid;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-section {
    background: white;
    border-radius: 20px;
    padding: 80px 60px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid #f05d79;
}

.fact-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.fact-section.call-to-action {
    background: linear-gradient(135deg, #fff5f7 0%, #ffebf0 100%);
    border-top-color: #2c5530;
}

.fact-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f05d79, #ff8fa3);
    border-radius: 15px 15px 0 0;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(240, 93, 121, 0.15);
    border-color: #f05d79;
}

.stat-number {
    font-size: 3.5em;
    font-weight: 100;
    color: #f05d79;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    line-height: 1.5;
    font-weight: 300;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.content-block {
    padding: 45px 35px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f05d79, #ff8fa3);
    border-radius: 15px 15px 0 0;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(240, 93, 121, 0.12);
}

.content-block h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
}

.content-block p {
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

.environmental-facts {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.env-fact {
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.env-fact h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #c0392b;
}

.env-fact p {
    line-height: 1.7;
    color: #555;
}

.policy-content {
    margin-top: 40px;
}

.policy-content h3 {
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    color: #2c5530;
}

.policy-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution {
    padding: 30px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.solution h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #2c5530;
}

.solution p {
    line-height: 1.6;
    color: #555;
}

.action-list {
    list-style: none;
    margin-top: 30px;
}

.action-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.action-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.2em;
}

.action-list li:hover {
    color: #2c5530;
    background-color: rgba(79, 172, 254, 0.05);
    padding-left: 35px;
    transition: all 0.3s ease;
}

.sources {
    margin-top: 80px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.sources h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #2c5530;
}

.sources p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Facts Page */
@media (max-width: 768px) {
    .facts-hero {
        padding: 100px 0 60px;
    }
    
    .facts-hero h1 {
        font-size: 2.2em;
    }
    
    .facts-subtitle {
        font-size: 1.1em;
    }
    
    .fact-section {
        padding: 40px 25px;
    }
    
    .fact-section h2 {
        font-size: 1.8em;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .lead {
        font-size: 1.1em;
        padding: 0 20px;
    }
}

/* Clean Festival-Style Callout Sections */
.noise-impacts, .construction-timeline, .traffic-crisis, .water-crisis, .future-vision, .tax-burden-analysis {
    margin-top: 50px;
}

.noise-callout, .traffic-callout, .water-callout, .vision-callout, .tax-callout {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-left: 5px solid #f05d79;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.noise-callout:hover, .traffic-callout:hover, .water-callout:hover, .vision-callout:hover, .tax-callout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 93, 121, 0.15);
}

.noise-callout.critical, .traffic-callout.critical, .water-callout.critical, .vision-callout.critical, .tax-callout.critical {
    background: linear-gradient(135deg, #fff5f7 0%, #ffebf0 100%);
    border-left-color: #e74c3c;
    border-left-width: 6px;
}

.construction-impact-callout, .emergency-callout, .cost-reality, .planning-failure {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-top: 6px solid #ff9800;
    padding: 50px 40px;
    margin: 50px 0;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.08);
    transition: all 0.3s ease;
}

.construction-impact-callout:hover, .emergency-callout:hover, .cost-reality:hover, .planning-failure:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.15);
}

.emergency-callout h3, .cost-reality h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 300;
    text-align: center;
}

/* Clean Timeline Styling */
.construction-timeline {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.timeline-phase {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border-top: 5px solid #6c757d;
}

.timeline-phase:nth-child(1) { border-top-color: #f05d79; }
.timeline-phase:nth-child(2) { border-top-color: #ff9800; }
.timeline-phase:nth-child(3) { border-top-color: #4caf50; }

.timeline-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-phase h4 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.timeline-phase ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-phase li {
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-weight: 300;
}

.timeline-phase li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f05d79;
    font-weight: 600;
}

/* Clean Traffic & Water Crisis Styling */
.traffic-details, .water-stats, .domino-grid, .future-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.traffic-impact, .water-stat, .domino-effect, .scenario {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.traffic-impact::before, .water-stat::before, .domino-effect::before, .scenario::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f05d79, #ff8fa3);
    border-radius: 15px 15px 0 0;
}

.traffic-impact:hover, .water-stat:hover, .domino-effect:hover, .scenario:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(240, 93, 121, 0.12);
}

.traffic-impact h4, .water-stat h4, .domino-effect h4, .scenario h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 400;
}

/* Water Crisis Styling */
.water-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.water-stat {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #1976d2;
}

.water-stat h4 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.infrastructure-costs {
    margin-top: 40px;
    background: #fff8e1;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #ffc107;
}

.cost-breakdown {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

.cost-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.cost-burden {
    background: #ffebee;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f44336;
}

/* Future Vision Styling */
.future-scenarios {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.scenario {
    background: #fafafa;
    border: 2px solid #757575;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s;
}

.scenario:hover {
    background: #f5f5f5;
    border-color: #424242;
    box-shadow: 0 6px 20px rgba(66, 66, 66, 0.15);
}

.scenario h4 {
    color: #424242;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.failure-points {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.failure-point {
    background: #ffebee;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #e53935;
}

.failure-point h4 {
    color: #c62828;
    margin-bottom: 10px;
}

/* Cost Projection Styling */
.cost-timeline {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.cost-phase {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 10px;
    padding: 25px;
}

.cost-phase h4 {
    color: #6a1b9a;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Tax Burden Analysis */
.lci-impact {
    margin: 30px 0;
}

.lci-explanation {
    background: #e8eaf6;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #3f51b5;
    margin-bottom: 25px;
}

.lci-impacts {
    background: white;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
    border: 2px solid #5c6bc0;
}

.lci-impacts li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.lci-impacts li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

.funding-math {
    background: #fff3e0;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
}

.domino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.domino-effect {
    background: white;
    border: 2px solid #e91e63;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.domino-effect:hover {
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    transform: translateY(-3px);
}

.domino-effect h4 {
    color: #ad1457;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.real-numbers {
    margin: 40px 0;
    background: #f1f8e9;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #4caf50;
}

.real-numbers h3 {
    color: #2e7d32;
    margin-bottom: 25px;
}

.tax-scenario {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 5px solid #66bb6a;
}

.tax-scenario h4 {
    color: #388e3c;
    margin-bottom: 10px;
}

.solution-alternative {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 12px;
    border: 3px solid #4caf50;
    margin-top: 40px;
    text-align: center;
}

.solution-alternative h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.solution-alternative a {
    color: #1b5e20;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #4caf50;
    transition: all 0.3s;
}

.solution-alternative a:hover {
    color: #4caf50;
    border-bottom-color: #2e7d32;
}

/* Special Highlights */
.infrastructure-costs, .real-numbers, .solution-alternative {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 60px 50px;
    margin: 60px 0;
    text-align: center;
    border-top: 6px solid #f05d79;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.infrastructure-costs:hover, .real-numbers:hover, .solution-alternative:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(240, 93, 121, 0.15);
}

.infrastructure-costs h3, .real-numbers h3, .solution-alternative h3 {
    color: #333;
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 30px;
}

.cost-breakdown, .cost-timeline, .failure-points, .lci-impact {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.cost-item, .cost-phase, .failure-point, .lci-explanation, .funding-math {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.cost-item h4, .cost-phase h4, .failure-point h4 {
    color: #333;
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 15px;
}

.tax-scenario {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border-left: 4px solid #f05d79;
}

.solution-alternative a {
    color: #f05d79;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid #f05d79;
    transition: all 0.3s;
}

.solution-alternative a:hover {
    color: #2c5530;
    border-bottom-color: #2c5530;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .traffic-details,
    .water-stats,
    .domino-grid {
        grid-template-columns: 1fr;
    }
    
    .noise-callout,
    .traffic-callout,
    .water-callout,
    .vision-callout,
    .tax-callout {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .timeline-phase,
    .scenario,
    .cost-phase,
    .domino-effect {
        padding: 20px;
    }
    
    .infrastructure-costs,
    .real-numbers,
    .solution-alternative {
        padding: 25px;
        margin: 25px 0;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .facts-hero {
        display: none;
    }
    
    .facts-content {
        padding: 20px 0;
    }
    
    .fact-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }
    
    .stats-grid, .content-grid, .solutions-grid,
    .traffic-details, .water-stats, .domino-grid {
        grid-template-columns: 1fr;
    }
    
    .critical {
        animation: none;
    }
}