/* Sekcija pozadina i padding */
#about {
  padding: 2rem 10%;
  background-color: #E7E2D1;
}

/* Naslov sekcije */
.section-title {
  font-family: 'Satisfy', cursive;
  font-size: 38px;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
}

/* Glavni grid za 2 reda */
.about-grid {
  display: flex;
  flex-direction: column;
}

/* Svaki red ima 2 kolone */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Slike */
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Tekst */
.about-text p {
  font-family: 'Red Hat Mono', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Info blok */
.about-info {
display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
  height: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  margin: 0.7rem 1rem;
}

.info-item i {
  color: #B68D40;
  font-size: 16px;
  min-width: 18px;
}

.info-item span {
  font-weight: 500;
  color: #1b2612;
}

/* 🔸 Responsivno za mobilne */
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .about-row.reverse {
    direction: ltr;
  }

  .about-info {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 2rem;
  }

  .about-image img {
    border-radius: 15px;
  }

  .section-title {
    margin-top: 2rem;
  }
}
