/* --- BRAND COLOR VARIABLES (for reference) ---
:root {
  --accent: #f77ca2;
  --accent-light: #ffe6f2;
  --accent-dark: #e0558a;
  --navy: #00394f;
  --yellow: #ffe066;
}
*/

.timeline-section-bg {
    background: var(--accent-light, #ffe6f2);
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.timeline-section {
    width: 100vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
}

.timeline-title {
    text-align: center;
    color: var(--accent, #f77ca2);
    font-family: 'Handlee', cursive;
    font-size: 3rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(247,124,162,0.10);
}

.timeline-tabs-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.timeline-tab {
    flex: 1 1 0;
    background: linear-gradient(90deg, var(--accent-light, #ffe6f2) 60%, #fff 100%);
    color: var(--accent, #f77ca2);
    border: 2.5px solid var(--accent, #f77ca2);
    border-bottom: none;
    border-radius: 32px 32px 0 0;
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: uppercase;
    outline: none;
    margin: 0;
    padding: 18px 0 14px 0;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(247,124,162,0.08);
    cursor: pointer;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 120px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.timeline-tab.active, .timeline-tab:focus, .timeline-tab:hover {
    background: linear-gradient(90deg, var(--accent, #f77ca2) 80%, var(--accent-dark, #e0558a) 100%);
    color: #fff;
    border-color: var(--accent-dark, #e0558a);
    box-shadow: 0 4px 18px rgba(247,124,162,0.13);
    z-index: 3;
}

.timeline-tabs-underline {
    width: 100%;
    max-width: 900px;
    height: 6px;
    background: linear-gradient(90deg, var(--accent, #f77ca2) 60%, var(--accent-dark, #e0558a) 100%);
    border-radius: 6px;
    margin: 10px auto 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(247,124,162,0.10);
}

.timeline-content-area {
    max-width: 900px;
    width: 100%;
    margin: 32px auto 0 auto;
    box-sizing: border-box;
}

.timeline-content {
    width: 100%;
    display: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
}

.timeline-content[style*='display:flex'] {
    display: flex !important;
}

.timeline-image {
    flex: 0 0 260px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.timeline-image img {
    border: 4px solid var(--accent, #f77ca2);
    border-radius: 24px;
    width: 260px;
    height: auto;
    object-fit: cover;
    background: #fff;
    display: block;
    margin: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(247,124,162,0.10);
}

.timeline-text {
    flex: 1;
    font-size: 1.1rem;
    color: #222;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.timeline-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.timeline-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #222;
    font-size: 1.13rem;
    position: relative;
    padding-left: 22px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.timeline-text ul li::before {
    content: '\2022';
    color: var(--accent, #f77ca2);
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0.1em;
    line-height: 1.1;
}

.timeline-text ul li b {
    color: #222;
    font-size: 1.18rem;
    margin-right: 5px;
    font-weight: bold;
}

.timeline-text p {
    margin: 0 0 10px 0;
}

.timeline-text em {
    font-style: italic;
}

@media (max-width: 900px) {
    .timeline-section {
        padding: 0 0 24px 0;
    }
    .timeline-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    .timeline-tabs-row {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 100vw;
        align-items: stretch;
    }
    .timeline-tab {
        width: 100%;
        border-radius: 32px 32px 0 0;
        margin-bottom: 10px;
        font-size: 1.15rem;
        padding: 18px 0 14px 0;
        height: 60px;
        min-width: 120px;
        background: var(--accent, #f77ca2) !important;
        color: #fff !important;
        font-weight: bold;
        border-color: var(--accent-dark, #e0558a) !important;
        box-shadow: 0 4px 18px rgba(247,124,162,0.13);
    }
    .timeline-tab.active {
        background: linear-gradient(90deg, var(--accent, #f77ca2) 80%, var(--accent-dark, #e0558a) 100%) !important;
        color: #fff !important;
        border-color: var(--accent-dark, #e0558a) !important;
    }
    .timeline-tabs-underline {
        display: none;
    }
    .timeline-content-area {
        max-width: 100vw;
        margin: 18px auto 0 auto;
        padding: 0 2px;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .timeline-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0;
        padding: 0;
    }
    .timeline-image {
        width: 100%;
        margin-bottom: 18px;
        display: flex;
        justify-content: center;
    }
    .timeline-image img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 18px auto;
        display: block;
    }
    .timeline-text {
        width: 100%;
        margin-left: 0;
        text-align: left;
        align-items: flex-start;
        font-size: 1rem;
        margin-top: 0;
        padding-left: 2vw;
        padding-right: 2vw;
    }
} 