/* About Page - The Digital Surgeons */
/* Cyberpunk Theme for Studio/About Page */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary) 100%);
    padding: 12rem 0 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(252, 238, 10, 0.12) 0%, transparent 50%),
                      radial-gradient(circle at 70% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Studio Story Section */
.studio-story-section {
    background-color: var(--color-background);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.studio-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cyberpunk-inspo/home-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.studio-story-section .section-container {
    position: relative;
    z-index: 1;
}

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

.story-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-primary);
    font-weight: 300;
}

.story-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.8), rgba(10, 1, 24, 0.9));
    border: 2px solid rgba(252, 238, 10, 0.3);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.image-placeholder:hover {
    border-color: var(--color-highlight);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(252, 238, 10, 0.25);
}

.placeholder-content {
    color: var(--color-highlight);
    opacity: 0.3;
}

/* Values Section */
.values-section {
    background: linear-gradient(to bottom, var(--color-background), var(--color-secondary));
    padding: 8rem 0;
}

.values-section .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.values-section .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 5rem;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.6), rgba(10, 1, 24, 0.8));
    border: 2px solid rgba(252, 238, 10, 0.2);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--color-highlight);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(252, 238, 10, 0.25);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-highlight);
    margin-bottom: 1.5rem;
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-primary);
    font-weight: 300;
}

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

.team-section .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 5rem;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.8), rgba(10, 1, 24, 0.9));
    border: 2px solid rgba(252, 238, 10, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.team-member:hover .photo-placeholder {
    border-color: var(--color-highlight);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(252, 238, 10, 0.3);
}

.photo-placeholder svg {
    color: var(--color-highlight);
    opacity: 0.3;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.member-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-primary);
    font-weight: 300;
    font-style: italic;
    padding: 0 1rem;
}

/* Culture Section */
.culture-section {
    background: linear-gradient(to bottom, var(--color-background), var(--color-secondary));
    padding: 8rem 0;
}

.culture-section .section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.culture-item {
    text-align: center;
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.15), rgba(0, 240, 255, 0.1));
    border: 2px solid var(--color-highlight);
    border-radius: 50%;
    color: var(--color-highlight);
    transition: all 0.4s ease;
}

.culture-item:hover .culture-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(252, 238, 10, 0.5);
}

.culture-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.culture-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-primary);
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto;
}

/* Impact Section */
.impact-section {
    background-color: var(--color-background);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 50%, rgba(252, 238, 10, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.impact-content {
    position: relative;
    z-index: 1;
}

.impact-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.impact-text .section-title {
    margin-bottom: 2rem;
}

.impact-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-primary);
    font-weight: 300;
    margin-bottom: 4rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.6), rgba(10, 1, 24, 0.8));
    border: 2px solid rgba(252, 238, 10, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    border-color: var(--color-highlight);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(252, 238, 10, 0.2);
}

.impact-stat .stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(252, 238, 10, 0.5);
}

.impact-stat .stat-label {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.4;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(to bottom, var(--color-background) 0%, rgba(252, 238, 10, 0.1) 50%, rgba(0, 240, 255, 0.08) 100%);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(252, 238, 10, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-cta-section .cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.about-cta-section .cta-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-primary);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-text .section-title {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 10rem 0 6rem 0;
    }

    .studio-story-section,
    .values-section,
    .team-section,
    .culture-section,
    .impact-section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-cta-section {
        padding: 8rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 8rem 0 5rem 0;
    }

    .value-card {
        padding: 2rem;
    }

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

    .photo-placeholder {
        width: 160px;
        height: 160px;
    }

    .culture-icon {
        width: 64px;
        height: 64px;
    }
}
