/* About Us Page Styles - Section Specific Only */

/* Hero Section specific styles */
.about-hero {
    padding: 96px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 10%, rgba(235, 123, 68, 0.05), transparent 70%);
}

/* Overrides for shared hero elements within About page */
.about-hero .hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-hero .hero-subtitle {
    font-size: 20px;
    color: #666;
    /* var(--text-secondary) */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Base Section Styles (Unique to About) */


.about-section {
    padding: 64px 0 96px;
    border-top: 1px solid #eeeeee;
    /* var(--border-light) */
}

/* Section Headers (Unique to About) */
.about-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
}

.about-subtitle {
    font-size: 17.6px;
    color: #666;
    /* var(--text-secondary) */
    margin-top: 8px;
}

/* Intentions Grid */
.intentions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.intention-card {
    background: #fafafa;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    text-align: left;
    position: relative;
    overflow: hidden;
}



.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(235, 123, 68, 0.1);
    color: #eb7b44;
    /* var(--accent-orange) */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}



.intention-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111;
    position: relative;
    z-index: 1;
}

.intention-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Philosophy Section */
.philosophy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #333;
}

.philosophy-content p {
    font-size: 19.2px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.philosophy-content p:last-of-type {
    font-weight: 500;
    color: #333;
    font-style: italic;
    border-left: 4px solid #eb7b44;
    padding-left: 24px;
}

/* Founder Section - Card Style */
.founder-card {
    background: white;
    border-radius: 24px;
    border: 1px solid #eeeeee;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.founder-info {
    text-align: center;
}

.founder-info h3 {
    font-size: 40px;
    margin-bottom: 8px;
    color: #111;
}

.founder-role {
    display: inline-block;
    color: #eb7b44;
    font-weight: 700;
    font-size: 14.4px;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.founder-bio {
    font-size: 18.4px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0;
}

.social-btn.github {
    background: #24292e;
    color: white;
}

.social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .intentions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    /* Hero Adjustments */
    .about-hero {
        padding: 48px 0;
    }



    .about-hero .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .about-hero .hero-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    /* General Section Padding */
    .about-section {
        padding: 48px 0;
    }

    .about-header {
        margin-bottom: 32px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    /* Intentions Grid */
    .intentions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

    .intention-card {
        padding: 24px;
    }

    .intention-card h3 {
        font-size: 20px;
    }

    /* Philosophy Section */
    .philosophy-content h2 {
        font-size: 28px;
    }

    .philosophy-content p {
        font-size: 16px;
    }

    /* Founder Card */
    .founder-card {
        padding: 24px;
        border-radius: 16px;
    }

    .founder-info h3 {
        font-size: 28px;
    }

    .founder-bio {
        font-size: 16px;
    }

    .social-links-row {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .social-btn {
        justify-content: center;
    }


}