/* ===========================
   About Page Specific Styles
   =========================== */

/* Page Hero */
.page-hero {
    background: var(--gradient-hero);
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    pointer-events: none;
}

.page-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-hero-subtitle {
    font-size: 1.8rem;
    color: var(--golden-yellow);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* About Content Section */
.about-content {
    padding: 5rem 0;
}

/* Opening Statement */
.opening-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    position: relative;
}

.statement-icon {
    font-size: 4rem;
    color: var(--saffron);
    margin-bottom: 2rem;
}

.opening-statement h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.large-text {
    font-size: 1.8rem;
    color: var(--deep-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.emphasis-text {
    font-size: 1.5rem;
    color: var(--terracotta);
    font-weight: 600;
    font-style: italic;
}

/* Content Section */
.content-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.content-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--saffron);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    color: var(--saffron);
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

/* Journey Section */
.journey-section {
    background: var(--light-grey);
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.journey-content h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--saffron);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: var(--deep-orange);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

/* What's Inside Section */
.whats-inside {
    margin-bottom: 5rem;
}

.whats-inside h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
}

.inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.inside-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--saffron);
}

.inside-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--deep-orange);
}

.inside-icon {
    font-size: 3.5rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.inside-card h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.inside-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey);
}

/* Purpose Section */
.purpose-section {
    background: linear-gradient(135deg, var(--warm-cream), var(--light-gold));
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.purpose-content h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
}

.purpose-text {
    max-width: 800px;
    margin: 0 auto;
}

.large-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--deep-orange);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
}

.large-quote .fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: var(--saffron);
    opacity: 0.3;
}

.large-quote .fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 2rem;
    color: var(--saffron);
    opacity: 0.3;
}

.purpose-statement {
    font-size: 1.4rem;
    color: var(--dark-brown);
    text-align: center;
    font-weight: 600;
    line-height: 1.8;
}

/* Vision Section */
.vision-section {
    margin-bottom: 5rem;
}

.vision-banner {
    background: var(--gradient-primary);
    padding: 4rem 3rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.vision-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.vision-point {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.vision-point:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.vision-point i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--golden-yellow);
}

.vision-point p {
    font-size: 1.2rem;
    font-weight: 600;
}

.vision-finale {
    margin-top: 3rem;
    text-align: center;
}

.finale-text {
    font-size: 2rem;
    color: var(--deep-orange);
    font-weight: 700;
    padding: 2rem;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* Book Features */
.book-features {
    background: var(--light-grey);
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.book-features h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.feature-item p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .opening-statement {
        padding: 3rem 2rem;
    }
    
    .opening-statement h2 {
        font-size: 2rem;
    }
    
    .large-text {
        font-size: 1.4rem;
    }
    
    .content-section {
        grid-template-columns: 1fr;
    }
    
    .content-card {
        flex-direction: column;
        text-align: center;
    }
    
    .journey-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .vision-title {
        font-size: 2.5rem;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
    }
    
    .finale-text {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 8rem 0 4rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .opening-statement h2 {
        font-size: 1.5rem;
    }
    
    .journey-section,
    .purpose-section,
    .vision-banner,
    .book-features,
    .cta-section {
        padding: 3rem 1.5rem;
    }
}
