/* Static Pages CSS - About, Contact, Privacy, Terms
   Changes:
   - 2025-12-31: Created shared styles for static pages
   - 2025-12-31: Grid background and gradient only on hero section (like home page)
*/

/* Static Page Container */
.static-page {
    min-height: calc(100vh - var(--navbar-height, 64px));
    background: hsl(var(--background));
}

/* Page Hero Section - with grid background and gradient (like home page hero) */
.page-hero {
    position: relative;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    overflow: hidden;
    background: hsl(var(--background));
}

/* Grid background - only on hero section */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(hsl(var(--foreground) / 0.03) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--foreground) / 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* Gradient glow overlay - only on hero section */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(
        ellipse 50% 80% at 50% 0%,
        hsl(var(--primary) / 0.12) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.page-title .text-gradient {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary) / 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground) / 0.7);
    margin-top: 1.5rem;
}

/* Content Sections */
.content-section {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem;
}

.content-section.alt-bg {
    background: hsl(var(--muted) / 0.5);
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-large {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

/* Mission Section */
.mission-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.mission-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px hsl(var(--primary) / 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
}

.mission-icon svg {
    width: 28px;
    height: 28px;
    stroke: hsl(var(--primary));
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.mission-card p {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.offering-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
}

.offering-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.offering-icon.image { background: hsl(142 71% 45% / 0.1); }
.offering-icon.image svg { stroke: hsl(142 71% 45%); }
.offering-icon.pdf { background: hsl(0 84% 60% / 0.1); }
.offering-icon.pdf svg { stroke: hsl(0 84% 60%); }
.offering-icon.video { background: hsl(262 83% 58% / 0.1); }
.offering-icon.video svg { stroke: hsl(262 83% 58%); }
.offering-icon.audio { background: hsl(38 92% 50% / 0.1); }
.offering-icon.audio svg { stroke: hsl(38 92% 50%); }

.offering-icon svg {
    width: 24px;
    height: 24px;
}

.offering-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.offering-content p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

/* Technology Section */
.tech-highlight {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.tech-badge svg {
    width: 20px;
    height: 20px;
    stroke: hsl(var(--primary));
}

.tech-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
}

.tech-highlight p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.tech-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
}

.tech-feature strong {
    font-size: 1rem;
    color: hsl(var(--foreground));
}

.tech-feature span {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Team Section */
.team-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: hsl(var(--primary));
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Feedback Section */
.feedback-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.feedback-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.feedback-content p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsl(var(--primary) / 0.3);
}

.feedback-btn svg {
    width: 18px;
    height: 18px;
}

/* Privacy Page Specific */
.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.privacy-card.highlight {
    border-color: hsl(var(--primary) / 0.3);
    background: hsl(var(--primary) / 0.03);
}

.privacy-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
}

.privacy-icon svg {
    width: 24px;
    height: 24px;
    stroke: hsl(var(--primary));
}

.privacy-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.privacy-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

/* Legal Content Blocks */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.legal-content .section-intro {
    font-size: 1rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.legal-block {
    margin-bottom: 1.5rem;
}

.legal-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.legal-block p,
.legal-content > p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Don't List */
.dont-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.dont-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

.dont-list svg {
    width: 20px;
    height: 20px;
    stroke: hsl(0 84% 60%);
    flex-shrink: 0;
}

/* Cookies Grid */
.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-item {
    padding: 1rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
}

.cookie-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.cookie-item p {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.legal-content .note {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground) / 0.8);
    font-style: italic;
}

/* Contact Box */
.contact-box {
    padding: 1.5rem;
    background: hsl(var(--primary) / 0.05);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin: 0;
}

.contact-box a {
    color: hsl(var(--primary));
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Terms Page Specific */
.terms-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.terms-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--muted) / 0.5);
    border-radius: 50%;
}

.terms-icon svg {
    width: 24px;
    height: 24px;
    stroke: hsl(var(--foreground));
}

.terms-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.terms-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.terms-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.terms-list li {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* CTA Section for Static Pages */
.cta-section-page {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, 
        hsl(var(--primary) / 0.08) 0%, 
        hsl(var(--primary) / 0.03) 100%);
}

.cta-section-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.cta-section-page p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.cta-button-page {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button-page:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px hsl(var(--primary) / 0.35);
}

.cta-button-page svg {
    width: 20px;
    height: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 1rem 2rem;
    }
    
    .content-section {
        padding: 3rem 1rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .mission-statement {
        font-size: 1.125rem;
    }
    
    .cta-section-page {
        padding: 3rem 1rem;
    }
    
    .cta-section-page h2 {
        font-size: 1.75rem;
    }
}

