.abouts-hero, .timeline-section {
    font-family: "Audiowide", sans-serif;
}

/* ─── HERO BÖLÜMÜ ────────────────────────────────────────────────────────────── */

.abouts-hero {
    min-height: 50vh;
    background: #000;
    display: flex;
    align-items: center;
    padding: 70px 0 60px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.abouts-hero-row {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.abouts-hero-img {
    flex: 0 0 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.15);
    background: #d1d1d6;
}

.abouts-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abouts-hero-content {
    flex: 1;
    max-width: 700px;
}

.abouts-label {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: aqua;
    margin-bottom: 1.5rem;
}

.abouts-divider {
    width: 60px;
    height: 2px;
    background: aqua;
    margin-bottom: 2rem;
}

.abouts-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-weight: 300;
}

.abouts-desc p {
    margin-bottom: 1rem;
}

.abouts-desc p:last-child {
    margin-bottom: 0;
}


/* ─── TİMELİNE BÖLÜMÜ ───────────────────────────────────────────────────────── */

.timeline-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.timeline-title {
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 255, 255, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 12px;
    height: 12px;
    background: aqua;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.timeline-card {
    background: #111;
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    max-width: 320px;
    transition: border-color 0.3s;
}

.timeline-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
}

.timeline-date {
    display: block;
    color: aqua;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.timeline-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .abouts-hero-row { flex-direction: column; }
    .abouts-hero-img { flex: none; width: 100%; }
}

@media (max-width: 767px) {
    .abouts-desc { font-size: 0.875rem; }

    .timeline::before { left: 20px; }

    .timeline-item,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-dot { left: 20px; }
    .timeline-card { max-width: 100%; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .abouts-desc { font-size: 0.925rem; }
}

@media (min-width: 1281px) and (max-width: 1440px) {
    .abouts-desc { font-size: 1rem; }
}

@media (min-width: 1441px) {
    .abouts-desc { font-size: 1.1rem; }
    .timeline-card { max-width: 360px; }
}