@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --teal:        #1a7a6e;
    --teal-dark:   #145f55;
    --teal-light:  #e8f5f3;
    --teal-mid:    #2a9d8f;
    --accent:      #e9c46a;
    --bg:          #f7fafa;
    --text:        #1c2b2a;
    --muted:       #6b8c89;
    --border:      #cde3e0;
    --white:       #ffffff;
    --step-done:   #1a7a6e;
    --step-active: #1a7a6e;
    --step-future: #c8dedd;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.eds-wrap {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0 48px;
    color: var(--text);
}

/* ── Progress Bar ── */
.eds-progress {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    margin-bottom: 36px;
    box-shadow: 0 2px 12px rgba(26,122,110,0.07);
}

.eds-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
}

.eds-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 12px 18px;
    position: relative;
    cursor: default;
    transition: background 0.2s;
    gap: 8px;
}

/* connector lines between steps */
.eds-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55%;
    background: var(--border);
}

.eds-step.active {
    background: var(--teal-light);
}

.eds-step.done {
    background: var(--white);
}

.eds-step-bubble {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2.5px solid var(--step-future);
    color: var(--step-future);
    background: var(--white);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.eds-step.active .eds-step-bubble {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(26,122,110,0.15);
}

.eds-step.done .eds-step-bubble {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.eds-step.done .eds-step-bubble::after {
    content: '✓';
    font-size: 15px;
}

.eds-step.done .eds-step-num { display: none; }

.eds-step-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
}

.eds-step.active .eds-step-label {
    color: var(--teal-dark);
}

/* bottom progress bar */
.eds-progress-bar {
    height: 4px;
    background: var(--border);
    position: relative;
}

.eds-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-mid));
    width: 33.33%;
    border-radius: 0 2px 2px 0;
    transition: width 0.5s ease;
}

/* ── Top Controls ── */
.eds-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px 20px;
    gap: 12px;
}

.eds-select-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}

.eds-dropdown {
    padding: 9px 36px 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a7a6e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 200px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.eds-dropdown:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,122,110,0.12);
}

/* ── Instruction Banner ── */
.eds-instruction {
    margin: 0 24px 28px;
    padding: 14px 20px;
    background: var(--white);
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.5;
    box-shadow: 0 1px 6px rgba(26,122,110,0.06);
}

.eds-instruction strong {
    color: var(--teal-dark);
}

/* ── Sections ── */
.eds-section {
    padding: 0 24px;
    margin-bottom: 32px;
}

.eds-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eds-section-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: var(--teal);
    border-radius: 3px;
}

/* ── Button Grid ── */
.eds-btn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eds-btn {
    padding: 9px 18px;
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.eds-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}

.eds-btn:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26,122,110,0.25);
}

.eds-btn.selected {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--teal);
    box-shadow: 0 0 0 2px var(--teal), 0 4px 12px rgba(26,122,110,0.15);
    font-weight: 600;
}

.eds-btn.selected::after {
    content: ' ✓';
    font-size: 12px;
}

/* ── Selected Info Bar ── */
.eds-selected-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin: 0 24px 24px;
    padding: 12px 18px;
    background: var(--teal);
    color: var(--white);
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.eds-selected-bar.visible {
    display: flex;
}

.eds-selected-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eds-selected-name span {
    font-weight: 700;
    font-size: 15px;
}

.eds-clear-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s;
}

.eds-clear-btn:hover {
    background: rgba(255,255,255,0.35);
}

/* ── Next Step Button ── */
.eds-next-wrap {
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.eds-next-btn {
    padding: 13px 36px;
    background: linear-gradient(135deg, var(--teal), var(--teal-mid));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.02em;
    opacity: 0.45;
    pointer-events: none;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(26,122,110,0.2);
}

.eds-next-btn.enabled {
    opacity: 1;
    pointer-events: all;
}

.eds-next-btn.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,122,110,0.35);
}

.eds-next-btn svg {
    transition: transform 0.2s;
}

.eds-next-btn:hover svg {
    transform: translateX(4px);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .eds-steps { grid-template-columns: 1fr 1fr 1fr; }
    .eds-step-label { font-size: 10px; }
    .eds-dropdown { min-width: 160px; }
    .eds-btn { font-size: 12px; padding: 8px 14px; }
}


/* STEP 2 CONTAINER */

.eds-step2{
max-width:500px;
margin:40px auto;
padding:35px;
background:#ffffff;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}


/* STEP TITLE */

.eds-step2 h3{
font-size:22px;
margin-bottom:25px;
color:#222;
font-weight:600;
}


/* BACK BUTTON */

.eds-back{
text-align:left;
margin-bottom:20px;
}

.eds-back button{
background:none;
border:none;
color:#0f5b63;
font-size:15px;
font-weight:500;
cursor:pointer;
padding:0;
}

.eds-back button:hover{
text-decoration:underline;
}


/* SELECTED DANCER BOX */

.eds-selected-display{
background:#f6f8f9;
padding:14px 18px;
border-radius:6px;
margin-bottom:25px;
font-size:15px;
color:#333;
}

.eds-selected-display strong{
color:#0f5b63;
}


/* FORM */

.eds-sponsor-form{
display:flex;
flex-direction:column;
gap:15px;
}


/* LABEL */

.eds-sponsor-form label{
font-size:14px;
font-weight:600;
color:#444;
text-align:left;
}


/* INPUT */

.eds-sponsor-form input{
padding:12px 14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
outline:none;
transition:all .2s ease;
}

.eds-sponsor-form input:focus{
border-color:#0f5b63;
box-shadow:0 0 0 2px rgba(15,91,99,0.1);
}


/* SUBMIT BUTTON */

.eds-sponsor-form button{
margin-top:10px;
padding:12px;
background:#0f5b63;
color:#fff;
border:none;
border-radius:6px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:all .2s ease;
}

.eds-sponsor-form button:hover{
background:#0c4b52;
}

/* step 3 css */

.eds-event-list{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.eds-event-card{
    width:calc(33.33% - 17px);
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.event-image img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.event-info{
    padding:15px;
}

.event-title{
    font-size:18px;
    margin-bottom:6px;
    color:black !important;
}

.event-date{
    color:white !important;
    font-size:14px;
    margin-bottom:12px;
}

.event-info button{
    background:#b59b4b;
    color:#fff;
    border:none;
    padding:10px 14px;
    cursor:pointer;
    border-radius:4px;
}