/* Dating Tips Page Specific Styles */

/* Hero Section Styles */
.dating-tips-hero {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.dating-tips-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/dating-tips/confident-dating.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.dating-tips-hero > * {
    position: relative;
    z-index: 2;
}

/* Tips Content Images */
.tips-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);
}

.tips-content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.3);
}

/* Tips Text Sections */
.tips-text-section {
    animation: fadeInUp 0.6s ease-out;
}

.tips-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;
}

.tips-highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.1);
}

/* Getting Started Section */
.getting-started-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;
}

.getting-started-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 100%);
}

.getting-started-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(215, 51, 113, 0.15);
    border-color: rgba(215, 51, 113, 0.2);
}

/* Profile Creation Section */
.profile-creation-box {
    background: linear-gradient(135deg, rgba(215, 51, 113, 0.05) 0%, rgba(226, 74, 122, 0.05) 100%);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.profile-creation-box::after {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Tip Cards */
.tip-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 100%);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 51, 113, 0.2);
    background: rgba(255, 255, 255, 1);
}

/* First Date Tips */
.first-date-tips {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.first-date-tips::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;
}

.first-date-tips > * {
    position: relative;
    z-index: 2;
}

.date-tip-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.date-tip-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.tips-cta {
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 50%, #b8295a 100%);
    position: relative;
    overflow: hidden;
}

.tips-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;
}

.tips-cta > * {
    position: relative;
    z-index: 2;
}

/* Final Message */
.final-message {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(217, 232, 231, 0.5) 100%);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.final-message::after {
    content: '💝';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.6;
}

.final-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(215, 51, 113, 0.1);
    border-color: rgba(215, 51, 113, 0.2);
}

/* Related Articles Section */
.related-articles {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
}

/* Animation for scroll-in elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special quote 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;
}

/* Icon styling for tips */
.tip-icon {
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(215, 51, 113, 0.3));
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .tips-content-image {
        width: 100%;
        height: auto;
    }
    
    .dating-tips-hero {
        padding: 2rem 0;
    }
    
    .related-articles {
        padding: 2rem 0;
    }
    
    .profile-creation-box::after,
    .final-message::after {
        display: none;
    }
    
    .tip-card,
    .date-tip-card {
        margin-bottom: 1rem;
    }
} 