/* =============================================
   ABOUT PAGE — Chatpata Chat
   ============================================= */

/* ---- About Hero ---- */
.about-hero {
  min-height: 55vh;
  background: linear-gradient(135deg, #3D2416 0%, var(--text) 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/5779600/pexels-photo-5779600.jpeg') center/cover no-repeat;
  opacity: 0.15;
}
.about-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: linear-gradient(to right, rgba(126, 83, 56, 0.208) 40%, rgba(93, 71, 58, 0.192) 100%); */
}
.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.about-hero .section-tag { background: rgba(247,127,0,0.2); color: var(--secondary); }
.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0.75rem 0;
}
.about-hero-title span { color: var(--secondary); }
.about-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.75;
}

/* ---- Story Section ---- */
.about-story {
  padding: 6rem 0;
  background: var(--bg);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-image-wrap { position: relative; }
.story-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(43,30,22,0.15);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.story-badge {
  position: absolute;
  bottom: 30px; left: -25px;
  background: var(--secondary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(247,127,0,0.3);
  text-align: center;
}
.story-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.story-badge span { font-size: 0.8rem; font-weight: 600; opacity: 0.9; }
.story-content { display: flex; flex-direction: column; gap: 1.25rem; }
.story-content .section-title { text-align: left; }
.story-content .section-title span { color: var(--primary); }
.story-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; }
.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.highlight-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.highlight-item span { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ---- Gallery ---- */
.gallery {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:nth-child(1) img { min-height: 420px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,30,22,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* ---- Contact Form ---- */
.contact-section {
  padding: 6rem 0;
  background: var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info .section-title { text-align: left; }
.contact-info .section-title span { color: var(--primary); }
.contact-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(214,40,40,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-detail-item strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-detail-item span { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
  font-family: var(--font-body);
}
.form-submit-btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(45,157,95,0.3); }

/* =============================================
   RESPONSIVE — ABOUT
   ============================================= */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-image-wrap img { aspect-ratio: 16/9; }
  .story-badge { left: 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(1) img { min-height: 200px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .story-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .story-badge { display: none; }
}
