/* ======= GEÇMİŞTE BUGÜN ======= */
.gecmiste-bugun {
  width: 100%;
  background: url("/img/tarihteBugun_bg.png") center/cover no-repeat;
  min-height: 600px;
  position: relative;
  padding: 80px 0;
}

.bugun-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
}

.bugun-layout {
  display: flex;
  flex-direction: column;
}

/* Başlık */
.bugun-title {
  font-family: "Cardo", serif;
  font-size: 45px;
  font-weight: 700;
  background: linear-gradient(to right, #731919, #e52b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  line-height: 1.2;
}
/* Ana İçerik */
.bugun-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px; /* önce 0’dı — biraz mesafe için küçük ama dengeli */
  margin-top: -10px; /* üstten sıkılaştırma */
}

/* Sol Taraf - Tarih */
.bugun-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding-left: 20px; /* önce 40’tı — azaltıldı */
  margin-right: 10px; /* ekledik: sağa biraz nefes payı */
}

.date-label {
  font-family: "Cardo", serif;
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(to right, #6d7486, #0a0d13);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.2;
  text-align: left;
  margin-bottom: -5px; /* alt boşluk azalsın */
}

.date-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-family: "Cardo", serif;
  font-weight: 700;
  background: linear-gradient(to right, #6d7486, #0a0d13);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.date-value span:first-child {
  font-size: 70px; /* “11” kısmı */
  border-bottom: 3px solid #0a0d13;
  margin-right: 6px;
}

.date-value span:last-child {
  font-size: 40px; /* “KASIM” kısmı */
  letter-spacing: 1px;
  top: -2px;
}

/* Sağ Taraf - Olaylar */
.bugun-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Olay Item */
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* Ok İşareti */
.event-arrow {
  font-family: "Cardo", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 0.7;
  background: linear-gradient(to right, #6d7486, #0a0d13);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  margin-top: -5px;
}

/* Olay İçeriği */
.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.event-year {
  font-family: "Cardo", serif;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(to right, #6d7486, #0a0d13);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  display: block;
}

.event-text {
  font-family: "Cardo", serif;
  font-size: 20px;
  font-weight: 400;
  background: linear-gradient(to right, #6d7486, #0a0d13);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
  display: block;
}

.event-text.single-line {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .bugun-container {
    padding: 0 60px;
  }

  .bugun-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .bugun-container {
    padding: 0 30px;
  }

  .gecmiste-bugun {
    padding: 60px 0;
  }

  .bugun-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .bugun-content {
    flex-direction: column;
    gap: 30px;
  }

  .date-label {
    font-size: 30px;
  }

  .date-value span:first-child {
    font-size: 55px;
  }

  .date-value span:last-child {
    font-size: 32px;
  }

  .event-arrow {
    font-size: 60px;
  }

  .event-year {
    font-size: 32px;
  }

  .event-text {
    font-size: 18px;
  }
}
