/* /assets/css/about.css (Merged About & Contact Styles) */

/* =========================================
   Shared Wrapper & Card Layouts
========================================= */
.about-wrapper,
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 7rem 1rem 7rem 1rem;
}

.about-card,
.contact-card {
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
}

.about-card {
    max-width: 600px;
}

.contact-card {
    max-width: 650px;
}

/* =========================================
   About Page Specifics
========================================= */
.author-header {
    margin-bottom: 2rem;
}

.author-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-accent);
    padding: 4px;
    background: var(--bg-glass);
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.author-header h1 {
    font-size: 2rem;
    color: var(--nav-bottom-bg);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 1.1rem;
    color: var(--primary-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-bio {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.author-quote {
    background: rgba(106, 50, 235, 0.2);
    border-left: 4px solid var(--primary-accent);
    border-right: 4px solid var(--primary-accent);
    padding: 1.5rem;
    border-radius: 0 10px;
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: rgba(106, 50, 235, 0.15);
    font-size: 2rem;
}

.author-quote p {
    color: var(--text-dark);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

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

.about-footer p {
    font-size: 0.85rem;
    color: #888;
}

/* =========================================
   Contact Page Specifics
========================================= */
.contact-header {
    margin-bottom: 2.5rem;
}

.header-icon {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.contact-header h1 {
    font-size: 2.2rem;
    color: var(--nav-bottom-bg);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .email-btn {
        grid-column: 1 / -1; /* Makes email span the full width of the grid */
    }
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Brand Colors for Social Buttons */
.email-btn { background: #ea4335; }
.linkedin-btn { background: #0077b5; }
.github-btn { background: #333333; }
.facebook-btn { background: #1877f2; }
.telegram-btn { background: #0088cc; }
.instagram-btn { background: linear-gradient(45deg, #f09433, #e66465, #b06ab3); }
.discord-btn { background: #7289da; }

.social-btn i {
    font-size: 1.3rem;
}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  .author-header h1, .contact-header h1 {
    font-size: 26px;
  }
} 