/**
 * VeinVanish Gutenberg Block Styles
 * These styles apply to Gutenberg blocks to match VeinVanish design
 */

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f3e8ff;
    color: #7e22ce;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-trust {
    margin-top: 48px;
    color: #64748b;
    font-size: 0.9rem;
}

/* Section Styling */
.section-padding {
    padding: 80px 24px;
}

.section-label {
    color: #a855f7 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px !important;
}

.section-intro {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Symptoms Grid */
.symptoms-section {
    background: #f8fafc;
}

.symptoms-grid {
    gap: 24px !important;
}

.symptom-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 24px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.symptom-card:hover {
    border-color: #e9d5ff;
    transform: translateY(-2px);
}

.symptom-card h3 {
    font-size: 1.125rem !important;
    margin-bottom: 8px !important;
}

.symptom-card p {
    color: #64748b;
    margin: 0;
}

/* System Section */
.system-section h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
}

.system-feature {
    padding: 24px;
}

.system-feature h3 {
    font-size: 1.125rem !important;
    margin-bottom: 8px !important;
}

.system-feature p {
    color: #64748b;
}

/* Benefits Section (Purple) */
.benefits-section {
    background: #a855f7 !important;
}

.benefits-section h2,
.benefits-section h3 {
    color: #ffffff !important;
}

.benefits-section p {
    color: rgba(255, 255, 255, 0.85);
}

.benefits-grid {
    gap: 24px !important;
    margin-top: 48px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px !important;
    padding: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Insurance Section */
.insurance-card {
    border-radius: 24px !important;
    padding: 48px !important;
    max-width: 900px;
    margin: 0 auto;
}

.insurance-stats {
    margin: 40px 0 !important;
}

.stat-number {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #a855f7, #9333ea, #7e22ce) !important;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem !important;
}

/* Buttons */
.wp-block-button.btn-lg .wp-block-button__link {
    padding: 16px 32px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    border-width: 2px !important;
}

/* Color Classes */
.has-primary-color { color: #a855f7 !important; }
.has-primary-background-color { background-color: #a855f7 !important; }
.has-primary-dark-background-color { background-color: #7e22ce !important; }
.has-surface-background-color { background-color: #f8fafc !important; }
.has-white-color { color: #ffffff !important; }
.has-white-background-color { background-color: #ffffff !important; }
.has-muted-color { color: #64748b !important; }

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 100px 16px 60px;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-padding {
        padding: 60px 16px;
    }
    
    .symptoms-grid,
    .benefits-grid {
        flex-direction: column;
    }
}
