/**
 * Start Here Page Styles
 * Two-column layout with sidebar calculator navigation
 */

/* Two-column grid layout */
.start-here-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Main content area - constrained width for readability */
.start-here-content {
    max-width: 100%;
}

/* Sidebar for calculator quick access */
.start-here-sidebar {
    position: relative;
}

.sidebar-sticky {
    /* Removed sticky positioning to allow all cards to be visible */
    position: relative;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ECF0F1;
}

/* Calculator quick access cards */
.calc-quick-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.calc-quick-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.calc-quick-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: #2C3E50;
    font-weight: 600;
}

.calc-quick-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.calc-quick-btn {
    display: block;
    width: 60%;
    padding: 0.5rem 1rem;
    margin: 0 auto;
    background-color: #2C3E50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.90rem;
    transition: background-color 0.3s ease;
}

.calc-quick-btn:hover {
    background-color: #34495E;
    color: white;
}

/* Typography - using existing brand colors */
.start-here-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #8e4300;
    text-align: center;
}

.start-here-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0.5rem 0 1rem 0;
    color: #1e2579;
    border-bottom: 1px solid #666;
    padding-bottom: 0.5rem;
}

.start-here-content h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem 0;
    color: #2C3E50;
    font-weight: 600;
}

.start-here-content h4 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 1.25rem 0 0.5rem 0;
    color: #34495E;
    font-weight: 600;
}

/* Body text */
.start-here-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: #333;
}

.start-here-content ul,
.start-here-content ol {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.start-here-content li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #333;
}

.start-here-content strong {
    font-weight: 600;
    color: #000;
}

/* Links - existing brand color */
.start-here-content a {
    color: #3498db;
    text-decoration: underline;
}

.start-here-content a:hover {
    color: #2980b9;
}

/* Intro highlight - warm beige like existing sections */
.start-here-content .intro-highlight {
    background: #F9F7F2;
    border-left: 4px solid #8e4300;
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem 0;
    border-radius: 4px;
}

.start-here-content .intro-highlight p {
    margin-bottom: 0.75rem;
}

.start-here-content .intro-highlight p:last-child {
    margin-bottom: 0;
}

/* Section spacing */
.start-here-content .section {
    margin-bottom: 2.5rem;
}

/* Example boxes */
.start-here-content .example-box {
    background: #F9F7F2;
    padding: 1.25rem;
    margin: 0 0 1rem 0;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.start-here-content .example-box h3 {
    margin: 0 0 0.75rem 0;
    color: #1e2579;
    font-size: 1.1rem;
}

.start-here-content .example-box p {
    margin-bottom: 0;
}

/* Scenario box */
.start-here-content .scenario-box {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 4px;
    border: 2px solid #ffc107;
    margin: 1.5rem 0;
}

.start-here-content .scenario-box h3 {
    margin: 0 0 1rem 0;
    color: #856404;
}

.start-here-content .scenario-box h4 {
    margin: 1rem 0 0.5rem 0;
    color: #856404;
}

.start-here-content .scenario-box ul {
    margin-bottom: 0.75rem;
}

.start-here-content .scenario-box ul:last-of-type {
    margin-bottom: 0;
}

/* Calculator path - simplified */
.start-here-content .calculator-path {
    margin: 1.5rem 0;
}

.start-here-content .calc-step {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.start-here-content .calc-step:hover {
    border-color: #3498db;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.15);
}

.start-here-content .calc-step h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #1e2579;
}

.start-here-content .calc-step p {
    margin-bottom: 0.5rem;
}

.start-here-content .calc-step p:last-of-type {
    margin-bottom: 0.75rem;
}

.start-here-content .calc-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.start-here-content .calc-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* CTA box - existing brand colors */
.start-here-content .cta-box {
    background: #2C3E50;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.start-here-content .cta-box h3 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.3rem;
    border: none;
    padding: 0;
}

.start-here-content .cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}

.start-here-content .cta-button {
    display: inline-block;
    background: white;
    color: #2C3E50;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.start-here-content .cta-button:hover {
    background: #ECF0F1;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Tablet - sidebar moves to top */
@media (max-width: 1024px) {
    .start-here-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .start-here-sidebar {
        order: -1;
    }

    .sidebar-sticky {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sidebar-title {
        grid-column: 1 / -1;
    }
}

/* Mobile - single column */
@media (max-width: 768px) {
    .start-here-layout {
        gap: 1.5rem;
    }

    .sidebar-sticky {
        grid-template-columns: 1fr;
    }

    .start-here-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .start-here-content h2 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }

    .start-here-content .intro-highlight,
    .start-here-content .scenario-box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .start-here-content h1 {
        font-size: 1.5rem;
    }

    .start-here-content h2 {
        font-size: 1.2rem;
    }

    .calc-quick-card {
        padding: 1rem;
    }
}
