/* Natal Chart Reading Page Styles */

.simple-hero {
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 20px 20px 10px 20px;
}

.simple-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b9413a;
    font-weight: 600;
    margin: 0;
}

/* Main Content Styles */
.consultation-content {
    padding: 10px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    color: #2c2c2c;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Analysis Areas */
.analysis-areas {
    margin-bottom: 60px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.analysis-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.analysis-item:hover {
    transform: translateY(-5px);
    background: #dad2b0;
    border-color: rgba(185, 65, 58, 0.4);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.analysis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.analysis-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.analysis-item p {
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}

.analysis-item h3 {
    font-size: 1.4rem;
    color: #b9413a;
    margin-bottom: 15px;
    font-weight: 600;
}

.analysis-item p {
    color: #2c2c2c;
    line-height: 1.6;
}

/* Reading Includes */
.reading-includes {
    background: #dad2b0;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.reading-includes h3 {
    font-size: 1.5rem;
    color: #b9413a;
    margin-bottom: 30px;
    text-align: center;
}

.includes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #dad2b0;
    border-radius: 10px;
}

.include-item i {
    color: #b9413a;
    font-size: 1.2rem;
}

.include-item span {
    color: #2c2c2c;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-section h3 {
    font-size: 2rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-item {
    background: #dad2b0;
    border-radius: 15px;
    border: 1px solid rgba(185, 65, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    gap: 20px;
    transition: all 0.3s ease;
}

.pricing-item.featured {
    border: 2px solid #b9413a;
    background: #dad2b0;
}

.pricing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.pricing-details {
    flex: 1;
}

.pricing-item h4 {
    font-size: 1.3rem;
    color: #b9413a;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-item .description {
    color: #2c2c2c;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 1.7rem;
    color: #b9413a;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    min-width: 140px;
    text-align: right;
}

@media (max-width: 768px) {
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .price {
        text-align: left;
    }
}

/* Compatibility Section */
.compatibility-section {
    margin-bottom: 60px;
}

.compatibility-section h3 {
    font-size: 2rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.compatibility-intro {
    font-size: 1.2rem;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.compatibility-item {
    background: #dad2b0;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.compatibility-item:hover {
    transform: translateY(-5px);
    background: #dad2b0;
    border-color: rgba(185, 65, 58, 0.4);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.compatibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.compatibility-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.compatibility-item h4 {
    font-size: 1.2rem;
    color: #b9413a;
    margin-bottom: 10px;
    font-weight: 600;
}

.compatibility-item p {
    color: #2c2c2c;
    line-height: 1.5;
    font-size: 0.95rem;
}

.compatibility-includes {
    background: #dad2b0;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.compatibility-includes h4 {
    font-size: 1.3rem;
    color: #b9413a;
    margin-bottom: 20px;
    text-align: center;
}

.compatibility-pricing {
    margin-bottom: 30px;
}

.compatibility-pricing h4 {
    font-size: 1.5rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.compatibility-pricing .pricing-item h5 {
    font-size: 1.1rem;
    color: #b9413a;
    margin-bottom: 10px;
    font-weight: 600;
}

.compatibility-cta {
    text-align: center;
    background: #dad2b0;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(185, 65, 58, 0.1);
}

.compatibility-cta p {
    font-size: 1.1rem;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: #dad2b0;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.cta-section p {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #b9413a, #d45a4a);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #d45a4a, #b9413a);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(185, 65, 58, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-section h2 {
        font-size: 2rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .content-wrapper p, .analysis-item p, .compatibility-item p, .cta-section p, .reading-includes p {
        text-align: justify;
    }
    
    /* Keep headings and special elements centered or left as needed */
    h1, h2, h3, h4, h5, h6, .btn, .button, .nav-link {
        text-align: inherit;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        text-align: left;
    }
    
    .pricing-item.featured {
        transform: none;
    }
    
    .pricing-item.featured:hover {
        transform: translateY(-5px);
    }
    
    .includes-list {
        grid-template-columns: 1fr;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .compatibility-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .simple-hero h1 {
        font-size: 2rem;
    }
    
    .simple-hero {
        padding: 20px 15px;
    }
    
    .consultation-content {
        padding: 15px 0;
    }
    
    .intro-section h2 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .analysis-item,
    .pricing-item,
    .reading-includes,
    .cta-section {
        padding: 20px;
    }
}
