/* About Page Specific Styles */
.about-page {
    min-height: 100vh;
    background: var(--brutal-white);
    
}

/* Hero Section */
.about-hero {
    padding: 4rem 0;
    text-align: center;
    background: var(--brutal-white);
    border-bottom: var(--brutal-border);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0, 172, 124, 0.03) 35px,
        rgba(0, 172, 124, 0.03) 70px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.brutal-title.glitch {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--brutal-black);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--brutal-accent);
    animation: glitch-1 2s infinite;
    z-index: -1;
}

.glitch::after {
    color: var(--menu-highlight);
    animation: glitch-2 2s infinite;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    margin-bottom: 2rem;
}

.subtitle-box {
    display: inline-block;
    background: var(--brutal-accent);
    color: var(--brutal-white);
    padding: 0.75rem 2rem;
    border: var(--brutal-border);
    box-shadow: var(--brutal-shadow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-1deg);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 600;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.story-box {
    background: var(--brutal-white);
    border: var(--brutal-border);
    box-shadow: var(--brutal-shadow);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-box::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--brutal-accent);
    border: var(--brutal-border);
    transform: rotate(45deg);
}

.story-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--brutal-black);
}

.title-decoration {
    width: 100px;
    height: 5px;
    background: var(--brutal-accent);
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlight-box {
    background: var(--brutal-black);
    color: var(--brutal-white);
    padding: 2rem;
    border: 4px solid var(--brutal-accent);
    position: relative;
    text-align: center;
}

.highlight-box i {
    font-size: 2rem;
    color: var(--brutal-accent);
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--brutal-accent);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--brutal-white);
    border: var(--brutal-border);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 172, 124, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 10px 10px 0 var(--brutal-black);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--brutal-accent);
    color: var(--brutal-white);
    border: var(--brutal-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transform: rotate(-3deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--brutal-black);
}

.feature-card p {
    line-height: 1.6;
    font-weight: 600;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brutal-accent);
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--brutal-white);
    border: 4px solid var(--brutal-black);
    box-shadow: 8px 8px 0 var(--brutal-black);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--brutal-accent);
}

.card-upper {
    height: 140px;
    background: var(--brutal-accent);
    border-bottom: 4px solid var(--brutal-black);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.member-image-container {
    width: 100px;
    height: 100px;
    background: var(--brutal-white);
    border: 4px solid var(--brutal-black);
    transform: translateY(50%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.member-image-container img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 2px solid var(--brutal-black);
}

.card-lower {
    padding: 60px 20px 30px;
    text-align: center;
}

.member-name {
    margin: 0 0 5px;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--brutal-black);
    text-transform: uppercase;
}

.member-role {
    margin: 0 0 15px;
    font-size: 0.9rem;
    color: var(--brutal-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    margin-bottom: 20px;
}

.member-description p {
    font-size: 0.9rem;
    color: var(--brutal-black);
    border: 2px dashed var(--brutal-black);
    padding: 15px;
    background: #f9f9f9;
    line-height: 1.5;
    font-weight: 600;
}

.member-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brutal-accent);
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brutal-black);
    text-transform: uppercase;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--brutal-black);
    color: var(--brutal-white);
}

.values-section .section-title {
    color: var(--brutal-white);
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--brutal-white);
    color: var(--brutal-black);
    padding: 2rem;
    border: 4px solid var(--brutal-accent);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 0 var(--brutal-accent);
}

.value-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--brutal-accent);
    color: var(--brutal-white);
    width: 40px;
    height: 40px;
    border: 3px solid var(--brutal-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.value-item p {
    font-weight: 600;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--brutal-white);
}

.cta-box {
    background: var(--brutal-accent);
    color: var(--brutal-white);
    padding: 3rem;
    border: var(--brutal-border);
    box-shadow: var(--brutal-shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.brutal-btn--secondary {
    background: var(--brutal-white);
    color: var(--brutal-black);
}

.brutal-btn--secondary:hover {
    background: var(--brutal-black);
    color: var(--brutal-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .brutal-title.glitch {
        font-size: 3rem;
    }
    
    .story-box,
    .cta-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brutal-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        max-width: 100%;
    }
    
    .subtitle-box {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}