/* ===== Experiences Page ===== */

.experiences-main {
    padding-top: 9vh;
}

.page-hero {
    padding: 4vh 4vh 2vh 4vh;
    text-align: center;
}

.page-hero h1 {
    font-size: 5vh;
    font-weight: 800;
    color: rgba(10,10,10,0.88);
    margin: 0 0 1vh 0;
}

.page-hero h1 span { color: #164fb8; }

.page-hero p {
    font-size: 2.2vh;
    color: rgba(0,0,0,0.55);
    margin: 0;
}

/* Content */
.exp-content {
    padding: 3vh 4vh;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Timeline */
.exp-timeline {
    position: relative;
}

.exp-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #164fb8, rgba(22,79,184,0.1));
    border-radius: 3px;
}

.exp-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 2.5vh;
}

.exp-dot {
    position: absolute;
    left: 8px;
    top: 24px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #164fb8;
    border: 3px solid white;
    box-shadow: 0 0 0 4px rgba(22,79,184,0.2);
    box-sizing: border-box;
}

/* Exp card */
.exp-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.exp-card-top {
    padding: 2vh 2.5vh;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.exp-period {
    display: flex;
    align-items: center;
    gap: 1vh;
    margin-bottom: 0.6vh;
}

.exp-dates {
    font-size: 1.6vh;
    font-weight: 700;
    color: #164fb8;
    font-family: monospace;
}

.exp-type {
    padding: 0.3vh 1.2vh;
    border-radius: 999px;
    font-size: 1.4vh;
    font-weight: 700;
}

.exp-type.stage {
    background: rgba(22,79,184,0.12);
    color: #164fb8;
}

.exp-type.job {
    background: rgba(255,160,30,0.14);
    color: #c87800;
}

.exp-type.project {
    background: rgba(34,170,85,0.12);
    color: #18a855;
}

.exp-type.anim {
    background: rgba(155,80,210,0.12);
    color: #7c3aad;
}

.current-dot {
    background: #164fb8 !important;
    box-shadow: 0 0 0 4px rgba(22,79,184,0.2), 0 0 0 8px rgba(22,79,184,0.08) !important;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(22,79,184,0.2), 0 0 0 8px rgba(22,79,184,0.08); }
    50% { box-shadow: 0 0 0 4px rgba(22,79,184,0.3), 0 0 0 12px rgba(22,79,184,0); }
}

.exp-card-top h2 {
    margin: 0 0 0.3vh 0;
    font-size: 2.4vh;
    font-weight: 800;
    color: rgba(10,10,10,0.88);
}

.exp-card-top h3 {
    margin: 0;
    font-size: 1.8vh;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
}

.exp-card-body {
    padding: 1.8vh 2.5vh 2vh 2.5vh;
}

.exp-card-body p {
    font-size: 1.9vh;
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
    margin: 0 0 1.5vh 0;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7vh;
}

.exp-tag {
    padding: 0.5vh 1.2vh;
    background: rgba(22,79,184,0.08);
    border: 1px solid rgba(22,79,184,0.18);
    border-radius: 999px;
    font-size: 1.5vh;
    color: #164fb8;
    font-weight: 600;
}

/* Stats */
.exp-stats-section {
    padding: 2vh 4vh 5vh 4vh;
}

.exp-stats-grid {
    display: flex;
    justify-content: center;
    gap: 4vh;
    background: rgba(22,79,184,0.06);
    border: 1px solid rgba(22,79,184,0.14);
    border-radius: 22px;
    padding: 3.5vh;
    max-width: 700px;
    margin: 0 auto;
}

.exp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vh;
}

.exp-stat-num {
    font-size: 5vh;
    font-weight: 900;
    color: #164fb8;
    line-height: 1;
}

.exp-stat-label {
    font-size: 1.7vh;
    color: rgba(0,0,0,0.55);
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 700px) {
    .exp-content { padding: 2vh 2vh; }
    .exp-stats-grid { flex-direction: column; gap: 2vh; }
    .exp-timeline::before { left: 12px; }
    .exp-item { padding-left: 38px; }
    .exp-dot { left: 2px; }
}
