﻿/* ========================================
   ABOUT SUBPAGES - SHARED STYLES
   For: Brands, Promoters, Venues, Vendors
   ======================================== */

/* === HERO SECTION === */
.about-hero {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9) 0%, rgba(153, 50, 204, 0.9) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
}

.about-hero--brands {
    background-image: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(218, 112, 214, 0.9) 100%);
}

.about-hero--promoters {
    background-image: linear-gradient(135deg, rgba(106, 90, 205, 0.95) 0%, rgba(138, 43, 226, 0.9) 100%);
}

.about-hero--venues {
    background-image: linear-gradient(135deg, rgba(153, 50, 204, 0.95) 0%, rgba(106, 90, 205, 0.9) 100%);
}

.about-hero--vendors {
    background-image: linear-gradient(135deg, rgba(218, 112, 214, 0.95) 0%, rgba(153, 50, 204, 0.9) 100%);
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

    .about-breadcrumb a {
        color: white;
        text-decoration: none;
        transition: opacity 0.2s;
    }

        .about-breadcrumb a:hover {
            opacity: 0.7;
        }

    .about-breadcrumb i {
        font-size: 0.625rem;
    }

.about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.about-hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* === NAV PILLS === */
.about-nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

    .nav-pill:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }

    .nav-pill.active {
        background: white;
        color: var(--tg-primary);
    }

    .nav-pill i {
        font-size: 0.875rem;
    }

/* === CONTENT SECTION === */
.about-content {
    padding: 4rem 0;
}

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

.content-block--centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tg-primary);
    margin-bottom: 1rem;
}

.content-block h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tg-text-primary);
}

.content-block .lead {
    font-size: 1.125rem;
    color: var(--tg-text-secondary);
    line-height: 1.7;
}

/* Content Images */
.content-image {
    margin: 2rem 0;
    border-radius: var(--tg-radius-lg, 1rem);
    overflow: hidden;
    box-shadow: var(--tg-shadow-lg);
}

    .content-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Video Wrapper */
.content-video {
    margin: 3rem 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--tg-radius-lg, 1rem);
    box-shadow: var(--tg-shadow-lg);
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.features-grid--2col {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--tg-surface);
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius-lg, 1rem);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--tg-shadow-lg);
        border-color: var(--tg-primary);
    }

.feature-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-secondary) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--tg-text-primary);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--tg-text-secondary);
    line-height: 1.6;
}

/* === CTA SECTION === */
.about-cta {
    background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: white;
    color: var(--tg-primary);
}

    .btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.btn--secondary {
    background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-secondary) 100%);
    color: white;
}

    .btn--secondary:hover {
        transform: translateY(-2px);
        box-shadow: var(--tg-shadow-lg);
    }

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }

    .about-nav-pills {
        gap: 0.5rem;
    }

    .nav-pill {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

        .nav-pill span {
            display: none;
        }

    .about-content {
        padding: 2.5rem 0;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}
