/* ==============================================
   Roadmap Page Styles
   Version: 1
   Last Updated: 2026-04-04
   Signatur/Sign: Lillehest - Team Stallion
   ============================================== */

/* --- Hero Section --- */
.roadmap-hero-section {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-200) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.roadmap-hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.roadmap-hero-subtitle {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* --- Timeline Section --- */
.roadmap-timeline-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.roadmap-phase {
    margin-bottom: 60px;
}

.roadmap-phase:last-child {
    margin-bottom: 0;
}

.roadmap-phase-header {
    margin-bottom: 28px;
}

.roadmap-phase-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-main);
    margin-top: 10px;
}

/* --- Badges --- */
.roadmap-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.roadmap-badge.completed {
    background: rgba(77, 175, 130, 0.12);
    color: var(--green-200);
}

.roadmap-badge.in-progress {
    background: rgba(243, 156, 18, 0.12);
    color: var(--secondary-200);
}

.roadmap-badge.planned {
    background: rgba(154, 189, 255, 0.2);
    color: var(--primary-100);
}

/* --- Roadmap Cards --- */
.roadmap-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    border-left: 4px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.roadmap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.roadmap-card.completed {
    border-left-color: var(--green-main);
}

.roadmap-card.in-progress {
    border-left-color: var(--secondary-main);
}

.roadmap-card.planned {
    border-left-color: var(--primary-50);
}

.roadmap-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-main);
    margin-bottom: 10px;
}

.roadmap-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* --- CTA Section --- */
.roadmap-cta-section {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-200) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.roadmap-cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.roadmap-cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.7;
}

.roadmap-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .roadmap-hero-section {
        padding: 60px 0 40px;
    }

    .roadmap-hero-section h1 {
        font-size: 1.6rem;
    }

    .roadmap-cta-section {
        padding: 60px 0;
    }
}
