/**
 * Layout: TIMELINE
 * For chronological/historical content (Herstory)
 * Vertical timeline with alternating cards
 */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--light-coral) 0%, #FEFEFE 100%);
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob.blob1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-coral);
    top: -100px;
    right: -100px;
}

.hero-blob.blob2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-green);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.page-hero h1 {
    font-size: 56px;
    color: var(--brown);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 21px;
    color: var(--brown);
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline */
.timeline-section {
    padding: 60px 20px;
}

.timeline-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
}

.timeline-section > .container > p {
    text-align: center;
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--brown);
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding: 40px 0;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-coral);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-coral);
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(231, 113, 125, 0.3);
    z-index: 2;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 45%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.timeline-content:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.timeline-year {
    color: var(--coral);
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.timeline-title {
    color: var(--brown);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.timeline-description {
    color: var(--brown);
    line-height: 1.8;
    font-size: 16px;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-green) 100%);
    padding: 60px 20px;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.elegant-quote {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.quote-mark {
    position: absolute;
    font-size: 80px;
    font-family: var(--font-display);
    color: var(--coral);
    opacity: 0.12;
    line-height: 1;
}

.quote-mark.left {
    top: 20px;
    left: 20px;
}

.quote-mark.right {
    bottom: 20px;
    right: 20px;
}

.elegant-quote blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: var(--brown);
    font-style: italic;
    margin: 0;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.attribution {
    text-align: right;
    margin-top: 20px;
    padding-right: 20px;
}

.attribution-name {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--coral);
    font-family: var(--font-display);
    margin-bottom: 5px;
}

.attribution-title {
    display: block;
    font-size: 16px;
    color: var(--gray-blue);
}

/* Founders Section */
.founders-section {
    padding: 50px 20px 30px;
    background: white;
}

.founders-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
}

.founders-intro {
    text-align: center;
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--brown);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 42px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
        padding: 25px;
    }
    
    .elegant-quote {
        padding: 40px 20px;
    }
    
    .elegant-quote blockquote {
        font-size: 18px;
        padding: 20px;
    }
}
