/* ==========================================
   ÜBER MICH PAGE STYLES
   ========================================== */

/* Hero Section */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.02) 20px,
        rgba(0, 0, 0, 0.02) 40px
    );
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.about-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.7;
    font-style: italic;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 900px;
    margin: var(--space-xxl) auto;
    padding: var(--space-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--black);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xxl);
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: var(--space-lg);
    background: var(--white);
    border: 2px solid var(--black);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 5%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--black);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--black);
}

.timeline-year {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: var(--space-xs);
}

.timeline-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.timeline-description {
    font-size: var(--text-base);
    line-height: 1.8;
    opacity: 0.8;
}

/* Journey Cards */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.journey-card {
    text-align: center;
    padding: var(--space-xl);
    border: 2px solid var(--black);
    background: var(--white);
    transition: all var(--transition-base);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.journey-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.journey-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.journey-card p {
    font-size: var(--text-base);
    line-height: 1.8;
    opacity: 0.8;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xxl);
}

.value-card {
    padding: var(--space-xl);
    background: var(--light-gray);
    border-left: 4px solid var(--black);
}

.value-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.value-card p {
    font-size: var(--text-base);
    line-height: 1.8;
    opacity: 0.9;
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: var(--space-xxl) 0;
    background: var(--black);
    color: var(--white);
    margin: var(--space-xxl) 0;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: var(--text-3xl);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.quote-author {
    font-size: var(--text-lg);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 60px;
        min-height: 50vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: var(--space-xl);
    }

    .timeline-content {
        width: 100%;
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: var(--text-xl);
    }
}
