/* Evaluation Guide Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add padding to account for fixed nav */
body {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.hero-content {
    max-width: 48rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666666;
    max-width: 40rem;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    opacity: 0;
    transform: translateY(3rem);
    transition: opacity 1s ease, transform 1s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade up animation for elements */
.fade-up {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.fade-up-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-bg-gray {
    background: #f9fafb;
}

.section-bg-black {
    background: #000000;
    color: #ffffff;
}

.section-content {
    max-width: 48rem;
    width: 100%;
}

.section-content-wide {
    max-width: 64rem;
    width: 100%;
}

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-bottom: 1rem;
    text-align: center;
}

.section-bg-black .section-label {
    color: #6b7280;
}

.section h2 {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
}

.section-bg-black p {
    color: #d1d5db;
}

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

.divider {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Process Steps */
.process-steps {
    max-width: 64rem;
    width: 100%;
}

.process-step {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 6rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 4rem;
    font-weight: 300;
    color: #e5e7eb;
    min-width: 100px;
}

.step-content {
    flex: 1;
    padding-top: 1rem;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666666;
}

/* Interactive Components Grid */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.component-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.component-card:hover {
    border-color: #000000;
}

.component-card.active {
    border-color: #000000;
    background: #f9fafb;
}

.component-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.component-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Component Detail */
.component-detail {
    padding: 3rem;
    background: #f9fafb;
    margin-top: 3rem;
    display: none;
}

.component-detail.active {
    display: block;
}

.component-detail h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.component-detail p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.visual-content {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Evaluation Areas */
.evaluation-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eval-area-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.eval-area-content {
    flex: 1;
}

.eval-area-content h4 {
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    color: #000000;
}

.eval-area-content p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Goal Items (reused from IEP guide) */
.goal-item {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.goal-item.active {
    border-left-color: #000000;
}

.goal-title {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #000000;
}

.goal-desc {
    font-size: 0.8125rem;
    color: #374151;
    line-height: 1.6;
}

/* Accommodations Grid (reused from IEP guide) */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.accommodation-item {
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.accommodation-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
}

.accommodation-desc {
    font-size: 0.75rem;
    font-weight: 300;
    color: #6b7280;
    line-height: 1.5;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.eligibility-card {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.eligibility-card:hover {
    border-color: #000000;
}

.eligibility-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.eligibility-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #000000;
}

.eligibility-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
}

/* Timeline */
.timeline-item {
    border-left: 2px solid #000000;
    padding-left: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.timeline-item p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666666;
}

/* Evaluation Types */
.evaluation-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eval-type-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #000000;
}

.eval-type-card h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #000000;
}

.eval-type-card p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.eval-type-detail {
    font-size: 0.9375rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.eval-type-detail:last-child {
    margin-bottom: 0;
}

.eval-type-detail strong {
    font-weight: 400;
    color: #000000;
}

/* Rights Section */
.rights-list {
    max-width: 56rem;
    margin: 0 auto;
}

.right-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

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

.right-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s ease;
}

.right-header:hover {
    opacity: 0.7;
}

.right-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d1d5db;
    min-width: 3rem;
}

.right-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 300;
    color: #000000;
}

.right-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.right-header[aria-expanded="true"] .right-icon {
    transform: rotate(180deg);
}

.right-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 5rem;
}

.right-content.active {
    grid-template-rows: 1fr;
}

.right-content-inner {
    overflow: hidden;
}

.right-content p {
    font-size: 1rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
    padding-bottom: 2rem;
    margin: 0;
}

/* Preparation List */
.preparation-list {
    max-width: 56rem;
    margin: 0 auto;
}

.prep-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.prep-number {
    font-size: 2rem;
    font-weight: 300;
    color: #d1d5db;
    min-width: 4rem;
    flex-shrink: 0;
}

.prep-content {
    flex: 1;
}

.prep-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: #000000;
}

.prep-content p {
    font-size: 1rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* CTA Button */
.cta-button {
    padding: 1rem 3rem;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-weight: 300;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer p {
    font-weight: 300;
}

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

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

    .section h2 {
        font-size: 2.5rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .components-grid {
        grid-template-columns: 1fr;
    }

    .component-detail {
        padding: 2rem;
    }

    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accommodations-grid {
        grid-template-columns: 1fr;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
    }

    .right-header {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .right-number {
        font-size: 1.25rem;
        min-width: 2.5rem;
    }

    .right-title {
        font-size: 1rem;
    }

    .right-content {
        padding-left: 3.5rem;
    }

    .right-content p {
        padding-bottom: 1.5rem;
    }

    .eval-area-item {
        flex-direction: column;
        text-align: center;
    }

    .prep-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .prep-number {
        font-size: 1.5rem;
    }

    .prep-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .right-header {
        gap: 0.75rem;
    }

    .right-number {
        font-size: 1rem;
        min-width: 2rem;
    }

    .right-title {
        font-size: 0.95rem;
    }

    .right-content {
        padding-left: 0;
    }

    .right-content p {
        padding-bottom: 1rem;
    }

    .eligibility-card {
        padding: 1.5rem;
    }

    .eval-type-card {
        padding: 1.5rem;
    }
}
