/* EzeHealth Marketing Site - Editorial Style */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Header scroll state */
.header-scrolled {
    background: rgba(250, 249, 246, 0.98) !important;
    border-color: rgb(221, 215, 203) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Hero gradient - warm cream */
.hero-gradient {
    background: linear-gradient(135deg, #f5f3ee 0%, #faf9f6 50%, #f5f3ee 100%);
}

/* Editorial heading style */
.heading-editorial {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #2c2418;
}

/* Warm gradient text */
.gradient-text {
    background: linear-gradient(135deg, #5a6e4b, #8b7355);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature card hover */
.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

/* Pricing card popular */
.pricing-popular {
    border: 2px solid #5c6e4e;
    position: relative;
}

/* Blog card image hover zoom */
.blog-card-img {
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

/* Animate on scroll */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* CTA pulse animation */
@keyframes pulse-shadow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(92, 110, 78, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(92, 110, 78, 0); }
}
.cta-pulse { animation: pulse-shadow 2s infinite; }

/* Pain point left border */
.pain-card {
    border-left: 3px solid;
    transition: all 0.3s ease;
}
.pain-card:hover {
    transform: translateX(4px);
}

/* Architecture card top border */
.arch-card {
    border-top: 3px solid;
    transition: all 0.3s ease;
}
.arch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

/* Proof grid card */
.proof-card {
    transition: all 0.3s ease;
}
.proof-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.06);
}

/* FAQ accordion */
.faq-item {
    transition: all 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-icon {
    transition: transform 0.3s ease;
}

/* Section label style */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Chat mockup */
.chat-bubble-user {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.chat-bubble-ava {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Blog content styling */
.blog-content h2 { font-size: 1.5rem; font-weight: 700; color: #1e293b; margin: 2rem 0 1rem; }
.blog-content h3 { font-size: 1.25rem; font-weight: 600; color: #334155; margin: 1.5rem 0 0.75rem; }
.blog-content p { margin-bottom: 1rem; line-height: 1.75; color: #475569; }
.blog-content ul, .blog-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; line-height: 1.75; color: #475569; }
.blog-content ul li { list-style-type: disc; }
.blog-content ol li { list-style-type: decimal; }
.blog-content img { border-radius: 0.75rem; margin: 1.5rem 0; max-width: 100%; }
.blog-content blockquote { border-left: 4px solid #5c6e4e; padding: 1rem 1.5rem; margin: 1.5rem 0; background: #f5f3ee; border-radius: 0 0.5rem 0.5rem 0; }
.blog-content a { color: #5c6e4e; text-decoration: underline; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
