/* ===============================================
   ABOUT PAGE SPECIFIC STYLES - Visitation Nuns
   =============================================== */

/* Foundress Section */
.foundress-section {
    padding: 60px 0;
    background: var(--white);
}

.foundress-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.foundress-image-container {
    position: relative;
}

.foundress-frame {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.foundress-photo {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.foundress-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.foundress-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.foundress-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foundress-placeholder small {
    font-size: 14px;
    opacity: 0.8;
}

.foundress-quote {
    margin-top: 30px;
    background: var(--cream);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.foundress-quote i {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
}

.foundress-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
    padding-left: 30px;
    line-height: 1.6;
}

.foundress-text {
    padding-top: 20px;
}

.foundress-text .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
}

.foundress-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* History Section with Timeline */
.history-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.history-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    font-weight: 500;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 30px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.timeline-icon {
    grid-column: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 0 0 8px var(--light-bg), 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.timeline-item.highlight .timeline-content {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(210, 105, 30, 0.05));
    border: 2px solid var(--gold);
}

.timeline-item.highlight .timeline-icon {
    background: var(--gold);
    width: 100px;
    height: 100px;
    font-size: 40px;
}

.timeline-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Logo Meaning Section */
.logo-meaning-section {
    padding: 80px 0;
    background: white;
}

.logo-explanation {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.logo-visual {
    position: sticky;
    top: 100px;
}

.logo-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.logo-placeholder-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.logo-placeholder-large i {
    font-size: 100px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.logo-placeholder-large p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.logo-placeholder-large small {
    font-size: 14px;
    opacity: 0.9;
}

.logo-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h3 i {
    font-size: 32px;
    color: var(--gold);
}

.logo-text .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.logo-meaning-points {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.meaning-point {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.meaning-point:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.meaning-point h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meaning-point h4 i {
    font-size: 24px;
    color: var(--gold);
}

.meaning-point p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.logo-conclusion {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(210, 105, 30, 0.08));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.logo-conclusion p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.logo-conclusion strong {
    color: var(--primary-color);
    font-size: 19px;
}

/* Mission/Vision Updates */
.mission-vision-grid .mission-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 10px 0 15px;
    font-weight: 600;
}

.mission-details {
    margin-top: 20px;
}

.mission-details p {
    margin-bottom: 15px;
}

.mission-details ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.mission-details li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.mission-details li i {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 20px;
    color: var(--gold);
}

/* Special Features Grid */
.values-grid.special-features {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03), rgba(210, 105, 30, 0.03));
}

.feature-icon-large {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-intro {
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* No Events Message */
.no-events-message {
    text-align: center;
    padding: 80px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    margin: 40px 0;
}

.no-events-message i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-events-message h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.no-events-message p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Past Events Grid */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.past-event-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.past-event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.past-event-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.past-event-date i {
    color: var(--gold);
}

.past-event-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.past-event-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .foundress-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logo-explanation {
        grid-template-columns: 1fr;
    }
    
    .logo-visual {
        position: static;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .timeline-icon {
        grid-column: 1;
        grid-row: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .foundress-text .lead {
        font-size: 18px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .logo-text h3 {
        font-size: 24px;
    }
    
    .values-grid.special-features {
        grid-template-columns: 1fr;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
}
