/* FART CLUB - New Roadmap Styles */

/* Hero Section */
.roadmap-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(10, 15, 8, 0.98) 0%, 
        rgba(20, 31, 16, 0.95) 25%, 
        rgba(31, 51, 21, 0.9) 50%, 
        rgba(20, 31, 16, 0.95) 75%,
        rgba(10, 15, 8, 0.98) 100%);
}

.toxic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(125, 165, 40, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(107, 125, 58, 0.1) 0%, transparent 50%);
    animation: toxicSwirl 20s ease-in-out infinite;
}

@keyframes toxicSwirl {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

.roadmap-title {
    font-family: "Rubik Wet Paint", cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: #7da528;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 30px rgba(125, 165, 40, 0.5),
        0 0 60px rgba(125, 165, 40, 0.3);
    position: relative;
    z-index: 1;
}

.roadmap-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Headings */
.section-heading {
    font-family: "Rubik Wet Paint", cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #7da528;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(125, 165, 40, 0.5);
}

.section-intro {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Building Section */
.building-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(31, 51, 21, 0.95) 0%, 
        rgba(42, 64, 25, 0.9) 50%, 
        rgba(31, 51, 21, 0.95) 100%);
    position: relative;
}

.building-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 968px) {
    .building-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.building-card {
    background: linear-gradient(145deg,
        rgba(31, 51, 21, 0.95) 0%,
        rgba(42, 64, 25, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(125, 165, 40, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.building-card.featured {
    background: linear-gradient(145deg,
        rgba(42, 64, 25, 0.95) 0%,
        rgba(54, 77, 32, 0.9) 100%);
}

.building-card.completed-card {
    background: linear-gradient(145deg,
        rgba(42, 64, 25, 0.98) 0%,
        rgba(54, 77, 32, 0.95) 100%);
    border-color: rgba(125, 165, 40, 0.5);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 165, 40, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.building-card:hover .card-glow {
    opacity: 1;
}

.building-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 165, 40, 0.6);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(125, 165, 40, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    color: #7da528;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(125, 165, 40, 0.5));
    transition: all 0.3s ease;
}

.building-card:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(125, 165, 40, 0.7));
}

.building-card h3 {
    color: #e6edf3;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.building-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.status-badge.working {
    background: rgba(125, 165, 40, 0.2);
    color: #7da528;
    border: 1px solid #7da528;
}

.status-badge.working:has(✓) {
    background: rgba(125, 165, 40, 0.3);
    font-weight: 700;
}

.status-badge.coming {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid #FFC107;
}

.status-badge.planning {
    background: rgba(156, 39, 176, 0.2);
    color: #9C27B0;
    border: 1px solid #9C27B0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.feature-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7da528;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4a6630 0%, #5a8a35 100%);
    color: white;
    text-decoration: none !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.card-link:hover {
    background: linear-gradient(135deg, #7da528 0%, #8fc234 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(125, 165, 40, 0.5);
    text-decoration: none !important;
}

.card-link i {
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(20, 31, 16, 0.98) 0%, 
        rgba(31, 51, 21, 0.95) 50%, 
        rgba(20, 31, 16, 0.98) 100%);
}

.timeline-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        #7da528 0%, 
        rgba(125, 165, 40, 0.5) 50%,
        rgba(125, 165, 40, 0.2) 100%);
    transform: translateX(-50%);
}

.timeline-block {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-block:nth-child(1) { animation-delay: 0.1s; }
.timeline-block:nth-child(2) { animation-delay: 0.3s; }
.timeline-block:nth-child(3) { animation-delay: 0.5s; }
.timeline-block:nth-child(4) { animation-delay: 0.7s; }

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: #1c2128;
    border: 4px solid #7da528;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-marker.active {
    background: #7da528;
    box-shadow: 0 0 20px rgba(125, 165, 40, 0.8);
}

.timeline-content {
    background: linear-gradient(145deg, 
        rgba(31, 51, 21, 0.95) 0%, 
        rgba(42, 64, 25, 0.9) 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-left: 40px;
    border: 2px solid rgba(125, 165, 40, 0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: rgba(42, 64, 25, 0.9);
}

.timeline-content h3 {
    color: #7da528;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Get Involved Section */
.get-involved {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(31, 51, 21, 0.95) 0%, 
        rgba(42, 64, 25, 0.9) 50%, 
        rgba(31, 51, 21, 0.95) 100%);
}

.involved-card {
    background: radial-gradient(ellipse at center, 
        rgba(54, 77, 32, 0.9) 0%, 
        rgba(31, 51, 21, 0.95) 60%, 
        rgba(20, 31, 16, 0.98) 100%);
    border-radius: 20px;
    padding: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid rgba(125, 165, 40, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.involved-text {
    text-align: center;
    color: #e6edf3;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.action-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(125, 165, 40, 0.08);
    border-radius: 16px;
    border: 2px solid rgba(125, 165, 40, 0.2);
    transition: all 0.3s ease;
}

.action-item:hover {
    background: rgba(125, 165, 40, 0.15);
    border-color: rgba(125, 165, 40, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 165, 40, 0.2);
}

.action-item i {
    font-size: 3.5rem;
    color: #7da528;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(125, 165, 40, 0.4));
    transition: all 0.3s ease;
}

.action-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(125, 165, 40, 0.6));
}

.action-item h4 {
    color: #e6edf3;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.action-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #4a6630 0%, #5a8a35 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(125, 165, 40, 0.3);
    background: linear-gradient(135deg, #5a8a35 0%, #7da528 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card entrance animation */
.building-card {
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
}

.building-card:nth-child(1) { animation-delay: 0.1s; }
.building-card:nth-child(2) { animation-delay: 0.2s; }
.building-card:nth-child(3) { animation-delay: 0.3s; }
.building-card:nth-child(4) { animation-delay: 0.4s; }
.building-card:nth-child(5) { animation-delay: 0.5s; }
.building-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon pulse animation */
.card-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .building-card.featured {
        grid-column: span 1;
    }
    
    .timeline-wrapper::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .timeline-content::before {
        left: -10px;
        border-right-color: rgba(42, 64, 25, 0.9);
    }
}

@media (max-width: 768px) {
    .roadmap-hero {
        min-height: 60vh;
    }
    
    .roadmap-title {
        font-size: 3rem;
    }
    
    .building-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .building-card {
        padding: 2rem;
    }
    
    .involved-card {
        padding: 2.5rem 1.5rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .roadmap-title {
        font-size: 2.5rem;
    }
    
    .roadmap-subtitle {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .building-card h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
}