
/* Roadmap Page Styles */

/* Hero Section */
.roadmap-hero {
    padding: 180px 0 100px;
    background: linear-gradient(
        135deg,
        var(--bg-off-white) 0%,
        rgba(255, 246, 240, 1) 100%
    );
    text-align: center;
}

.roadmap-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Roadmap Legend */
.roadmap-legend {
    padding: 60px 0 20px;
    background: var(--bg-light);
}

.legend-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.status-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-indicator.live {
    background-color: #36B37E; /* Vert pour "Disponible" */
}

.status-indicator.in-progress {
    background-color: #FFAB00; /* Orange pour "En développement" */
}

.status-indicator.planned {
    background-color: #6554C0; /* Violet pour "Planifié" */
}

/* Roadmap Section */
.roadmap-section {
    padding: 40px 0 100px;
    background: var(--bg-light);
}

.roadmap-category {
    margin-bottom: 80px;
}

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

.category-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.category-title .status-indicator {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.roadmap-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
    position: relative;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.roadmap-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.roadmap-card-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    max-width: 75%;
}

.status-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-tag.live {
    background-color: rgba(54, 179, 126, 0.15);
    color: #36B37E;
}

.status-tag.in-progress {
    background-color: rgba(255, 171, 0, 0.15);
    color: #FFAB00;
}

.status-tag.planned {
    background-color: rgba(101, 84, 192, 0.15);
    color: #6554C0;
}

.roadmap-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.roadmap-date {
    font-size: 0.85rem;
    color: var(--text-lightest);
    font-style: italic;
}

/* Feedback Section */
.roadmap-feedback {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(250, 80, 3, 0.05) 0%,
        rgba(255, 122, 66, 0.1) 100%
    );
    text-align: center;
}

.feedback-content {
    max-width: 700px;
    margin: 0 auto;
}

.feedback-content h2 {
    margin-bottom: 20px;
}

.feedback-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .roadmap-hero h1 {
        font-size: 2.3rem;
    }
    
    .legend-container {
        gap: 20px;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-card-header {
        flex-direction: column;
    }
    
    .roadmap-card-header h3 {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .status-tag {
        align-self: flex-start;
    }
}