﻿body {
}

/* About Page Styles */

/* About Page Container */
.about-page {
    background-color: var(--light-gray);
    min-height: calc(100vh - 200px);
}

/* About Content */
.about-content {
    padding: 60px 0 80px;
}

/* About Section */
.about-section {
    margin-bottom: 50px;
}

.about-section:last-child {
    margin-bottom: 0;
}

/* About Text Content */
.about-text-content {
    background: var(--white-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 25px 0 15px 0;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.section-text:last-child {
    margin-bottom: 0;
}

.about-list {
    margin: 15px 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.about-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.about-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.contact-info p:first-child {
    margin-top: 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a472a 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 15px;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-content {
        padding: 40px 0 60px;
    }
    
    .about-section {
        margin-bottom: 40px;
    }
    
    .about-text-content {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .subsection-title {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .about-content {
        padding: 30px 0 50px;
    }
    
    .about-text-content {
        padding: 25px 20px;
        border-radius: 8px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .subsection-title {
        font-size: 17px;
        margin: 20px 0 12px 0;
    }
    
    .section-text,
    .about-list li {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }
    
    .about-intro {
        padding: 15px;
        font-size: 15px;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .contact-info p {
        font-size: 15px;
    }
    
    .highlight-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .story-timeline {
        padding-left: 25px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .about-text-content {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
    
    .section-text,
    .about-list li {
        font-size: 14px;
    }
    
    .about-intro {
        padding: 12px;
        font-size: 14px;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .story-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 15px;
    }
}

/* Smooth Animations */
.about-text-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility */
.section-title:focus,
.subsection-title:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
