/* Articles Page Specific Styles */

/* Hero Section Styles */
.articles-hero {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/articles/online-dating-guide.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.articles-hero > * {
    position: relative;
    z-index: 2;
}

/* Article Content Images */
.article-content-image {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(215, 51, 113, 0.2);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.article-content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.3);
}

/* Article Text Sections */
.article-text-section {
    animation: fadeInUp 0.6s ease-out;
}

.article-highlight-box {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(217, 232, 231, 0.3) 100%);
    border-left: 4px solid #d73371;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.article-highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.1);
}

/* Call to Action Section */
.article-cta {
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 50%, #b8295a 100%);
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 1;
}

.article-cta > * {
    position: relative;
    z-index: 2;
}

/* Related Articles Section */
.related-articles {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
}

.related-article-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(215, 51, 113, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(215, 51, 113, 0.1);
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(215, 51, 113, 0.2);
    border-color: #d73371;
}

.related-article-image {
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-image {
    transform: scale(1.05);
}

/* Animation for scroll-in elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text styling improvements */
.article-quote {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.article-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: #d73371;
    font-family: serif;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .article-content-image {
        width: 100%;
        height: auto;
    }
    
    .articles-hero {
        padding: 2rem 0;
    }
    
    .related-articles {
        padding: 2rem 0;
    }
} 