/* About Page Styles */

.about-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.about-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.about-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-mascot {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-mascot:hover {
    transform: scale(1.05) rotate(5deg);
}

.about-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Section Styling */
.about-section {
    margin-bottom: 4rem;
}

.about-section-title {
    color: var(--accent-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: -0.01em;
}

.about-section-title i {
    font-size: 1.75rem;
}

.about-content {
    color: var(--text-tertiary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-content p {
    margin: 0 0 1.25rem 0;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Team Section */
.about-team {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border: 1px solid var(--border-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.team-member.founder {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-avatar i {
    font-size: 1.5rem;
    color: white;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.member-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

.member-bio p {
    margin: 0.5rem 0;
}

/* How It Works Steps */
.about-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.step-content p {
    color: var(--text-tertiary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Values Grid */
.about-values {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-primary) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.about-values .about-section-title {
    color: #fcf9ea;
    justify-content: center;
}

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

.about-value-card {
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(252, 249, 234, 0.2);
    color: #fcf9ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.about-value-card h3 {
    color: #fcf9ea;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.about-value-card p {
    color: #fcf9ea;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.about-vision {
    border-radius: 16px;
    padding: 3rem 2rem;
}

/* Feedback Section */
.about-feedback {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--accent-primary);
}

.feedback-form-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feedback-textarea,
.feedback-input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color 0.2s;
    resize: vertical;
}

.feedback-textarea:focus,
.feedback-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.feedback-textarea::placeholder,
.feedback-input::placeholder {
    color: var(--text-muted);
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-submit-feedback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-submit-feedback:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.feedback-success {
    padding: 1rem;
    background: #d1fae5;
    border: 2px solid #10b981;
    border-radius: 8px;
    color: #065f46;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[data-theme="dark"] .feedback-success {
    background: #065f46;
    border-color: #10b981;
    color: #d1fae5;
}

.feedback-success i {
    font-size: 1.25rem;
}

.feedback-error {
    padding: 1rem;
    background: #fee;
    border: 2px solid #fcc;
    border-radius: 8px;
    color: #c33;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[data-theme="dark"] .feedback-error {
    background: #7f1d1d;
    border-color: #dc2626;
    color: #fecaca;
}

.feedback-error i {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .about-mascot {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        margin-bottom: 2.5rem;
    }

    .about-section-title {
        font-size: 1.5rem;
        gap: 0.75rem;
    }

    .about-section-title i {
        font-size: 1.25rem;
    }

    .about-content {
        font-size: 1rem;
    }

    .about-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .about-values {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-value-card h3 {
        font-size: 1.25rem;
    }

    .about-value-card p {
        font-size: 0.95rem;
    }

    .about-team {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        padding: 2rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member.founder {
        grid-column: 1;
    }

    .member-header {
        gap: 0.75rem;
    }

    .member-avatar {
        width: 50px;
        height: 50px;
    }
    
    .member-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-avatar i {
        font-size: 1.25rem;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .about-vision,
    .about-feedback {
        padding: 2rem 1.5rem;
    }

    .feedback-form-container {
        margin-top: 1.5rem;
    }

    .btn-submit-feedback {
        font-size: 1rem;
    }
}

