/* Festival Application Form Styles */

/* Step Indicators */
.step-indicator {
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #495057;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.step-circle.active {
    background-color: #0d6efd;
    color: white;
}

.step-circle.completed {
    background-color: #198754;
    color: white;
}

/* Application Type Cards */
.application-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.application-type-card {
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.application-type-card:hover {
    border-color: #0d6efd !important;
    background-color: #f8f9fa;
}

.application-type-card.active {
    border-color: #0d6efd !important;
    background-color: #f0f7ff;
}

.application-type-card .form-check-input {
    float: right;
}

/* Role Sections */
.role-section {
    background-color: #fbfbfb;
    border-radius: 0.25rem;
    padding: 1.25rem;
    border: 1px solid #eeeeee;
}

.role-header {
    margin: -1.25rem -1.25rem 1.25rem -1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 0.25rem 0.25rem 0 0;
    background-color: #f2f7ff;
}

/* Image Preview */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.image-preview-container img {
    object-fit: cover;
    border-radius: 0.25rem;
}

/* Review Section */
.review-card {
    background-color: #fbfbfb;
    border-radius: 0.25rem;
    padding: 1.25rem;
    border: 1px solid #eeeeee;
}

.role-summary {
    padding-left: 0.5rem;
    border-left: 3px solid #e9ecef;
}

/* Volunteer Options */
.volunteer-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .step-indicator::before {
        left: 5%;
        right: 5%;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .application-type-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-options {
        grid-template-columns: 1fr;
    }
} 