/* Online Dating Page Specific Styles */

/* Hero Section Styles */
.online-dating-hero {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.online-dating-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/online-dating/online-connection.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.online-dating-hero > * {
    position: relative;
    z-index: 2;
}

/* Guide Content Images */
.guide-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);
}

.guide-content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.3);
}

/* Guide Text Sections */
.guide-text-section {
    animation: fadeInUp 0.6s ease-out;
}

.guide-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;
}

.guide-highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.1);
}

/* Profile Creation Section */
.profile-creation-box {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(217, 232, 231, 0.4) 100%);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.profile-creation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 100%);
}

.profile-creation-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(215, 51, 113, 0.15);
    border-color: rgba(215, 51, 113, 0.2);
}

/* Support Section */
.support-box {
    background: linear-gradient(135deg, rgba(215, 51, 113, 0.05) 0%, rgba(226, 74, 122, 0.05) 100%);
    border: 1px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    position: relative;
}

.support-box::after {
    content: '💬';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Call to Action Section */
.guide-cta {
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 50%, #b8295a 100%);
    position: relative;
    overflow: hidden;
}

.guide-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;
}

.guide-cta > * {
    position: relative;
    z-index: 2;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

.final-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-guide-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-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(215, 51, 113, 0.2);
    border-color: #d73371;
}

.related-guide-image {
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-guide-card:hover .related-guide-image {
    transform: scale(1.05);
}

/* Animation for scroll-in elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special sections styling */
.intro-quote {
    position: relative;
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
    border-left: 4px solid #d73371;
    border-radius: 30px;
}

.intro-quote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: -0.5rem;
    font-size: 3rem;
    color: #d73371;
    font-family: serif;
    line-height: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .guide-content-image {
        width: 100%;
        height: auto;
    }
    
    .online-dating-hero {
        padding: 2rem 0;
    }
    
    .related-articles {
        padding: 2rem 0;
    }
    
    .profile-creation-box::after,
    .support-box::after {
        display: none;
    }
} 