/* About Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #2a2a2a 100%);
    color: #FFD700;
    padding: 70px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    color: #ffffff;
    opacity: 0.95;
    font-weight: 400;
}

/* Main Content */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mission-section h2 {
    font-size: 38px;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 60px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.value-card h3 {
    font-size: 26px;
    color: #FFD700;
    margin-bottom: 18px;
    font-weight: 600;
}

.value-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #c0c0c0;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.founder-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: 10% center;
    border-radius: 8px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.founder-info h2 {
    font-size: 38px;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-role {
    font-size: 18px;
    color: #FFD700;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

.founder-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.founder-info .quote {
    font-size: 20px;
    color: #FFD700;
    font-style: italic;
    padding-left: 25px;
    border-left: 4px solid #FFD700;
    margin-top: 30px;
    line-height: 1.7;
}

/* Get Involved Section */
.get-involved {
    padding: 90px 0;
    text-align: center;
}

.get-involved h2 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 600;
}

.get-involved p {
    font-size: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-link {
    display: inline-block;
    background: #FFD700;
    color: #1a1a1a;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .mission-values {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image img {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .founder-info {
        text-align: center;
    }

    .founder-info .quote {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid #FFD700;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-content {
        padding: 0 25px;
    }

    .mission-section,
    .founder-section,
    .get-involved {
        padding: 60px 0;
    }

    .mission-section h2,
    .founder-info h2,
    .get-involved h2 {
        font-size: 30px;
    }

    .mission-section p,
    .get-involved p {
        font-size: 18px;
    }

    .founder-image img {
        height: 350px;
        max-width: 350px;
    }

    .founder-role {
        font-size: 17px;
    }

    .founder-info p {
        font-size: 17px;
    }

    .founder-info .quote {
        font-size: 18px;
    }

    .contact-link {
        padding: 14px 35px;
        font-size: 17px;
    }
}
