/* ==========================================================================
   ABOUT PAGE STYLES
   brave new art - About Us Page
   ========================================================================== */

/* Hero Section - Brand Manifesto */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D0D 0%, #0D0D0D 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.manifesto-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-red);
    border-radius: 2rem;
}

.manifesto-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #FF0000 0%, #FF0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
    text-stroke: 2px var(--color-white);
    display: inline-block;
}

.manifesto-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.manifesto-text p {
    margin-bottom: 1.5rem;
}

.manifesto-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 2rem;
}

/* Animated Shapes */
.manifesto-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: -5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Team Section */
.team-section {
    padding: 8rem 2rem;
    background: var(--color-black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

.team-photo {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    background: linear-gradient(135deg, #0D0D0D 0%, #0D0D0D 100%);
    overflow: hidden;
}

.team-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .photo-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-black);
    color: var(--color-white);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.team-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.member-role {
    font-size: 1rem;
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-red);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0D0D0D 0%, #0D0D0D 100%);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.3) 10%, 
        rgba(255, 0, 0, 0.3) 90%, 
        transparent 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-red);
    border-radius: 50%;
    border: 4px solid var(--color-black);
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateX(-10px);
}

.timeline-item:nth-child(even):hover .timeline-content {
    transform: translateX(10px);
}

.timeline-date {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.1em;
    color: var(--color-red);
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-item-future .timeline-marker {
    background: transparent;
    border-color: var(--color-red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--color-black);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 15s ease-in-out infinite;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -15%;
    left: -10%;
    animation-delay: -7s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    .manifesto-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .manifesto-text {
        font-size: 1rem;
    }

    .manifesto-highlight {
        font-size: 1.25rem;
    }

    .team-section,
    .timeline-section,
    .cta-section {
        padding: 5rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        max-width: 100%;
    }

    .timeline-item:hover .timeline-content,
    .timeline-item:nth-child(even):hover .timeline-content {
        transform: translateX(5px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 3rem;
    }

    .team-info {
        padding: 1.5rem;
    }

    .member-name {
        font-size: 1.25rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0D0D0D 0%, var(--color-black) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-red);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Values Section */
.values-section {
    padding: 8rem 2rem;
    background: var(--color-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-red), transparent, var(--color-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.value-card:hover::before {
    opacity: 1;
}

.value-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 0, 0, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Approach Section */
.approach-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--color-black) 0%, #0D0D0D 100%);
}

.approach-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(255, 0, 0, 0.5) 0%, 
        rgba(255, 0, 0, 0.2) 50%, 
        rgba(255, 0, 0, 0.5) 100%
    );
}

.approach-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.approach-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-red), #CC0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 0 0 8px rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.approach-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(255, 0, 0, 0.2), 0 10px 30px rgba(255, 0, 0, 0.3);
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.approach-step:hover .step-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .what-we-do-section,
    .values-section,
    .approach-section {
        padding: 5rem 1.5rem;
    }

    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .approach-timeline::before {
        left: 15px;
    }

    .approach-step {
        padding-left: 70px;
        margin-bottom: 3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .approach-step:hover .step-content {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .service-card,
    .value-card,
    .step-content {
        padding: 1.5rem;
    }

    .value-number {
        font-size: 3rem;
    }

    .service-card h3,
    .value-card h3,
    .step-content h3 {
        font-size: 1.25rem;
    }
}

/* Active nav link */
nav .nav-links a.active {
    color: var(--color-red);
}
