/* ===== MASAR ACTIVITY PAGE — Additional Styles ===== */
/* These styles complement the main Masar site CSS (main.css + bootstrap) */
/* Font: Mont (loaded from main.css), Chakra Petch (Google Fonts) */
/* Colors: --body: #0d0126, --theme: #8d69bf, --bg-2: #351b59 */

/* ACTIVITY HERO */
.activity-hero {
  min-height: 52vh;
  background: linear-gradient(180deg, #0d0126 0%, #0a0020 50%, #110230 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.activity-hero .grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(141,105,191,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(141,105,191,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.activity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Chakra Petch', 'Mont', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--theme, #8d69bf);
  padding: 8px 16px;
  border: 1px solid rgba(141,105,191,0.3);
  border-radius: 4px;
  margin-bottom: 24px;
  background: rgba(141,105,191,0.08);
}
.activity-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme, #8d69bf);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.activity-title {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}
.activity-title em {
  font-style: normal;
  color: #a78bfa;
}
.activity-date {
  font-family: 'Chakra Petch', 'Mont', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.activity-subtitle {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

/* SECTION SHARED */
.act-label {
  font-family: 'Chakra Petch', 'Mont', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--theme, #8d69bf);
  opacity: 0.85;
  display: block;
  margin-bottom: 16px;
}
.act-section-title {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #fff;
}
.act-section-title em {
  font-style: normal;
  color: #a78bfa;
}
.act-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--theme, #8d69bf), transparent);
  margin-bottom: 32px;
}

/* CONTENT SECTION */
.activity-content {
  padding: 100px 0;
  position: relative;
  background: var(--body, #0d0126);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
}
.content-narrative h3 {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.content-narrative p {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.content-narrative p strong {
  color: #fff;
  font-weight: 600;
}

/* HIGHLIGHTS CARD */
.highlights-card {
  background: rgba(26,15,60,0.6);
  border: 1px solid rgba(141,105,191,0.18);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(12px);
}
.highlight-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(141,105,191,0.18);
}
.highlight-item:last-child { border-bottom: none; }
.highlight-icon { font-size: 20px; margin-bottom: 8px; }
.highlight-label {
  font-family: 'Chakra Petch', 'Mont', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--theme, #8d69bf);
  margin-bottom: 6px;
}
.highlight-value {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.highlight-desc {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* PROOF POINTS */
.proof-section {
  padding: 80px 0;
  background: rgba(26,15,60,0.3);
  border-top: 1px solid rgba(141,105,191,0.18);
  border-bottom: 1px solid rgba(141,105,191,0.18);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.proof-card {
  background: rgba(53,27,89,0.25);
  border: 1px solid rgba(141,105,191,0.18);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.proof-card:hover {
  border-color: rgba(141,105,191,0.45);
  transform: translateY(-4px);
}
.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(141,105,191,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.proof-title {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.proof-text {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* IMPACT SECTION */
.impact-section {
  padding: 100px 0;
  background: var(--body, #0d0126);
}
.impact-quote {
  font-family: 'Mont', 'Inter', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: #a78bfa;
  line-height: 1.5;
  max-width: 700px;
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--theme, #8d69bf);
}

/* BACK LINK */
.back-section {
  padding: 60px 0;
  text-align: center;
  background: var(--body, #0d0126);
}
.back-link {
  font-family: 'Chakra Petch', 'Mont', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--theme, #8d69bf);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(141,105,191,0.3);
  border-radius: 4px;
  transition: all 0.3s;
}
.back-link:hover {
  background: rgba(141,105,191,0.1);
  color: #fff;
}

/* REVEAL ANIMATION */
.act-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.act-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.act-reveal-delay-1 { transition-delay: 0.1s; }
.act-reveal-delay-2 { transition-delay: 0.2s; }
.act-reveal-delay-3 { transition-delay: 0.3s; }
