/**
 * Cultural Passport Funnel - Elegant Brand Integration
 * Matches homepage sophisticated aesthetic and typography
 */

.cultural-passport-funnel {
    padding: 5rem 0;
    background: #fafafa;
    position: relative;
}

.cultural-passport-funnel .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.funnel-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.passport-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C9CC68;
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 1rem;
}

.funnel-headline {
    font-family: 'Stardos Stencil', serif;
    font-size: 2.5rem;
    color: #7E5D4C;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.funnel-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discovery-section {
    margin-bottom: 3rem;
}

.discovery-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.discovery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.discovery-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 3px solid transparent;
    position: relative;
}

.discovery-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #C9CC68;
    border-radius: 1px;
}

.discovery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-color: #C9CC68;
}

.discovery-item p {
    font-size: 1rem;
    color: #7E5D4C;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    padding-top: 0.5rem;
}

.community-highlight {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    border-left: 4px solid #C9CC68;
}

.community-quote {
    font-size: 1rem;
    color: #7E5D4C;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.community-impact {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.funnel-cta {
    margin-top: 3rem;
}

.funnel-button {
    background: #7E5D4C;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.funnel-button:hover {
    background: #6B4E40;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.funnel-stats {
    font-size: 1rem;
    color: #7E5D4C;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.voting-note {
    font-size: 0.9rem;
    color: #C9CC68;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cultural-passport-funnel {
        padding: 3rem 0;
    }
    
    .cultural-passport-funnel .container {
        padding: 0 1rem;
    }
    
    .funnel-headline {
        font-size: 2rem;
    }
    
    .funnel-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .discovery-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .discovery-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .discovery-item {
        padding: 1.5rem 1.2rem;
    }
    
    .discovery-item::before {
        top: 0.8rem;
        width: 25px;
    }
    
    .community-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .community-quote {
        font-size: 0.95rem;
    }
    
    .community-impact {
        font-size: 0.85rem;
    }
    
    .funnel-button {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
    }
    
    .funnel-stats {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .voting-note {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .cultural-passport-funnel {
        padding: 2.5rem 0;
    }
    
    .funnel-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .funnel-intro {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .discovery-item {
        padding: 1.2rem 1rem;
    }
    
    .discovery-item::before {
        top: 0.7rem;
        width: 20px;
    }
    
    .community-highlight {
        padding: 1.2rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cultural-passport-funnel {
        background: white;
    }
    
    .discovery-item {
        border: 2px solid #333;
    }
    
    .funnel-button {
        border: 2px solid transparent;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .discovery-item,
    .funnel-button {
        transition: none;
    }
    
    .discovery-item:hover,
    .funnel-button:hover {
        transform: none;
    }
}