/* About Page Styles for Zen Habit */

.about-section {
    padding: 40px 0;
    color: #333;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.creator-avatar {
    margin-bottom: 32px;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.avatar-placeholder:hover {
    transform: scale(1.05);
}

.avatar-emoji {
    font-size: 48px;
    filter: brightness(1.2);
}

.creator-name {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creator-title {
    font-size: 20px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}

.creator-subtitle {
    font-size: 16px;
    color: #9ca3af;
    font-style: italic;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
}

.about-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
    text-align: center;
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

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

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.philosophy-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-list strong {
    color: #1f2937;
    font-weight: 600;
}

.social-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.social-section p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-link.linkedin {
    border-color: rgba(0, 119, 181, 0.2);
}

.social-link.linkedin:hover {
    border-color: #0077b5;
    background: rgba(0, 119, 181, 0.02);
}

.social-link.github {
    border-color: rgba(51, 51, 51, 0.2);
}

.social-link.github:hover {
    border-color: #333;
    background: rgba(51, 51, 51, 0.02);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.linkedin .social-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.github .social-icon {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: white;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.social-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.social-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.gratitude-section {
    margin-top: 20px;
}

.gratitude-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gratitude-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gratitude-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.gratitude-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.gratitude-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.gratitude-quote {
    font-size: 18px;
    font-style: italic;
    color: #667eea;
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.quote-author {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    font-style: normal;
    margin-top: 8px;
    display: block;
}

.footer-creator {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 24px;
    }
    
    .creator-name {
        font-size: 32px;
    }
    
    .about-card {
        padding: 28px;
    }
    
    .about-card h2 {
        font-size: 24px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        padding: 20px;
    }
    
    .gratitude-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 0;
    }
    
    .about-hero {
        padding: 32px 20px;
        margin-bottom: 40px;
    }
    
    .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .avatar-emoji {
        font-size: 40px;
    }
    
    .creator-name {
        font-size: 28px;
    }
    
    .about-content {
        gap: 28px;
    }
    
    .about-card {
        padding: 24px;
    }
    
    .card-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .about-card h2 {
        font-size: 22px;
    }
    
    .social-section {
        padding: 28px;
    }
    
    .social-link {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 16px;
    }
    
    .social-text {
        align-items: center;
        text-align: center;
    }
    
    .gratitude-card {
        padding: 24px;
    }
    
    .gratitude-icon {
        font-size: 48px;
    }
    
    .gratitude-quote {
        font-size: 16px;
        padding: 20px;
    }
}

