/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(44, 85, 48, 0.9), rgba(44, 85, 48, 0.8)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Author Biography */
.author-biography {
    padding: 80px 0;
}

.bio-content {
    display: flex;
    gap: 60px;
}

.bio-image-section {
    flex: 0 0 350px;
}

.bio-image-frame {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    text-align: center;
}

.bio-image {
    width: 100%;
    height: 300px;
    background-image: url('../images/about/author-bio.jpg');
    background-size: cover;
    background-position: center;
}

.image-caption p {
    margin-bottom: 5px;
}

.image-caption strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.quick-facts {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.quick-facts h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.quick-facts h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.quick-facts ul {
    margin-bottom: 0;
}

.quick-facts li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.quick-facts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quick-facts strong {
    color: var(--primary-color);
}

.bio-text {
    flex: 1;
}

.bio-intro {
    margin-bottom: 40px;
}

.bio-intro h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.inspirational-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--accent-color);
    padding: 20px;
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.bio-section {
    margin-bottom: 40px;
}

.bio-section h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bio-section h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.highlight-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 40px);
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 40px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 3px;
    background-color: var(--secondary-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-item.future .timeline-content {
    background-color: rgba(44, 85, 48, 0.1);
    border: 2px dashed var(--primary-color);
}

.timeline-item.future .timeline-date {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Connect Section */
.connect-section {
    padding: 80px 0;
    background-color: white;
}

.connect-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.connect-text {
    flex: 1;
}

.connect-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-connect {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-btn.email {
    background-color: var(--primary-color);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.connect-image {
    flex: 1;
}

.quote-box {
    background: linear-gradient(135deg, var(--primary-color), #1e3a21);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .bio-content {
        flex-direction: column;
    }
    
    .bio-image-section {
        flex: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .connect-content {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .bio-highlights {
        grid-template-columns: 1fr;
    }
    
    .social-connect {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .inspirational-quote {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .quote-box {
        padding: 25px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}