/* Mary & David Success Story Page Specific Styles */

/* Hero Section with Love Theme */
.love-story-hero {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.love-story-hero::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;
}

.love-story-hero > * {
    position: relative;
    z-index: 2;
}

/* Heart Animation */
@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px rgba(255, 182, 193, 0.6));
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8));
    }
}

.heart-beat {
    animation: heartbeat 2s ease-in-out infinite;
    display: inline-block;
}

/* Story Content Images */
.story-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);
}

.story-content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(215, 51, 113, 0.3);
}

/* Story Introduction Quote */
.story-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;
}

.story-intro-quote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: -0.5rem;
    font-size: 3rem;
    color: #d73371;
    font-family: serif;
    line-height: 1;
}

/* Mary's Story Section */
.mary-story-section {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(217, 232, 231, 0.4) 100%);
}

.mary-story-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mary-story-card::before {
    content: '💫';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

.mary-story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(215, 51, 113, 0.15);
    border-color: rgba(215, 51, 113, 0.2);
}

/* David's Story Section */
.david-story-section {
    background: rgba(255, 255, 255, 1);
}

.david-story-card {
    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;
}

.david-story-card::after {
    content: '🎨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Online Connection Section */
.online-connection-section {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.online-connection-section::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;
}

.online-connection-section > * {
    position: relative;
    z-index: 2;
}

.connection-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;
}

.connection-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.connection-quote {
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* First Date Section */
.first-date-section {
    background: rgba(255, 255, 255, 1);
}

.first-date-card {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.first-date-card::after {
    content: '🎨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.6;
}

.first-date-quote {
    border-left: 4px solid #d73371;
    padding-left: 1rem;
    position: relative;
}

/* Love Blossomed Section */
.love-blossomed-section {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(217, 232, 231, 0.4) 100%);
}

.love-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(215, 51, 113, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.love-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(215, 51, 113, 0.15);
}

.couple-quote {
    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;
}

.wedding-announcement {
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 50%, #b8295a 100%);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wedding-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 1;
}

.wedding-announcement > * {
    position: relative;
    z-index: 2;
}

/* Advice Section */
.advice-section {
    background: linear-gradient(135deg, #b8295a 0%, #d73371 50%, #e24a7a 100%);
    position: relative;
    overflow: hidden;
}

.advice-section::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;
}

.advice-section > * {
    position: relative;
    z-index: 2;
}

.advice-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;
}

.advice-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 */
.story-cta {
    background: linear-gradient(135deg, #d73371 0%, #e24a7a 50%, #b8295a 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.story-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;
}

.story-cta > * {
    position: relative;
    z-index: 2;
}

/* Related Articles Section */
.related-resources {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(240, 244, 255, 0.8) 100%);
}

/* Special text highlights */
.disability-highlight {
    color: #d73371;
    font-weight: 600;
}

.time-highlight {
    background: linear-gradient(135deg, rgba(215, 51, 113, 0.1) 0%, rgba(226, 74, 122, 0.1) 100%);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-weight: 600;
    color: #b8295a;
}

/* Emotional quotes styling */
.emotional-quote {
    position: relative;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 1rem 0;
}

.emotional-quote::before {
    content: '💕';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Author citations */
.quote-author {
    font-style: normal;
    font-weight: 600;
    color: #d73371;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .story-content-image {
        width: 100%;
        height: auto;
    }
    
    .love-story-hero {
        padding: 2rem 0;
    }
    
    .mary-story-card::before,
    .david-story-card::after,
    .first-date-card::after {
        display: none;
    }
    
    .heart-beat {
        font-size: 2rem;
        margin-left: 0.5rem;
    }
    
    .story-intro-quote::before {
        font-size: 2rem;
        top: 0;
    }
    
    .advice-card,
    .connection-card {
        margin-bottom: 1rem;
    }
} 