/* 
 * Custom Styles for About Us Page
 * Replaces generic Tailwind utilities with semantic class names
 */

:root {
    --first-color: 147, 51, 234; /* electricPurple */
    --second-color: 232, 121, 249; /* fuchsia */
    --third-color: 79, 70, 229; /* indigo */
    --fourth-color: 244, 63, 145; /* pink */
    --fifth-color: 99, 102, 241; /* indigo-light */
    --pointer-color: 147, 51, 234;
    --size: 80%;
    --blending-value: hard-light;
    --deep-violet: #2D1B69;
    --electric-purple: #9333EA;
    --fuchsia-accent: #D946EF;
    --gradient-bg-start: rgb(248, 250, 252);
    --gradient-bg-end: rgb(241, 245, 249);
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
}

/* Base Container */
.about-us-wrapper {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background: #fff;
    overflow-x: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.center-align {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) { .about-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .about-container { padding: 0 2rem; } }

/* Shared Utilities */
.text-center { text-align: center; }
.text-gray { color: var(--gray-600); }
.text-deep-violet { color: var(--deep-violet); }
.text-muted { color: #e5e7eb; }
.bg-white { background-color: #fff; }
.bg-gray-alt { background-color: #f9fafb; }
.spacing-bottom { margin-bottom: 2rem; }
.border-top-divider { border-top: 1px solid var(--gray-100); padding-top: 1.5rem; }

/* Buttons & Links */
.btn-outline-pill {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    color: var(--deep-violet);
    border: 1px solid var(--gray-200);
    cursor: pointer;
}

.btn-outline-pill:hover {
    border-color: var(--electric-purple);
    color: var(--electric-purple);
    transform: scale(0.95);
}

.btn-primary-pill {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--electric-purple);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-primary-pill:hover {
    background: var(--fuchsia-accent);
    transform: scale(0.95);
}

.link-accent {
    color: var(--electric-purple);
    text-decoration: none;
    transition: color 0.2s;
}

.bolder-colorful {
    font-weight: bold;
    color: var(--electric-purple);
}

.link-accent:hover {
    text-decoration: underline;
}

/* Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

.gradient-text {
    background: linear-gradient(to right, #9050E9 0%, #E602FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.about-hero {
    padding: 5rem 0;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title { font-size: 64px !important; }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Hero Content V2 */
.hero-content-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-content-v2 { margin-bottom: 1rem; }
}

.hero-title-v2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 1.5rem;
    /* letter-spacing: -0.025em; */
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title-v2 { font-size: 64px; }
}

@media (min-width: 1024px) {
    .hero-title-v2 { font-size: 64px; }
}

.hero-description-v2 {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 56rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description-v2 { font-size: 18px; }
}

.hero-link {
    color: var(--electric-purple);
    text-decoration: none;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.hero-link:hover {
    color: var(--deep-violet);
    border-bottom-color: rgba(45, 27, 105, 0.3);
}

/* Hero Visual Board */
.hero-visual-card {
    max-width: 1152px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
}

@media (min-width: 768px) {
    .hero-visual-card { aspect-ratio: 21/9; }
}

.animated-gradient-box {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.visual-filter-svg { display: none; }

.sliding-text-overlay {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slide-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
}

.slide-item[data-slide="1"] {
    opacity: 1;
}

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

.slide-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

@media (min-width: 768px) { .slide-title { font-size: 3.75rem; color: #FFF } }

.slide-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: #FFF
}

@media (min-width: 768px) { .slide-subtitle { font-size: 1.5rem; } }

/* Blobs Animation */
.blobs-container {
    width: 100%;
    height: 100%;
    filter: url(#blurMe) blur(40px);
}

.blob {
    position: absolute;
    width: var(--size);
    height: var(--size);
    mix-blend-mode: var(--blending-value);
    top: calc(50% - var(--size)/2);
    left: calc(50% - var(--size)/2);
}

.g1 { background: radial-gradient(circle at center, rgba(var(--first-color), 0.8) 0, rgba(var(--first-color), 0) 50%); animation: moveVertical 30s ease infinite; }
.g2 { background: radial-gradient(circle at center, rgba(var(--second-color), 0.8) 0, rgba(var(--second-color), 0) 50%); transform-origin: calc(50% - 400px); animation: moveInCircle 20s reverse infinite; }
.g3 { background: radial-gradient(circle at center, rgba(var(--third-color), 0.8) 0, rgba(var(--third-color), 0) 50%); transform-origin: calc(50% + 400px); animation: moveInCircle 40s linear infinite; }
.g4 { background: radial-gradient(circle at center, rgba(var(--fourth-color), 0.8) 0, rgba(var(--fourth-color), 0) 50%); transform-origin: calc(50% - 200px); opacity: 0.7; animation: moveHorizontal 40s ease infinite; }
.g5 { background: radial-gradient(circle at center, rgba(var(--fifth-color), 0.8) 0, rgba(var(--fifth-color), 0) 50%); transform-origin: calc(50% - 800px) calc(50% + 800px); animation: moveInCircle 20s ease infinite; }
.interactive { width: 100%; height: 100%; top: -50%; left: -50%; opacity: 0.7; background: radial-gradient(circle at center, rgba(var(--pointer-color), 0.8) 0, rgba(var(--pointer-color), 0) 50%); }

@keyframes moveInCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes moveVertical {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(50%); }
}
@keyframes moveHorizontal {
    0%, 100% { transform: translateX(-50%) translateY(-10%); }
    50% { transform: translateX(50%) translateY(10%); }
}

/* Sections General */
.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--deep-violet);
    line-height: 1.2;
}

/* Principles & Organization */
.about-principles-org { padding: 5rem 0; }

.principles-grid, .org-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .principles-grid, .org-grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; }
    .grid-side { grid-column: span 4; }
    .grid-main { grid-column: span 8; }
}

.text-large { font-size: 1.25rem; line-height: 1.6; }
.text-medium { font-size: 1.125rem; line-height: 1.6; }

.org-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.subtitle-accent {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--electric-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; gap: 0.75rem; }
.dot-accent { width: 6px; height: 6px; background: var(--electric-purple); border-radius: 50%; margin-top: 0.6rem; flex-shrink: 0; }

/* Events Section */
.about-events { padding: 5rem 0; }

.events-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1024px;
    margin: 4rem auto 0;
}

@media (min-width: 768px) { .events-cards-grid { grid-template-columns: 1fr 1fr; } }

.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-100);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.event-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); }

.card-bg-accent {
    position: absolute;
    top: 0; right: 0;
    width: 8rem; height: 8rem;
    border-bottom-left-radius: 9999px;
    margin: -2rem -2rem 0 0;
    opacity: 0.05;
    transition: transform 0.3s ease;
}

.event-card:hover .card-bg-accent { transform: scale(1.1); }
.bg-purple { background: var(--electric-purple); }
.bg-violet { background: var(--deep-violet); }

.card-icon-box {
    width: 4rem; height: 4rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.text-purple { color: var(--electric-purple); }
.text-violet { color: var(--deep-violet); }

.card-title { font-size: 1.5rem; font-weight: 700; color: var(--deep-violet); margin-bottom: 1rem; }
.card-text { font-size: 1rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }

/* Timeline Section */
.about-timeline { padding: 5rem 0; }

.timeline-visual-wrapper {
    position: relative;
    max-width: 1024px;
    margin: 5rem auto 0;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 1rem;
    bottom: 0;
    width: 1px;
    background: var(--gray-100);
}

@media (min-width: 768px) { .timeline-line { left: 30%; } }

.timeline-items { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 768px) { .timeline-items { gap: 8rem; } }

.timeline-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) { .timeline-row { grid-template-columns: repeat(12, 1fr); gap: 1.5rem; } }

.timeline-year-box {
    padding-left: 5rem;
}

@media (min-width: 768px) {
    .timeline-year-box { 
        grid-column: span 4; 
        padding-left: 0; 
        padding-right: 8rem; /* Further increased to compensate for larger grid span */
        text-align: right; 
    }
}

.year-label { 
    font-size: 3.75rem; 
    font-weight: 900; 
    line-height: 1; 
    margin-bottom: 0.25rem; 
    transition: color 0.5s ease;
    color: #e5e7eb; /* Default to muted */
}

@media (min-width: 768px) { .year-label { font-size: 6rem; margin-top: -0.5rem; } }

/* State-based colors */
.timeline-row.is-active .year-label {
    color: var(--deep-violet);
}

.timeline-row.is-past .year-label {
    color: #cbd5e1; /* Even lighter color once scrolled past */
}

.timeline-row.is-active .timeline-dot {
    background: var(--electric-purple);
    transform: translateX(-50%) scale(1.3);
}

.year-subtitle { 
    font-size: 1.125rem; 
    font-weight: 700; 
    color: var(--deep-violet);
    transition: opacity 0.5s ease;
    opacity: 0.4; /* Muted subtitle by default */
}

.timeline-row.is-active .year-subtitle {
    opacity: 1;
}

.timeline-dot {
    position: absolute;
    left: 2rem; top: 0.75rem;
    width: 1rem; height: 1rem;
    background: white;
    border: 4px solid var(--electric-purple);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.5s ease;
}

@media (min-width: 768px) { .timeline-dot { left: 30%; } }

.timeline-content {
    padding-left: 5rem;
    padding-top: 0.4rem;
}

@media (min-width: 768px) { .timeline-content { grid-column: span 8; padding-left: 3rem; } }

/* Milestone Dynamic Content */
.milestone-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.milestone-item::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--electric-purple);
    border-radius: 50%;
    position: absolute;
    left: -2.25rem;
    top: 0.6rem;
    opacity: 0.6;
}

.milestone-header {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.milestone-title {
    color: var(--gray-700);
    font-weight: 500;
}

.milestone-body {
    margin-top: 0.25rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--gray-100);
}

.milestone-text-truncate {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-height: 4.8em; /* Roughly 3 lines */
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.milestone-item.is-expanded .milestone-text-truncate {
    max-height: 1000px; /* Large enough to show all core content */
}

.milestone-toggle-btn {
    background: none;
    border: none;
    color: var(--electric-purple);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0;
    margin-top: 0.5rem;
    cursor: pointer;
    text-decoration: underline;
    display: none; /* Hidden by default, JS will show if needed */
}

.milestone-toggle-btn:hover {
    color: var(--fuchsia-accent);
}

.timeline-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }

.timeline-cta { margin-top: 2rem; }
.px-large { padding-left: 2rem; padding-right: 2rem; }

/* CTA Section */
.about-cta { padding: 5rem 0; }

.cta-banner {
    background: var(--deep-violet);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

@media (min-width: 768px) { .cta-banner { padding: 3.5rem; } }

.cta-bg-fx {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(100px);
}

.top-right { top: -20%; right: -10%; background: var(--electric-purple); }
.bottom-left { bottom: -20%; left: -10%; background: #2563eb; }

.cta-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; }
.cta-title { font-size: 1.875rem; font-weight: 700; color: white; margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .cta-title { font-size: 2.25rem; } }

.cta-text { font-size: 1.25rem; color: #d1d5db; margin-bottom: 2.5rem; line-height: 1.6; }

.shadow-fx { box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.4); }

/* Community & Organization Section */
.about-community-section {
    padding: 3rem 0 6rem;
}

@media (min-width: 768px) {
    .about-community-section { padding: 5rem 0; }
}

.community-block {
    width: 100%;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .community-block { margin-bottom: 8rem; }
}

.community-block:last-child {
    margin-bottom: 0;
}

/* Community Grid Layouts */
.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .community-grid { gap: 4rem; }
}

@media (min-width: 1024px) {
    .community-grid { grid-template-columns: 5fr 7fr; }
    .community-grid-reversed { grid-template-columns: 7fr 5fr; }
}

.community-grid-side {
    position: relative;
}

.community-grid-side-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.community-grid-main {
    position: relative;
}

/* Mobile Order Classes */
@media (max-width: 1023px) {
    .order-1-mobile { order: 1; }
    .order-2-mobile { order: 2; }
}

/* Decorative Elements */
.decorative-blur {
    position: absolute;
    width: 8rem;
    height: 8rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.decorative-blur-top-left {
    top: -2.5rem;
    left: -2.5rem;
}

/* Community Heading */
.community-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--deep-violet);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .community-heading { font-size: 3rem; }
}

/* Accent Bar */
.accent-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.accent-bar {
    width: 4rem;
    height: 4px;
    background: linear-gradient(to right, var(--deep-violet), var(--electric-purple));
    border-radius: 9999px;
}

.accent-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--electric-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Community Cards */
.community-card {
    padding: 2rem;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .community-card { padding: 3rem; }
}

.community-card-light {
    background: white;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.community-card-light:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    transform: scale(1.01);
}

.card-decorative-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(147, 51, 234, 0.05);
    border-bottom-left-radius: 100%;
    transition: transform 0.5s ease;
}

.community-card-light:hover .card-decorative-corner {
    transform: scale(1.1);
}

.community-card-dark {
    background: var(--deep-violet);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.community-card-dark:hover {
    box-shadow: 0 25px 50px -12px rgba(147, 51, 234, 0.2);
}

.card-decorative-glow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(147, 51, 234, 0.2);
    border-top-left-radius: 100%;
    filter: blur(48px);
    transition: transform 0.7s ease;
}

.community-card-dark:hover .card-decorative-glow {
    transform: scale(1.1);
}

.community-card-bordered {
    border: 2px solid var(--gray-100);
    background: white;
    transition: border-color 0.5s ease;
}

.community-card-bordered:hover {
    border-color: rgba(147, 51, 234, 0.3);
}

/* Community Text */
.community-text-xl {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    /* font-weight: 500; */
    position: relative;
    z-index: 10;
}

.community-text-xl.text-light {
    color: #e5e7eb;
}

.community-subtext {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Link Styles */
.link-sky {
    color: #7dd3fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.link-sky:hover {
    color: white;
    border-bottom-color: rgba(255,255,255,0.5);
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.staff-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.staff-link:hover,
.staff-link:visited,
.staff-link:active {
    color: inherit;
}

.staff-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.staff-avatar-wrapper {
    position: relative;
    display: inline-block;
    width: 7rem;
}

.staff-avatar-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.staff-member:hover .staff-avatar-glow {
    opacity: 0.4;
}

.staff-avatar-glow-purple {
    background: var(--electric-purple);
}

.staff-avatar-glow-fuchsia {
    background: #d946ef;
}

.staff-avatar {
    position: relative;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    z-index: 10;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .staff-avatar-wrapper { width: 9rem; }
    .staff-avatar { width: 9rem; height: 9rem; }
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-member:hover .staff-avatar img {
    transform: scale(1.1);
}

.staff-info {
    align-self: start;
    width: 7rem;
    text-align: center;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}
@media (min-width: 768px) {
    .staff-info { width: 9rem; }
}

.staff-member:hover .staff-info {
    transform: translateY(4px);
}

.staff-name {
    font-weight: 700;
    color: var(--deep-violet);
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 768px) {
    .staff-name { font-size: 1rem; }
}

.staff-role {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0.25rem 0 0;
}

.staff-role-purple {
    color: var(--electric-purple);
}

.staff-role-fuchsia {
    color: #c026d3;
}

/* Vision Box */
.vision-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
}

.vision-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Gatherings Card */
.gatherings-card {
    background: #f9fafb;
    border-radius: 3rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gatherings-card { padding: 4rem; }
}

.gatherings-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(147, 51, 234, 0.05), transparent);
    pointer-events: none;
}

.gatherings-content {
    max-width: 56rem;
    position: relative;
    z-index: 10;
}

.gatherings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 9999px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    color: var(--electric-purple);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.gatherings-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-violet);
    line-height: 1.5;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gatherings-title { font-size: 1.5rem; }
}

.gatherings-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Timeline Section V2 - New Design
   ======================================== */

.about-timeline-v2 {
    padding: 5rem 0 8rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-timeline-v2 { padding: 5rem 0; }
}

/* Timeline Header */
.timeline-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .timeline-header-v2 { margin-bottom: 7rem; }
}

.timeline-title-v2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .timeline-title-v2 { font-size: 3.75rem; }
}

.timeline-subtitle-v2 {
    max-width: 42rem;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Timeline Wrapper */
.timeline-wrapper-v2 {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

/* Timeline Line */
.timeline-line-bg {
    position: absolute;
    left: 2rem;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 9999px;
}

@media (min-width: 768px) {
    .timeline-line-bg { left: 30%; }
}

.timeline-line-progress {
    position: absolute;
    left: 2rem;
    top: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--deep-violet), var(--electric-purple), transparent);
    border-radius: 9999px;
    transition: height 0.3s ease-out;
    height: 0;
}

@media (min-width: 768px) {
    .timeline-line-progress { left: 30%; }
}

/* Timeline Entries Container */
.timeline-entries {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

@media (min-width: 768px) {
    .timeline-entries { gap: 10rem; }
}

/* Single Timeline Entry */
.timeline-entry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .timeline-entry {
        grid-template-columns: 3fr 9fr;
        gap: 2rem;
    }
}

/* Year Column */
.timeline-year-col {
    padding-left: 4rem;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .timeline-year-col {
        text-align: right;
        padding-left: 0;
        padding-right: 4rem;
    }
}

.timeline-year-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #e5e7eb;
    opacity: 0.4;
    filter: blur(2px);
    user-select: none;
    transition: all 0.7s ease;
}

@media (min-width: 768px) {
    .timeline-year-number { font-size: 6rem; }
}

.timeline-entry.is-active .timeline-year-number {
    color: var(--deep-violet);
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}

.timeline-year-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1rem;
    color: #9ca3af;
    transition: color 0.5s ease;
}

.timeline-entry.is-active .timeline-year-label {
    color: var(--electric-purple);
}

/* Timeline Dot V2 */
.timeline-dot-v2 {
    position: absolute;
    left: 2rem;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    transform: translateX(-50%);
    margin-top: 2rem;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .timeline-dot-v2 {
        left: 30%;
        margin-top: 3rem;
    }
}

.timeline-entry.is-active .timeline-dot-v2 {
    border-color: var(--electric-purple);
    transform: translateX(-50%) scale(1.25);
    box-shadow: 0 0 0 8px rgba(147, 51, 234, 0.2);
}

.timeline-dot-inner {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--electric-purple);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.timeline-entry.is-active .timeline-dot-inner {
    transform: scale(1);
}

/* Content Column */
.timeline-content-col {
    padding-left: 5rem;
}

@media (min-width: 768px) {
    .timeline-content-col { padding-left: 4rem; }
}

/* Timeline Card V2 */
.timeline-card-v2 {
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
    background: rgba(249, 250, 251, 0.5);
    border: 1px solid transparent;
    opacity: 0.8;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .timeline-card-v2 { padding: 2.5rem; }
}

.timeline-entry.is-active .timeline-card-v2 {
    background: white;
    border-color: rgba(147, 51, 234, 0.1);
    box-shadow: 0 20px 50px rgba(144, 80, 233, 0.12);
    opacity: 1;
    transform: translateX(8px);
}

/* Timeline Items List */
.timeline-items-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.timeline-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 0.625rem;
    flex-shrink: 0;
    background: #d1d5db;
    transition: background 0.3s ease;
}

.timeline-entry.is-active .timeline-item-dot {
    background: var(--electric-purple);
}

.timeline-item-text {
    font-size: 1rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .timeline-item-text { font-size: 1.125rem; }
}

.timeline-entry.is-active .timeline-item-text {
    color: var(--deep-violet);
    font-weight: 500;
}

/* Timeline Empty State */
.timeline-empty {
    text-align: center;
    padding: 2.5rem 0;
}

/* Timeline CTA V2 */
.timeline-cta-v2 {
    margin-top: 8rem;
    text-align: center;
}

.timeline-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.timeline-cta-btn {
    display: inline-block;
    padding: 1px;
    border-radius: 9999px;
    background: linear-gradient(to right, var(--deep-violet), var(--electric-purple));
    text-decoration: none;
    transition: transform 0.3s ease;
}

.timeline-cta-btn:hover {
    transform: scale(1.05);
}

.timeline-cta-btn-inner {
    padding: 1rem 2.5rem;
    background: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.3s ease;
}

.timeline-cta-btn:hover .timeline-cta-btn-inner {
    background: transparent;
}

.timeline-cta-text {
    color: var(--deep-violet);
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-cta-btn:hover .timeline-cta-text {
    color: white;
}

.timeline-cta-arrow {
    color: var(--electric-purple);
    transition: all 0.3s ease;
}

.timeline-cta-btn:hover .timeline-cta-arrow {
    color: white;
    transform: translateX(4px);
}

.timeline-cta-label {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Timeline Item Content */
.timeline-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-item-body {
    margin-top: 0.25rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--gray-100);
}

.timeline-item-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.timeline-item-description p {
    margin: 0 0 0.5rem;
}

.timeline-item-description p:last-child {
    margin-bottom: 0;
}

.timeline-list-item.is-expanded .timeline-item-description {
    max-height: 1000px;
}

.timeline-toggle-btn {
    background: none;
    border: none;
    color: var(--electric-purple);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0;
    margin-top: 0.5rem;
    cursor: pointer;
    text-decoration: underline;
    display: none;
    text-align: left;
}

.timeline-toggle-btn:hover {
    color: var(--fuchsia-accent);
}

/* ========================================
   CTA Section V2 - New Design
   ======================================== */

.about-cta-v2 {
    padding: 3rem 0 5rem;
}

@media (min-width: 768px) {
    .about-cta-v2 { padding: 5rem 0; }
}

.cta-banner-v2 {
    position: relative;
    background: var(--deep-violet);
    color: white;
    border-radius: 2.5rem;
    padding: 2rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 50px rgba(182, 32, 224, 0.15);
}

@media (min-width: 768px) {
    .cta-banner-v2 { padding: 4rem; }
}

/* Background Effects */
.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    transition: transform 1s ease;
}

.cta-banner-v2:hover .cta-glow {
    transform: scale(1.1);
}

.cta-glow-purple {
    top: -20%;
    right: -10%;
    background: var(--electric-purple);
}

.cta-glow-blue {
    bottom: -20%;
    left: -10%;
    background: #38bdf8;
}

/* Content */
.cta-inner-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading-v2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-heading-v2 {
        font-size: 25px;
        margin-bottom: 2rem;
    }
}

.gradient-text-brand {
    background: linear-gradient(90deg, #F3AB10 0%, #B620E0 50%, #32C6FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-description-v2 {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 768px) {
    .cta-description-v2 { margin-bottom: 3rem; }
}

.cta-button-v2 {
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    background: #9050E9;
    color: white;
    border: none;
    cursor: pointer;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button-v2:hover {
    background: #7a3cc7;
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
    transform: scale(1.05) translateY(-4px);
}

.cta-button-v2:active {
    transform: scale(0.95);
}

/* Animation Delay Classes */
.delay-0 { transition-delay: 0s; }
.delay-150 { transition-delay: 0.15s; }
.delay-300 { transition-delay: 0.3s; }

/* ========================================
   Events Section V2 - New Design
   ======================================== */

.about-events-v2 {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .about-events-v2 { padding: 5rem 0; }
}

/* Events Header */
.events-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.events-title-v2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--deep-violet);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .events-title-v2 { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .events-title-v2 { font-size: 3.75rem; }
}

/* Events Grid */
.events-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .events-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Event Card V2 */
.event-card-v2 {
    position: relative;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .event-card-v2 { padding: 2.5rem; }
}

.event-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(147, 51, 234, 0.2);
}

/* Card Accent Corner */
.event-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    border-bottom-left-radius: 100%;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.event-card-v2:hover .event-card-accent {
    transform: scale(1.2);
    opacity: 0.15;
}

.event-card-accent-purple {
    background: linear-gradient(135deg, var(--electric-purple), var(--fuchsia-accent));
}

.event-card-accent-blue {
    background: linear-gradient(135deg, var(--deep-violet), #6366f1);
}

/* Event Icon Box */
.event-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.event-card-v2:hover .event-icon-box {
    transform: scale(1.1);
}

.event-icon-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(217, 70, 239, 0.1));
    color: var(--electric-purple);
}

.event-icon-violet {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.1), rgba(99, 102, 241, 0.1));
    color: var(--deep-violet);
}

/* Event Card Content */
.event-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.event-card-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

/* Event Card Footer */
.event-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    position: relative;
    z-index: 10;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--electric-purple);
    border: 1px solid var(--electric-purple);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: var(--electric-purple);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25);
}

.event-btn:active {
    transform: scale(0.95);
}

/* ========================================
   Events Section V3 - Latest Design
   ======================================== */

.about-events-v3 {
    padding: 3rem 0 5rem;
    background: #f9fafb;
}

@media (min-width: 768px) {
    .about-events-v3 { padding: 5rem 0; }
}

/* Events Header V3 */
.events-header-v3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .events-header-v3 { margin-bottom: 5rem; }
}

.events-badge-v3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.events-badge-bar {
    width: 3rem;
    height: 4px;
    background: linear-gradient(to right, #9050E9, #E602FF);
    border-radius: 9999px;
}

.events-badge-text {
    color: #B620E0;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.events-title-v3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--deep-violet);
}

@media (min-width: 768px) {
    .events-title-v3 { font-size: 3rem; }
}

/* Events Grid V3 */
.events-grid-v3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .events-grid-v3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Event Card V3 */
.event-card-v3 {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.event-card-v3:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

/* Card Blob (decorative corner) */
.event-card-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-bottom-left-radius: 100%;
    margin-right: -2rem;
    margin-top: -2rem;
    transition: transform 0.7s ease;
}

.event-card-v3:hover .event-card-blob {
    transform: scale(1.25);
}

/* Card color variants */
.event-card-fuchsia .event-card-blob {
    background: rgba(230, 2, 255, 0.05);
}

.event-card-fuchsia .event-icon-v3 {
    color: #E602FF;
}

.event-card-fuchsia:hover .event-icon-v3 {
    border-color: rgba(230, 2, 255, 0.3);
}

.event-card-cyan .event-card-blob {
    background: rgba(50, 198, 255, 0.05);
}

.event-card-cyan .event-icon-v3 {
    color: var(--deep-violet);
}

.event-card-cyan:hover .event-icon-v3 {
    border-color: rgba(45, 27, 105, 0.3);
}

.event-card-orange .event-card-blob {
    background: rgba(253, 158, 57, 0.05);
}

.event-card-orange .event-icon-v3 {
    color: #FD9E39;
}

.event-card-orange:hover .event-icon-v3 {
    border-color: rgba(253, 158, 57, 0.3);
}

/* Event Icon V3 */
.event-icon-v3 {
    width: 4rem;
    height: 4rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    transition: border-color 0.3s ease;
}

/* Event Card Content V3 */
.event-card-title-v3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.event-card-text-v3 {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

/* Event Card Action */
.event-card-action {
    position: relative;
    z-index: 10;
}

.event-btn-v3 {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--deep-violet);
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.event-btn-v3:hover {
    border-color: #E602FF;
    color: #E602FF;
}

.event-btn-v3:active {
    transform: scale(0.95);
}
