/* Classic Fairy Tale Story Page Specific Styles */

/* Inherit base styles from the main stylesheet */
@import url('../styles.css');

/* Set a background and basic typography */
/* Classic Fairy Tale Story Page Specific Styles */

/* Inherit base styles from the main stylesheet */
@import url('../styles.css');

/* Set a background and basic typography */
body {
    background-color: var(--warm-white);
    font-family: var(--font-body);
    color: var(--text-dark);
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding-top: calc(80px + var(--space-sm));
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '→';
    margin-left: var(--space-xs);
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-list a:hover {
    color: var(--secondary-purple);
}

/* Story Header */
.article-header {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--warm-white) 100%);
    padding-top: calc(80px + var(--space-2xl));
    padding-bottom: var(--space-2xl);
    text-align: center;
}

@media (max-width: 768px) {
    .article-header {
        padding-top: calc(80px + var(--space-lg));
        padding-bottom: var(--space-lg);
    }
    .article-title {
        font-size: var(--text-xl); /* Reduced from text-2xl */
    }
    .article-subtitle {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .article-header {
        padding-top: calc(80px + var(--space-md));
        padding-bottom: var(--space-md);
    }
    .article-title {
        font-size: var(--text-lg); /* Reduced from text-xl */
    }
    .article-subtitle {
        font-size: 0.6rem; /* Further reduced */
    }
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}



.article-header-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* Story Main Content */
.article-main {
    padding: var(--space-2xl) 0;
    background: white;
}

.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-lg);
    line-height: 1.8;
}

.article-content-wrapper h2 {
    color: var(--primary-navy);
    margin: var(--space-2xl) 0 var(--space-lg);
    font-size: var(--text-3xl);
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: var(--space-sm);
}

.article-content-wrapper h3 {
    color: var(--primary-navy);
    margin: var(--space-xl) 0 var(--space-md);
    font-size: var(--text-2xl);
}

.article-content-wrapper p {
    margin-bottom: var(--space-lg);
}

.article-content-wrapper ul,
.article-content-wrapper ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.article-content-wrapper li {
    margin-bottom: var(--space-sm);
}

.article-content-wrapper blockquote {
    background: var(--soft-lavender);
    border-left: 4px solid var(--secondary-purple);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
}

.story-main-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

/* Learning Goals Section */
.learning-goals {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.learning-goals h2 {
    color: var(--primary-navy);
    margin-bottom: var(--space-lg);
    font-size: var(--text-2xl);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: var(--space-sm);
}

.learning-goals ul {
    font-size: var(--text-base);
    color: var(--text-dark);
    line-height: 1.7;
    list-style-position: inside;
}

.learning-goals li {
    margin-bottom: var(--space-sm);
}

/* Social Sharing */
.social-sharing {
    background: var(--warm-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) 0;
    text-align: center;
}

.social-sharing h3 {
    color: var(--primary-navy);
    margin-bottom: var(--space-lg);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.pinterest { background: #bd081c; }
.share-btn.email { background: var(--primary-navy); }
.share-btn.whatsapp { background: #25D366; }

/* Related Articles/Stories Section */
.related-articles {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--warm-white) 100%);
    padding: var(--space-2xl) 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.related-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card-content {
    padding: var(--space-lg);
}

.related-card h3 {
    color: var(--primary-navy);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.related-card p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.related-card .read-more {
    color: var(--secondary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
}

.related-card .read-more:hover {
    text-decoration: underline;
}

/* Featured article section */
.featured-article {
    padding: var(--space-2xl) 0;
    background: white;
}

.featured-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: var(--text-lg);
}

.badge-icon {
    font-size: var(--text-xl);
}

@media (max-width: 768px) {
    .featured-badge {
        font-size: var(--text-base);
    }
    .badge-icon {
        font-size: var(--text-lg);
    }
}

/* Article card */
.article-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    max-width: 900px;
    margin: 0 auto;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.article-card.featured {
    border: 3px solid var(--accent-gold);
}

.article-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.article-image img,
.article-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-image-placeholder {
    background: linear-gradient(135deg, var(--soft-lavender), var(--warm-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-light);
}

.article-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary-navy);
    color: white;
    padding: 0.25rem var(--space-md);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
}

.article-content {
    padding: var(--space-2xl);
}

.article-content h2 {
    margin-bottom: var(--space-md);
    font-size: var(--text-3xl);
    line-height: 1.2;
}

.article-content h2 a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

.article-content h2 a:hover {
    color: var(--secondary-purple);
}

.article-excerpt {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.article-content h2 {
    margin-bottom: var(--space-md);
    font-size: var(--text-3xl);
    line-height: 1.2;
}

.article-content h2 a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

.article-content h2 a:hover {
    color: var(--secondary-purple);
}

.article-excerpt {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .article-content h2 {
        font-size: var(--text-2xl);
    }
    .article-excerpt {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .article-content h2 {
        font-size: var(--text-xl);
    }
    .article-excerpt {
        font-size: var(--text-sm);
    }
}

.read-more-btn {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-purple));
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-normal);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-navy));
}

.read-more-btn::after {
    content: '→';
    transition: var(--transition-fast);
}

.read-more-btn:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .read-more-btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-base);
    }
}

/* Hero Section for Classic Fairy Tales Index */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--warm-white) 100%);
    height: auto !important; /* Aggressive reset */
    min-height: auto !important; /* Aggressive reset */
    padding: calc(80px + var(--space-sm)) 0 calc(80px + var(--space-sm)); /* Equal top and bottom padding */
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto; /* Center the block element */
    padding: 0; /* Remove any internal padding */
    text-align: center; /* Center inline content */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0; /* Aggressive reset */
    line-height: 1.1;
    color: var(--primary-navy);
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin: 0; /* Aggressive reset */
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: calc(80px + 0.5rem) 0 0.5rem; /* Even smaller padding on mobile */
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(80px + 0.25rem) 0 0.25rem; /* Minimal padding on very small screens */
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
}

/* Final CTA Section */
.final-cta {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--warm-white) 100%);
    text-align: center;
}

.final-cta .cta-content h2 {
    color: var(--primary-navy);
    margin-bottom: var(--space-md);
    font-size: var(--text-4xl);
}

.final-cta .cta-content p {
    font-size: var(--text-xl);
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    margin: 0 auto; /* Center the button */
    display: inline-flex; /* Keep it inline-flex for icon/text alignment */
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    color: var(--primary-navy);
    font-size: var(--text-lg);
}

.badge-icon {
    font-size: var(--text-2xl);
    color: var(--accent-gold);
}

.final-cta-button {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-purple));
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-normal);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-navy));
}

.final-cta-button .cta-arrow {
    margin-left: var(--space-xs);
    transition: var(--transition-fast);
}

.final-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .final-cta .cta-content h2 {
        font-size: var(--text-3xl);
    }
    .final-cta .cta-content p {
        font-size: var(--text-lg);
    }
    .trust-badges {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .final-cta .cta-content h2 {
        font-size: var(--text-2xl);
    }
    .final-cta .cta-content p {
        font-size: var(--text-base);
    }
}