/* =====================
   ABOUT PAGE
   about.css
   ===================== */

/* ---- Hero ---- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 3rem;
  background: var(--blush);
}

.about-hero-text p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin-top: 1rem;
}

.about-hero-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.photo-placeholder {
  background: var(--warm-tan);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  border: 2px dashed var(--brown);
  opacity: 0.6;
}

.photo-placeholder.large {
  height: 260px;
  font-size: 3rem;
}

.photo-placeholder.small {
  height: 120px;
  font-size: 2rem;
  flex: 1;
}

.about-mini-photos {
  display: flex;
  gap: 1rem;
}

/* ---- Story ---- */
.story-section {
  padding: 5rem 3rem;
  background: var(--white);
}

.story-inner {
  max-width: 720px;
}

.story-body p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* ---- Experience ---- */
.experience-section {
  padding: 5rem 3rem;
  background: var(--cream);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.exp-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.exp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-list strong {
  display: block;
  color: var(--dark-brown);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.exp-list p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ---- Hobbies card ---- */
.hobbies-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1.5px solid var(--warm-tan);
}

.hobbies-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hobbies-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hobbies-list span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- Gallery ---- */
.gallery-section {
  padding: 5rem 3rem;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.gallery-placeholder {
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px dashed var(--warm-tan);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.gallery-placeholder:hover {
  opacity: 1;
}

/* ---- Active nav ---- */
nav .nav-links a.active {
  color: var(--terracotta);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  .about-hero-photos { display: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========= ABOUT MOBILE ========= */
@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .about-hero-text p { max-width: 100%; }

  /* Show carousel on mobile, just make it full width */
  .carousel {
    max-width: 100%;
    border-radius: 1rem;
  }

  .about-hero-photos { display: none; }

  .story-section { padding: 3rem 1.5rem; }
  .story-inner { max-width: 100%; }

  .experience-section { padding: 3rem 1.5rem; }
  .exp-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .hobbies-card { margin-top: 0; }

  .gallery-section { padding: 3rem 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
