/* About Page Specific Styles */

.about-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 0.375rem;
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content h1:first-child,
.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-content .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6c757d;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #007bff;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #dee2e6;
}

.timeline-item h4 {
    color: #007bff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Quote Cards */
.quote-card {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 1.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.quote-author {
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0;
}

/* Fun Facts */
.fun-fact {
    align-items: flex-start;
}

.fun-fact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.fun-fact-icon i {
    color: white;
    font-size: 1.5rem;
}

.fun-fact h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.fun-fact p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Small Recipe Image in Sidebar */
.small-recipe-img {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 0.375rem;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #6c757d;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-links a:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Card Enhancements */
.card {
    transition: transform 0.2s ease-in-out;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-banner {
        height: 200px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .fun-fact-icon {
        width: 50px;
        height: 50px;
    }

    .fun-fact-icon i {
        font-size: 1.2rem;
    }
}