/* Custom styles for FreelanceHub */

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
}

/* How it works section */
.how-it-works-item {
    transition: transform 0.3s ease;
    height: 100%;
}

.how-it-works-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.how-it-works-item:hover .icon-wrapper {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
}

/* Project cards */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Timeline for status updates */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 1;
}

/* Forms */
.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Buttons */
.btn {
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .how-it-works-item {
        margin-bottom: 1.5rem;
    }
}


/* Additional styles for file upload and contact info */
.contact-info-card {
    border-left: 4px solid #0d6efd;
}

.file-list {
    max-height: 300px;
    overflow-y: auto;
}

.file-item {
    transition: all 0.2s ease;
}

.file-item:hover {
    background-color: #f8f9fa;
}

.upload-area {
    border: 2px dashed #dee2e6;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

