/* About Page Specific Styles */

.about-header {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(58, 134, 255, 0.3);
    pointer-events: none;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(58, 134, 255, 0.2);
    z-index: -1;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    margin-bottom: 1.5rem;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #8338ec);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.5);
}

.social-links-about {
    display: flex;
    gap: 1rem;
}

.social-links-about a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-about a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* About Details Section */
.about-details {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.skills-container {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.skill-category {
    flex: 1;
}

.skill-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.skill-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 900px;
}

.newsletter h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: background-color 0.3s ease;
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: var(--text-color-muted);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-color), #8338ec);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-header {
        padding: 5rem 5% 3rem;
        gap: 3rem;
    }
    
    .profile-image {
        flex: 0 0 250px;
        height: 250px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-details {
        padding: 3rem 5%;
    }
    
    .newsletter {
        margin: 3rem 5%;
    }
}

@media (max-width: 768px) {
    .about-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        flex: 0 0 200px;
        height: 200px;
    }
    
    .contact-links {
        justify-content: center;
    }
    
    .skills-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.8rem;
    }
    
    .about-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-section {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 5%;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .social-links-about {
        justify-content: center;
    }
    
    .about-section p {
        font-size: 1rem;
    }
    
    .skill-list li {
        font-size: 1rem;
    }
    
    .newsletter h3 {
        font-size: 1.8rem;
    }
    
    .newsletter p {
        font-size: 1rem;
    }
} 