/* ================================================
   ABOUT.CSS — O meni section
   ================================================ */

#about {
  background: var(--cream2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

/* ── Photo placeholder ── */
.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--light);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder .icon-letter {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(139, 111, 94, 0.2);
}

.about-img-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.7;
}

.about-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

/* ── Stats ── */
.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-stat {
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--light);
  border-radius: 4px;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose);
}

.about-stat span {
  font-size: 0.75rem;
  color: var(--warm);
}

/* ── Timeline ── */
.timeline {
  list-style: none;
}

.timeline-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.timeline-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 0.6rem;
  box-shadow: 0 0 0 3px rgba(196, 133, 106, 0.2);
}

.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--warm);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.timeline-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--ink2);
  margin-top: 0.3rem;
}

/* ── Interest tags ── */
.interests-wrap {
  margin-top: 2rem;
}

.interests-wrap h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.interest-tag {
  padding: 0.3rem 0.9rem;
  background: var(--cream);
  border: 1px solid var(--light);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--ink2);
}

/* ── Real photo ── */
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-img-wrap:hover .about-photo {
  transform: scale(1.04);
  filter: brightness(1.04);
}

/* Stat card hover lift */
.about-stat {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 26, 20, 0.07);
  border-color: var(--gold);
}

/* Interest tag hover */
.interest-tag {
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.interest-tag:hover {
  background: var(--cream2);
  border-color: var(--gold);
  color: var(--ink);
}

/* Timeline dot pulse animation */
.timeline-dot {
  animation: dotPulse 2.5s ease-in-out infinite;
}

.about-photo-secondary {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 42%;
  border: 3px solid var(--cream2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 26, 20, 0.18);
}

.about-photo-secondary img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3 / 4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    max-width: 320px;
  }

  .about-photo-secondary {
    width: 38%;
    bottom: -10px;
    right: -10px;
  }
}
