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

.active-page .link-underline { width: 100% !important; background-color: var(--accent); }

/* ===== SHARED TAG ===== */
.about-tag {
    display: inline-block;
    background: rgba(106,76,147,0.1);
    color: var(--primary);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(106,76,147,0.2);
}

.about-tag.light {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.about-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: white;
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1423 0%, #3d2a5a 60%, #6a4c93 100%);
    z-index: 0;
}

.about-hero-blobs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden; }

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 24px;
}

.about-hero-tag {
    display: inline-block;
    background: rgba(255,158,0,0.2);
    border: 1px solid rgba(255,158,0,0.5);
    color: var(--accent);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.about-hero-content h1 span { color: var(--accent); font-family: 'Samarkan', cursive; }

.about-hero-content > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.6;
}

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; font-family: 'Montserrat', sans-serif; opacity: 0.7; }
.breadcrumb a { color: white; text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.6rem; }
.breadcrumb span { color: var(--accent); font-weight: 600; }

/* ===== STORY SECTION ===== */
.about-story {
    padding: 90px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Story images */
.story-images { position: relative; }

.story-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(106,76,147,0.18);
    position: relative;
}

.story-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.story-img-main:hover img { transform: scale(1.03); }

.story-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(106,76,147,0.4);
}

.story-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid white;
}

.story-img-small img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Story text */
.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.story-text h2 span { color: var(--primary); font-family: 'Samarkan', cursive;}

.story-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-text p strong { color: var(--primary); font-weight: 700; }
.story-text p em { color: var(--accent); font-style: italic; font-weight: 600; }

.story-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

.story-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
}

.story-highlight i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* ===== MISSION SECTION ===== */
.about-mission {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: white;
    overflow: hidden;
}

.mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.mission-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: white;
    margin-bottom: 18px;
    line-height: 1.2;
}

.mission-text h2 span { color: var(--accent); font-family: 'Samarkan', cursive; }

.mission-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    opacity: 0.82;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-values { display: flex; flex-direction: column; gap: 24px; }

.mission-value {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.mission-value:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(6px);
}

.mission-value-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(106,76,147,0.3);
}

.mission-value h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}

.mission-value p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

/* ===== TEAM SECTION ===== */
/* ===== TEAM SECTION ===== */
.about-team { padding: 90px 0; background: var(--secondary); }

.about-section-header { text-align: center; margin-bottom: 55px; }
.about-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.about-section-header h2 span { color: var(--primary); font-family: 'Samarkan', cursive; }
.about-section-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--gray-text);
    max-width: 450px;
    margin: 0 auto;
}

/* Grid — 3 columns, last 2 cards centered */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    /* Optimized for exactly 2 team cards centered on desktop */
    flex: 0 0 calc(50% - 20px);
    max-width: 380px;
}

/* Last 2 cards — same size, centered automatically by flexbox */
.team-card.team-row-2 {
    flex: 0 0 calc(50% - 20px);
    max-width: 380px;
}

.team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(106,76,147,0.14); }

.team-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.team-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }

.team-social {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 14px;
    background: linear-gradient(to top, rgba(26,20,35,0.85), transparent);
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}
.team-social a:hover { background: var(--accent); color: var(--dark); }

.team-info { padding: 22px 22px 26px; text-align: center; }
.team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 700;
}
.team-info span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.team-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .team-card,
    .team-card.team-row-2 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .team-grid { max-width: 380px; margin: 0 auto; }
    .team-card,
    .team-card.team-row-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}






/* ===== STATS BANNER ===== */
.about-stats-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.about-stat {
    color: white;
    padding: 20px;
}

.about-stat i {
    font-size: 2rem;
    opacity: 0.6;
    display: block;
    margin-bottom: 14px;
}

.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.about-stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.about-stat-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 600;
}

/* ===== JOIN CTA ===== */
.about-join {
    position: relative;
    padding: 90px 24px;
    background: linear-gradient(135deg, #1a1423, #3d2a5a);
    overflow: hidden;
    text-align: center;
    color: white;
}

.about-join-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.about-join-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-join-text h2 span { color: var(--accent); font-family: 'Samarkan', cursive; }

.about-join-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.82;
    margin-bottom: 28px;
}

.about-join-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.join-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
}

.join-step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.join-step-arrow {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.about-join-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-join-blobs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.15; pointer-events: none; }

/* Footer fix */
.artist-cta-footer { margin-top: 25px; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 8px; }
.artist-cta-footer p { margin-bottom: 4px; font-size: 0.85rem; opacity: 0.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-img-small { display: none; }
    .story-img-main img { height: 360px; }
    .mission-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .about-hero-content h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .about-hero { height: 360px; }
    .about-hero-content h1 { font-size: 2rem; }
    .story-text h2, .mission-text h2, .about-join-text h2 { font-size: 1.9rem; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-num { font-size: 2.4rem; }
    .about-join-steps { flex-direction: column; align-items: center; }
    .join-step-arrow { transform: rotate(90deg); }
    .about-section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .about-hero { height: 300px; }
    .about-hero-content h1 { font-size: 1.7rem; }
    .story-text h2 { font-size: 1.6rem; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .about-stat { padding: 14px 10px; }
    .about-stat-num { font-size: 1.8rem; }
    .about-stat-label { font-size: 0.74rem; }
    .about-join-text h2 { font-size: 1.8rem; }
    .about-join-actions { flex-direction: column; align-items: center; }
    .about-join-actions .cta-button { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 380px) {
    .about-stats-grid { grid-template-columns: 1fr; gap: 12px; }
}
