/* ===========================
   CELEBRATO EVENTS — about.css
   =========================== */

/* STORY SECTION */
.story-section {
  padding: var(--space-xl) 0;
}
.story-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 5rem;
  align-items: center;
}
.story-img {
  position: relative;
}
.story-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 3/4;
}
.story-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
}
.story-img::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
}
.story-text { display: flex; flex-direction: column; gap: 1.5rem; }
.story-text p { color: var(--text-secondary); line-height: 1.85; font-size: 0.98rem; }
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
  width: fit-content;
}
.insta-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  gap: 0.75rem;
}

/* STATS SECTION */
.about-stats {
  padding: var(--space-lg) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-item {
  padding: 2rem 1rem;
  position: relative;
}
.stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stats-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stats-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
  display: block;
}

/* TEAM SECTION */
.team-section {
  padding: var(--space-xl) 0;
}
.team-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
}
.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.1);
}
.team-avatar {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  transition: border-color 0.3s;
}
.team-card:hover .team-avatar { border-color: var(--gold); }
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.team-card .team-title {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.team-card .team-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* VALUES SECTION */
.values-section {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}
.values-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.values-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.values-row:last-child { border-bottom: none; }
.values-row.reverse { direction: rtl; }
.values-row.reverse > * { direction: ltr; }
.values-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.values-text { display: flex; flex-direction: column; gap: 1rem; }
.values-text h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-primary);
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  line-height: 1.25;
}
.values-text p { color: var(--text-secondary); line-height: 1.8; font-size: 0.98rem; }

/* INSTAGRAM FEED */
.insta-feed {
  padding: var(--space-xl) 0;
}
.insta-feed .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: var(--space-md);
}
.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }
.insta-item-overlay svg {
  width: 32px; height: 32px;
  color: #080808;
}
.insta-cta-wrap { text-align: center; margin-top: var(--space-md); }

/* Responsive */
@media (max-width: 1024px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .story-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-img img { height: 350px; }
  .about-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stats-item:nth-child(2)::after { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .values-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-row.reverse { direction: ltr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .about-stats .container { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
