/* lakeconews.com media kit styling */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0b1c2f;
    --navy-light: #1a2f44;
    --red: #c62828;
    --red-dark: #8b1e1e;
    --gray-light: #f8fafc;
    --gray-border: #e9ecef;
    --text-dark: #1a1e24;
    --text-muted: #495057;
    --text-light: #6c757d;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 15px 30px rgba(11, 28, 47, 0.15);
    --shadow-lg: 0 20px 35px rgba(198, 40, 40, 0.15);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    border-bottom: 4px solid var(--red);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.hero h1 a { 
    text-decoration:none;
 }

.hero--mediakit {
    padding: 60px 0;
    text-align: center;
}

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

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-tagline .accent-text {
    color: var(--red);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 0;
    background: transparent;
}

.btn--primary {
    background: transparent;
    border-color: white;
    color: white;
}

.btn--primary:hover {
    background: white;
    color: var(--navy);
}

.btn--secondary {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.btn--secondary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn--outline {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: white;
}

.btn--large {
    padding: 18px 48px;
    font-size: 1.2rem;
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.btn--large:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn--full {
    width: 100%;
    text-align: center;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section--accent {
    background: var(--gray-light);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 20px auto 0;
}

.section-title--left {
    text-align: left;
}

.section-title--left::after {
    margin: 20px 0 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: -30px auto 50px;
}

/* ===== CREDIBILITY SECTION ===== */
.credibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.credibility-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.credibility-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.credibility-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.credibility-icon {
    font-size: 2rem;
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.credibility-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.credibility-text strong {
    color: var(--navy);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.credibility-image {
    text-align: center;
}

.credibility-image img {
    max-width: 100%;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-lg);
}

.image-caption {
    margin-top: 15px;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* ===== METRICS GRID ===== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metrics-grid--centered {
    max-width: 900px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 15px;
    line-height: 1;
}

.metric-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CHART CONTAINER ===== */
.chart-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.pricing-card--featured {
    border: 2px solid var(--red);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-card-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--gray-border);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    padding: 4px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    text-align: center;
}

.pricing-card-body {
    padding: 30px;
    flex-grow: 1;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-list li::before {
    content: '✓';
    color: var(--red);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-card-footer {
    padding: 0 30px 30px;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}

/* ===== CTA CONTAINER ===== */
.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0;
    border-top: 4px solid var(--red);
}

.footer-content {
    text-align: center;
}

.footer p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.footer a:hover {
    border-bottom-color: var(--red);
}

.footer-phone {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--red);
    opacity: 1 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card--featured {
        order: -1;
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-logo {
        max-width: 220px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
    
    .pricing-card--featured {
        transform: scale(1);
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-5px);
    }
    
    .credibility-item {
        padding: 20px;
    }
    
    .credibility-icon {
        font-size: 1.8rem;
        min-width: 40px;
    }
    
    .footer p {
        font-size: 1.1rem;
    }
    
    .footer-phone {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 180px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .metric-number {
        font-size: 2.2rem;
    }
    
    .credibility-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .credibility-icon {
        margin: 0 auto;
    }
    
    .pricing-card-header h3 {
        font-size: 1.5rem;
    }
    
    .btn--large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero {
        background: white;
        color: black;
        border-bottom: 2px solid var(--red);
    }
    
    .hero-logo {
        filter: none;
    }
    
    .btn,
    .hero-buttons {
        display: none;
    }
    
    .pricing-card,
    .metric-card,
    .credibility-item {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .chart-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
.metric-subtext {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 8px;
    font-style: italic;
}

/* ===== IMPROVED PRINT STYLES ===== */
@media print {
    /* Reset backgrounds and colors for print */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    @page {
        size: letter;
        margin: 0.75in;
    }

    body {
        background: white;
        color: black;
        font-size: 11pt;
        line-height: 1.4;
    }

    /* Hide interactive elements */
    .btn,
    .hero-buttons .btn--secondary,
    .modal-overlay,
    .ratesheet-cta {
        display: none !important;
    }

    /* Keep primary navigation button but style it for print */
    .hero-buttons .btn--primary {
        display: none !important;
    }

    /* Hero section */
    .hero {
        background: white !important;
        color: black !important;
        padding: 0 0 30px 0 !important;
        border-bottom: 2px solid #c62828 !important;
    }

    .hero::before {
        display: none !important;
    }

    .hero-logo {
        filter: none !important;
        max-width: 200px;
        margin: 0 auto 15px;
    }

    .hero-tagline {
        color: #333 !important;
        font-size: 14pt;
    }

    .hero-tagline .accent-text {
        color: #c62828 !important;
    }

    /* Section spacing */
    .section {
        padding: 30px 0 !important;
        page-break-inside: avoid;
    }

    .section--accent {
        background: #f8fafc !important;
        border-top: 1px solid #e9ecef !important;
        border-bottom: 1px solid #e9ecef !important;
    }

    /* Section titles */
    .section-title {
        color: #0b1c2f !important;
        font-size: 18pt;
        margin-bottom: 20px;
    }

    .section-title::after {
        background: #c62828 !important;
    }

    .section-subtitle {
        color: #495057 !important;
        font-size: 12pt;
    }

    /* Metric cards */
    .metric-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        background: white !important;
    }

    .metric-number {
        color: #c62828 !important;
        font-size: 24pt;
    }

    .metric-label {
        color: #0b1c2f !important;
    }

    .metric-subtext {
        color: #666 !important;
    }

    /* Credibility items */
    .credibility-item {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        background: white !important;
    }

    .credibility-icon {
        font-size: 16pt;
    }

    .credibility-text {
        color: #333 !important;
    }

    .credibility-text strong {
        color: #0b1c2f !important;
    }

    /* Charts - ensure they print */
    .chart-container {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        background: white !important;
        page-break-inside: avoid;
        margin: 20px 0;
        padding: 15px;
    }

    canvas {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Table */
    .top-pages {
        page-break-before: always;
        margin-top: 40px;
    }

    .table-container {
        overflow: visible !important;
        border: 1px solid #ddd !important;
    }

    table {
        min-width: 100% !important;
    }

    th {
        background: #0b1c2f !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    td {
        border-bottom: 1px solid #ddd !important;
    }

    /* Pricing cards */
    .pricing-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }

    .pricing-card--featured {
        border: 2px solid #c62828 !important;
    }

    .featured-badge {
        background: #c62828 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .pricing-card-header h3 {
        color: #0b1c2f !important;
    }

    .pricing-list li::before {
        color: #c62828 !important;
    }

    .pricing-note {
        color: #666 !important;
    }

    /* Footer */
    .footer {
        background: #0b1c2f !important;
        color: white !important;
        border-top: 2px solid #c62828 !important;
        page-break-after: avoid;
    }

    .footer a {
        color: white !important;
    }

    .footer-phone {
        color: #c62828 !important;
    }

    /* Page breaks */
    h2, h3 {
        page-break-after: avoid;
    }

    img, canvas, table {
        page-break-inside: avoid;
    }

    /* Print header */
    .print-header {
        display: block !important;
        text-align: center;
        margin-bottom: 30px;
        font-size: 10pt;
        color: #666;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
    }

    /* Print footer */
    .print-footer {
        display: block !important;
        position: running(footer);
        text-align: center;
        font-size: 9pt;
        color: #666;
        margin-top: 20px;
        border-top: 1px solid #ccc;
        padding-top: 10px;
    }
}

/* Hide print elements on screen */
.print-header,
.print-footer {
    display: none;
}
