/* About Page Specific Styles */
.about-hero {
    min-height: 70vh;
    background: linear-gradient(to right, var(--black) 60%, var(--accent) 200%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 45, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 45, 45, 0.1) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
    background: linear-gradient(45deg, var(--white) 30%, var(--accent) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

.about-hero p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.story-section {
    padding: 8rem 2rem;
    background: var(--white);
    position: relative;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    to { transform: scaleX(1); }
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.story-section p:nth-child(2) {
    animation-delay: 0.2s;
}

.story-section p:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.values-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--gray) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.quote-section {
    padding: 8rem 2rem;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40rem;
    opacity: 0.1;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

.quote-text {
    position: relative;
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    text-align: center;
    z-index: 1;
}

.quote-translation {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
}

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

    .about-hero h1 {
        font-size: 3.5rem;
    }

    .story-section h2 {
        font-size: 2.5rem;
    }

    .story-section p {
        font-size: 1.1rem;
    }

    .values-grid {
        gap: 2rem;
    }

    .quote-text {
        font-size: 2rem;
    }
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
