/* Body padding for fixed navbar */
body {
    padding-top: 80px;
}

/* Hero section (Home) */
.hero-section {
    background: linear-gradient(135deg, #512BD4 0%, #68217A 100%);
    color: white;
    padding: 6rem 1rem;
    margin: -1rem -1rem 0 -1rem;
}
.hero-section .btn-light {
    color: #512BD4;
    font-weight: 600;
}
.hero-section .btn-outline-light:hover {
    color: #512BD4;
}
.trust-badges {
    opacity: 0.9;
    font-size: 0.9rem;
}
.stats-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}
.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(81, 43, 212, 0.1) 0%, rgba(104, 33, 122, 0.1) 100%);
    color: #512BD4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.cta-section {
    background-color: #1a1a2e;
    color: white;
}
.section-padding {
    padding: 5rem 0;
}
.featured-card {
    transition: transform 0.2s ease;
}
.featured-card:hover {
    transform: translateY(-4px);
}
.featured-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(81, 43, 212, 0.05) 0%, rgba(104, 33, 122, 0.05) 100%);
    color: #512BD4;
}

/* Skill badge toggle */
.skill-badge {
    cursor: pointer;
    transition: all 0.2s ease;
}
.skill-badge .badge {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 500;
    padding: 0.5em 1em;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}
.skill-badge:hover .badge {
    background-color: #dee2e6;
}
.skill-badge.selected .badge {
    background-color: #512bd4;
    color: white;
}
.skill-badge.selected:hover .badge {
    background-color: #4522b8;
}

/* Status badge toggle */
.status-badge {
    cursor: pointer;
    transition: all 0.2s ease;
}
.status-badge .badge {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 500;
    padding: 0.5em 1em;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}
.status-badge:hover .badge {
    background-color: #dee2e6;
}
.status-badge.selected .badge {
    background-color: #198754;
    color: white;
}
.status-badge.selected:hover .badge {
    background-color: #157347;
}

/* HTMX loading indicators */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: block;
}
.htmx-request span.htmx-indicator {
    display: inline-block;
}
.htmx-request #results-container {
    opacity: 0.5;
    pointer-events: none;
}

/* Card hover effects */
.developer-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.developer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.job-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Form check styling */
.form-check-input:checked + .form-check-label {
    font-weight: 600;
}
