/* About Page Styles */

.about-hero {
    padding: 6rem 0 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-text .page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Story Section */
.about-story {
    padding: 5rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Philosophy Section */
.about-philosophy {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.philosophy-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.philosophy-item {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.philosophy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.philosophy-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Personal Section */
.about-personal {
    padding: 5rem 0;
}

.personal-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.personal-item {
    padding: 2rem;
}

.personal-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.personal-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Experience Section */
.about-experience {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-align: left;
}

.experience-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.experience-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary) !important;
}

/* Fun Facts */
.about-fun-facts {
    padding: 5rem 0;
}

.about-fun-facts h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.fun-fact {
    background: var(--bg-elevated);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.2s ease;
}

.fun-fact:hover {
    transform: translateY(-2px);
}

.fact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.fun-fact p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 300px;
    }

    .philosophy-grid,
    .personal-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item,
    .fun-fact {
        padding: 2rem;
    }

    .experience-text p {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .philosophy-item,
    .fun-fact {
        padding: 1.5rem;
    }
}