/**
 * Shared Styles for Personal Year Predictions 2026 Pages
 */

/* Hero Section */
.py-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.py-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.py-hero .intro {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.py-hero .key-themes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.py-hero .theme-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
    backdrop-filter: blur(10px);
}

/* Content Section */
.py-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-section {
    margin-bottom: 60px;
}

.py-section h2 {
    color: #667eea;
    font-size: 2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.py-section h3 {
    color: #a78bfa;
    font-size: 1.5em;
    margin: 30px 0 15px;
}

.py-section h4 {
    color: #ffffff;
    font-size: 1.2em;
    margin: 20px 0 10px;
}

.py-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.py-section ul,
.py-section ol {
    font-size: 1.1em;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 30px;
}

.py-section li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #667eea;
}

.highlight-box h4 {
    color: #667eea;
    margin-top: 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #2c3e50;
}

/* Timeline / Monthly Breakdown */
.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.month-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.month-card h4 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 10px;
}

.month-card p {
    font-size: 0.95em;
    margin-bottom: 0;
    color: #2c3e50;
}

/* Category Cards (Love/Career/Money sections) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.category-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #764ba2;
}

.category-card h4 {
    color: #764ba2;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.category-card ul {
    margin: 0;
    padding-left: 20px;
}

.category-card li {
    color: #2c3e50;
}

.category-card p {
    color: #2c3e50;
}

/* Spiritual Remedies Section */
.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.remedy-card {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.remedy-card h4 {
    color: #2d3436;
    margin-top: 0;
    margin-bottom: 10px;
}

.remedy-card p {
    color: #2d3436;
    margin-bottom: 0;
    font-size: 1em;
}

/* FAQ Section */
.faq-container {
    margin: 40px 0;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.faq-item h4 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
    color: #2c3e50;
}

/* Related Content Navigation */
.related-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    color: white;
}

.related-nav h3 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.nav-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.nav-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.back-to-hub {
    text-align: center;
    margin-top: 30px;
}

.back-to-hub a {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.back-to-hub a:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .py-hero {
        padding: 40px 25px;
    }

    .py-hero h1 {
        font-size: 1.8em;
    }

    .py-hero .intro {
        font-size: 1em;
    }

    .py-section h2 {
        font-size: 1.6em;
    }

    .py-section h3 {
        font-size: 1.3em;
    }

    .monthly-grid,
    .category-grid,
    .remedies-grid {
        grid-template-columns: 1fr;
    }

    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .py-hero h1 {
        font-size: 1.5em;
    }

    .py-section {
        margin-bottom: 40px;
    }

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