/* Love Blog Page Styles */

/* Page Background */
body.blog-page {
    background: url('images/bg-blog.jpg') center top / cover no-repeat fixed !important;
}

/* Hero */
.blog-hero {
    background: linear-gradient(180deg, rgba(253, 242, 248, 0.85) 0%, rgba(245, 243, 255, 0.8) 50%, rgba(252, 231, 243, 0.75) 100%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

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

/* Blog Sections */
.blog-section {
    padding: 100px 20px;
}

.reading-pond {
    background: linear-gradient(180deg, rgba(250, 245, 255, 0.7) 0%, rgba(253, 242, 248, 0.6) 100%);
}

.pond-tales {
    background: linear-gradient(180deg, rgba(253, 242, 248, 0.6) 0%, rgba(245, 243, 255, 0.7) 100%);
}

/* Book Grid */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.book-card {
    background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 50%, #fce7f3 100%);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 70, 239, 0.1);
}

.book-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: url('images/icon-lore-optimized.png') no-repeat center;
    background-size: contain;
    opacity: 0.5;
}

.book-card:nth-child(2n) {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #ede9fe 100%);
}

.book-card:nth-child(3n) {
    background: linear-gradient(135deg, #fce7f3 0%, #f5f3ff 50%, #fdf2f8 100%);
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.18);
}

.book-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #4f46e5;
    margin-bottom: 8px;
    line-height: 1.3;
}

.book-author {
    font-size: 0.95rem;
    color: #d946ef;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-why {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    font-style: italic;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #f9a8d4;
    line-height: 1;
    opacity: 0.5;
}

.story-card:hover {
    transform: translateY(-3px);
}

.story-card.featured {
    background: linear-gradient(135deg, #fdf2f8, #f5f3ff);
    border: 2px solid rgba(217, 70, 239, 0.2);
}

.story-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.story-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1e8f5;
}

.author-name {
    font-weight: 600;
    color: #8b5cf6;
}

.author-location {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Share Story Hero CTA */
.share-story-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.12);
}

.share-story-hero h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 25px;
}

.share-story-hero p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.share-story-hero p.highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #d946ef;
    font-style: italic;
    margin: 25px 0;
}

.share-story-hero .cta-button {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .book-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .section-icon {
        width: 80px;
    }

    .blog-section {
        padding: 60px 20px;
    }
}
