/* ========================================
   Page-Specific Styles
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,138.7C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* Main Story Section */
.main-story {
    background-color: var(--white);
    padding: 80px 0;
}

.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-text);
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

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

.timeline-marker {
    position: absolute;
    left: 17px;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E67E22 100%);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

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

.timeline-date {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.timeline-content p {
    line-height: 1.8;
    color: var(--dark-text);
}

.timeline-content blockquote {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--neutral-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-style: italic;
    color: var(--dark-text);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #FFF9E6 0%, var(--neutral-color) 100%);
    padding: 80px 0;
}

.mission-statement {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--primary-color);
    font-family: var(--font-script);
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar {
    text-align: center;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E67E22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.pillar h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pillar p {
    color: var(--dark-text);
    line-height: 1.7;
}

/* Meet Founders Section */
.meet-founders {
    background-color: var(--white);
    padding: 80px 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.founder-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.founder-image {
    height: 350px;
}

.founder-content {
    padding: 40px;
}

.founder-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 5px;
}

.founder-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.founder-content p {
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.founder-highlights {
    list-style: none;
    margin-top: 20px;
}

.founder-highlights li {
    padding: 10px 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-highlights i {
    color: var(--success);
    font-size: 1rem;
}

/* Values Section */
.values-section {
    background-color: var(--neutral-color);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--dark-text);
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    background-color: var(--white);
    padding: 80px 0;
}

.partners-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partners-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 60px;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.partner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.partner-stat .stat-label {
    font-size: 1rem;
    color: var(--dark-text);
    margin-top: 10px;
}

/* Event Page Styles */
.event-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    color: var(--white);
    padding: 160px 20px 100px;
    text-align: center;
}

.event-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.event-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E67E22 100%);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.event-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-header h2 {
    margin-bottom: 10px;
    color: var(--white);
}

.event-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.event-price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.event-body {
    padding: 50px;
}

.event-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E67E22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.detail-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.detail-content p {
    color: var(--dark-text);
    font-size: 0.95rem;
}

.features-list {
    background-color: var(--neutral-color);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.features-list h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.features-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-text);
}

.features-list i {
    color: var(--success);
    font-size: 1.125rem;
}

.event-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--neutral-color);
}

.event-cta p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Shop Page Styles */
.shop-filters {
    background-color: var(--neutral-color);
    padding: 30px 0;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-image {
    height: 250px;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--dark-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-color);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Event Sessions Grid */
.retreat-sessions {
    margin: 40px 0;
}

.retreat-sessions h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.session-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--neutral-color);
    transition: var(--transition);
    display: flex;
    gap: 15px;
}

.session-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.session-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E67E22 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.session-item h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.session-item p {
    font-size: 0.9rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-color);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--dark-text);
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-badge-item {
    text-align: center;
}

.trust-badge-item h4 {
    color: var(--primary-color);
    margin: 15px 0 8px;
}

.trust-badge-item p {
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Cart Button */
.btn-add-cart {
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Assessment Section */
.assessment-section {
    background: linear-gradient(135deg, #FFF9E6 0%, var(--neutral-color) 100%);
    padding: 80px 0;
}

.assessment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.assessment-benefits {
    list-style: none;
    margin: 30px 0;
}

.assessment-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    color: var(--dark-text);
}

.assessment-benefits i {
    color: var(--success);
    font-size: 1.25rem;
}

.assessment-visual {
    height: 400px;
}

/* Podcast Section */
.podcast-section {
    background-color: var(--white);
    padding: 80px 0;
}

.podcast-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.podcast-visual {
    height: 400px;
}

.podcast-platforms {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--neutral-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.platform-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Form */
.contact-form-section {
    background-color: var(--white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E67E22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-item-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--dark-text);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--neutral-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.125rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 2px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .event-body {
        padding: 30px 20px;
    }

    .features-list {
        padding: 30px 20px;
    }

    .features-list ul {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .sessions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 20px;
    }
}