/* Partnerships Page Styles */

.download-deck-btn,
.contact-investor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.download-deck-btn {
    background: transparent;
    color: white;
    border: 2px solid transparent;
}

.download-deck-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(105, 29, 247, 0.4);
}

.contact-investor-btn {
    background: transparent;
    color: #691df7;
    border: 2px solid #691df7;
}

.contact-investor-btn:hover {
    background: #691df7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(105, 29, 247, 0.3);
}

.investment-stats {
    position: relative;
}

.investment-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-benefit-card,
    .partner-type-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .funding-goal-item {
        padding: 1rem;
    }
    
    .download-deck-btn,
    .contact-investor-btn {
        padding: 0.875rem 1.5rem;
    }
}

/* Animation Enhancements */
@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent;
}
