/* =========================
   FORM SECTION CARD
========================= */

.card {
    border: 1px solid var(--yellow);
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


/* =========================
   SECTION HEADER
========================= */

.card-header {
    background: var(--yellow);
    border-bottom: 1px solid var(--yellow);
    padding: 14px 20px;
    border-radius: 14px 14px 0 0;
}

.card-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}


/* =========================
   CARD BODY
========================= */

.card-body {
    padding: 20px;
}


/* =========================
   CHECKBOX / RADIO STYLE
========================= */

input[type="checkbox"],
input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.1);
    cursor: pointer;
}

label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 18px;
    margin-bottom: 8px;
    font-size: 14px;
}


/* =========================
   FILE UPLOAD STYLE
========================= */

input[type="file"] {
    border: 1px dashed var(--yellow);
    border-radius: 10px;
    padding: 8px;
    background: var(--yellow);
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: #6366f1;
}


/* =========================
   ALERT / INFO BOX
========================= */

.alert-info {
    background: var(--yellow);
    border: 1px solid #c7d2fe;
    color: #3730a3;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
}

.alert-success {
    background: var(--yellow);
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: 10px;
}


/* =========================
   SUBMIT BUTTON
========================= */

.btn-primary {
    background: var(--yellow);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99,102,241,0.35);
}


/* =========================
   SECTION SPACING
========================= */

.card + .card {
    margin-top: 20px;
}


/* =========================
   RESPONSIVE FORM
========================= */

@media (max-width: 768px) {

    .card-body {
        padding: 16px;
    }

    label {
        font-size: 13px;
    }

}


/* =====================================
   ADD THIS BELOW (NEW STYLES)
===================================== */

/* Form Container */

.audition-form-container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}


/* Section headers match homepage */

.card-header{
background:var(--yellow);
border-bottom:2px solid #ffc107;
}


/* Form inputs */

.form-control,
.form-select{
border-radius:10px;
border:1px solid var(--yellow);
padding:10px 14px;
font-size:14px;
transition:all .25s ease;
}

.form-control:focus,
.form-select:focus{
border-color:#ffc107;
box-shadow:0 0 0 3px rgba(255,193,7,.25);
}


/* File upload styling */

input[type="file"]{
background:var(--yellow);
border:1px dashed #ffc107;
}


/* Checkbox highlight */

input[type="checkbox"],
input[type="radio"]{
accent-color:#ffc107;
}


/* Better alert box */

.alert-info{
background:var(--yellow);
border-left:5px solid #ffc107;
color:#444;
}


/* Submit button match homepage */

.btn-primary{
background:#302a2a;
color:#ffc107;
border:none;
}

.btn-primary:hover{
background:#000;
}

/* =====================================
   STEP WIZARD NAVIGATION
===================================== */

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}
.step-item.active {
    opacity: 1;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--yellow, #ffc107);
    color: var(--yellow, #ffc107);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.step-item.active .step-number {
    background: var(--yellow, #ffc107);
    color: #0D0D0D;
}
.step-content {
    flex: 1;
}
.step-title {
    font-weight: 500;
    color: #fff;
}
.step-item:hover {
    opacity: 0.8;
}

/* Mobile responsive steps */
@media (max-width: 991px) {
    /* Collapse the step sidebar card into a compact top progress bar */
    .col-lg-3:has(.step-list) {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .col-lg-3 .card:has(.step-list) {
        border-radius: 14px !important;
        padding: 12px 16px !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    }
    /* Hide "Registration Steps" h4 heading on mobile */
    .col-lg-3 .card h4 {
        display: none !important;
    }
    /* Right decorative image column - hide on mobile */
    .col-lg-3:last-of-type {
        display: none !important;
    }

    .step-list {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 6px !important;
        overflow-x: auto !important;
        padding: 6px 0 !important;
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    .step-item {
        flex-direction: column !important;
        gap: 2px !important;
        align-items: center !important;
        min-width: 36px !important;
        opacity: 0.35 !important;
    }
    .step-item.active {
        opacity: 1 !important;
    }
    /* Show a small label under active step only */
    .step-content {
        display: none !important;
    }
    .step-item.active .step-content {
        display: block !important;
        font-size: 9px !important;
        color: #ffc107 !important;
        text-align: center !important;
        white-space: nowrap !important;
        max-width: 46px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
    /* Form middle column takes full width on mobile */
    .col-lg-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Small mobile (max-width: 576px) */
@media (max-width: 576px) {
    .audition-form-container {
        padding: 16px 12px !important;
    }
    .btn-lg {
        font-size: 14px !important;
        padding: 10px 18px !important;
    }
    .next-btn, .prev-btn {
        min-width: 100px !important;
    }
    .form-control, .form-select {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
}

