/* ==============================================
   Full-Stack Roadmap Specific Styles
   ============================================== */

/* Fullstack specific styles */
.intro-text-italic {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-style: italic;
}

.week-list-compact {
    margin: 0.5rem 0;
    padding-left: 2rem;
    color: #cbd5e1;
}

.project-description {
    color: #cbd5e1;
    margin: 0.5rem 0;
}

/* CTA Button Override */
.cta-button {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa) !important;
}

.cta-button:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3) !important;
}

/* Breadcrumb Override */
.breadcrumb a {
    color: #8b5cf6 !important;
}

/* Hero Extensions */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b5cf6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 1rem;
}

/* Content Sections */
.content {
    padding: 60px 0;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
}

.month-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.month-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.month-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5cf6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.week-section {
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(139, 92, 246, 0.3);
}

.week-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.project-highlight {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.project-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stack-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.stack-title {
    font-size: 1rem;
    font-weight: bold;
    color: #a78bfa;
    margin-bottom: 0.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-category {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.skill-category h3 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.skill-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.skill-item::before {
    content: "⚡";
    font-size: 1rem;
}

.final-cta {
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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