/* Custom styles for FastCFV - Call for Volunteers */

:root {
    --primary-color: #05aae4;
    --secondary-color: #fbfffb;
    --accent-color: #0496c7;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --white: #ffffff;
    --gray-light: #f7fafc;
    --gray-medium: #e2e8f0;
}

.custom-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    padding: 6rem 0 4rem 0;
}

.volunteer-card {
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(5, 170, 228, 0.1);
    overflow: hidden;
}

.volunteer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(5, 170, 228, 0.2);
    border-color: var(--primary-color);
}

.volunteer-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.volunteer-card-body {
    padding: 1.5rem;
    background: var(--white);
}

.volunteer-card-footer {
    padding: 1rem 1.5rem;
    background: var(--gray-light);
    border-top: 1px solid var(--gray-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.code-example {
    background-color: var(--gray-light);
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(5, 170, 228, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(5, 170, 228, 0.3);
    text-decoration: none;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom-hero {
        min-height: 40vh;
    }
}

/* Apply page specific hero styling */
.apply-page .custom-hero {
    min-height: 40vh;
    padding: 3rem 0 2rem 0;
}
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .volunteer-card {
        margin-bottom: 1.5rem;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for cards */
.volunteer-card:nth-child(1) { animation-delay: 0.1s; }
.volunteer-card:nth-child(2) { animation-delay: 0.2s; }
.volunteer-card:nth-child(3) { animation-delay: 0.3s; }
.volunteer-card:nth-child(4) { animation-delay: 0.4s; }
.volunteer-card:nth-child(5) { animation-delay: 0.5s; }
.volunteer-card:nth-child(6) { animation-delay: 0.6s; }
.volunteer-card:nth-child(7) { animation-delay: 0.7s; }
.volunteer-card:nth-child(8) { animation-delay: 0.8s; }
.volunteer-card:nth-child(9) { animation-delay: 0.9s; }
.volunteer-card:nth-child(10) { animation-delay: 1.0s; }
.volunteer-card:nth-child(11) { animation-delay: 1.1s; } 