/* Subpage Header Styles */

/* Hero sections for subpages */
.page-hero,
.calculator-hero,
.horoscope-hero,
.compatibility-hero,
.special-hero,
.knowledge-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific hero variations */
.calculator-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
}

.horoscope-hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
}

.compatibility-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
}

.knowledge-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.special-hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

/* Add subtle pattern overlay */
.page-hero::before,
.calculator-hero::before,
.horoscope-hero::before,
.compatibility-hero::before,
.special-hero::before,
.knowledge-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Page titles */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-family: 'Crimson Text', serif;
    letter-spacing: -0.02em;
}

.page-title i {
    margin-right: 0.75rem;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* Page subtitles */
.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Content sections */
.content-section,
.calculator-section,
.horoscope-section,
.compatibility-section,
.special-section,
.knowledge-section {
    padding: 4rem 0;
    background: var(--bg-color, #ffffff);
}

[data-theme="dark"] .content-section,
[data-theme="dark"] .calculator-section,
[data-theme="dark"] .horoscope-section,
[data-theme="dark"] .compatibility-section,
[data-theme="dark"] .special-section,
[data-theme="dark"] .knowledge-section {
    background: var(--dashboard-bg, #0f172a);
}

/* Section headings */
.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dashboard-text, #1e293b) !important;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Crimson Text', serif;
}

[data-theme="dark"] .section-heading {
    color: var(--dashboard-text, #f1f5f9) !important;
}

.section-heading i {
    color: var(--cosmic-violet);
    margin-right: 0.5rem;
}

/* Ensure proper text colors */
.content p,
.content-section p,
.info-section p,
.description p {
    color: var(--dashboard-text-secondary, #64748b) !important;
    line-height: 1.7;
    font-size: 1rem;
}

[data-theme="dark"] .content p,
[data-theme="dark"] .content-section p,
[data-theme="dark"] .info-section p,
[data-theme="dark"] .description p {
    color: var(--dashboard-text-secondary, #94a3b8) !important;
}

.content h2,
.content-section h2,
.info-section h2 {
    color: var(--dashboard-text, #1e293b) !important;
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

[data-theme="dark"] .content h2,
[data-theme="dark"] .content-section h2,
[data-theme="dark"] .info-section h2 {
    color: var(--dashboard-text, #f1f5f9) !important;
}

.content h3,
.content-section h3,
.info-section h3 {
    color: var(--dashboard-text, #334155) !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

[data-theme="dark"] .content h3,
[data-theme="dark"] .content-section h3,
[data-theme="dark"] .info-section h3 {
    color: var(--dashboard-text, #e2e8f0) !important;
}

/* Cards text colors */
.card h3,
.zodiac-card h3,
.calculator-card h3,
.info-card h3 {
    color: var(--dashboard-text, #1e293b) !important;
    margin-bottom: 0.75rem;
}

[data-theme="dark"] .card h3,
[data-theme="dark"] .zodiac-card h3,
[data-theme="dark"] .calculator-card h3,
[data-theme="dark"] .info-card h3 {
    color: var(--dashboard-text, #f1f5f9) !important;
}

.card p,
.zodiac-card p,
.calculator-card p,
.info-card p {
    color: var(--dashboard-text-secondary, #64748b) !important;
}

[data-theme="dark"] .card p,
[data-theme="dark"] .zodiac-card p,
[data-theme="dark"] .calculator-card p,
[data-theme="dark"] .info-card p {
    color: var(--dashboard-text-secondary, #94a3b8) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero,
    .calculator-hero,
    .horoscope-hero,
    .compatibility-hero,
    .special-hero,
    .knowledge-hero {
        padding: 80px 20px 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }
}