/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4B91 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.blog-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(-3deg);
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog List */
.blog-list {
    padding: 80px 0;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: -20px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Blog Detail */
.blog-detail-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4B91 100%);
    padding: 60px 0 100px;
    color: var(--white);
    text-align: center;
}

.blog-detail-header h1 {
    font-size: 2.2rem;
    max-width: 900px;
    margin: 30px auto 20px;
    line-height: 1.3;
    font-weight: 600;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-content {
    background: var(--white);
    padding: 0 0 60px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-image {
    margin: -60px auto 40px;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Improved Typography */
.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 500;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    color: #68240a;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
    position: relative;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.content-wrapper h3 {
    font-size: 1.4rem;
    margin: 30px 0 20px;
    color: var(--text-color);
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(51, 51, 51, 0.9);
    margin-bottom: 20px;
}

/* Lists */
.content-wrapper ul {
    margin: 25px 0;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    list-style: none;
}

.content-wrapper ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.content-wrapper ul li:last-child {
    margin-bottom: 0;
}

.content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Stats Section */
.couple-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.stat {
    background: var(--light-bg);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
}

.stat .number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Footer Styles */
.footer {
    background: var(--text-color);
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Navigation Fixes */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 15px;
        width: 200px;
        background: var(--white);
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links ul {
        flex-direction: column;
        gap: 8px;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.2s ease;
        color: var(--text-color);
        text-decoration: none;
        width: 100%;
    }

    .nav-links a:hover {
        background: var(--light-bg);
    }

    .nav-links .sign-up-btn {
        background: var(--gradient);
        color: var(--white);
        margin-top: 8px;
    }

    .nav-links .sign-up-btn:hover {
        opacity: 0.9;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Logo link style */
    .logo-text a {
        color: inherit;
        text-decoration: none;
    }

    /* Blog Header Mobile Adjustments */
    .blog-header {
        padding: 100px 0 60px;
    }

    .blog-header h1 {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .blog-header p {
        font-size: 1.1rem;
        padding: 0 25px;
    }

    .blog-header::after {
        bottom: -30px;
        height: 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .blog-detail-header {
        padding: 50px 0 80px;
    }

    .blog-detail-header h1 {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .featured-image {
        margin: -40px 15px 30px;
        padding-top: 15px;
    }

    .lead {
        font-size: 1.1rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
        margin: 40px 0 20px;
        padding-bottom: 12px;
    }

    .content-wrapper h3 {
        font-size: 1.3rem;
        margin: 25px 0 15px;
    }

    .content-wrapper ul {
        padding: 20px;
        margin: 20px 0;
    }

    .content-wrapper ul li {
        font-size: 1rem;
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .couple-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .app-buttons {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .blog-detail-header h1 {
        font-size: 1.5rem;
    }

    .content-wrapper h2 {
        font-size: 1.3rem;
    }

    .content-wrapper h3 {
        font-size: 1.2rem;
    }

    .content-wrapper ul {
        padding: 15px;
    }

    .lead {
        font-size: 1.05rem;
    }
}

/* More Stories Section */
.more-stories {
    background: var(--light-bg);
    padding: 80px 0;
}

.more-stories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Article CTA */
.article-cta {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4B91 100%);
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.article-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
}

.article-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.article-cta .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .article-cta {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .article-cta h3 {
        font-size: 1.4rem;
    }

    .article-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .article-cta .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
} 