/* ============================================
   MY STORY PAGE - ADDITIONAL STYLES
   ============================================ */

/* Story Hero */
.story-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.story-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.story-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
}

/* Story Content */
.story-content {
    padding: 80px 0;
    background-color: var(--white);
}

.story-body {
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 60px;
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 500;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.opening-text {
    font-family: var(--font-serif);
    font-size: 1.6rem !important;
    line-height: 1.8 !important;
    color: var(--text-primary) !important;
    font-weight: 400;
    margin-bottom: 40px !important;
    font-style: italic;
}

/* Story Pullquote */
.story-pullquote {
    margin: 80px 0;
    padding: 50px 60px;
    background-color: var(--secondary-bg);
    border-left: 5px solid var(--accent-gold);
    position: relative;
}

.story-pullquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
}

.story-pullquote blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Story Image Section */
.story-image-section {
    margin: 80px 0;
}

.story-image {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.story-image img {
    width: 100%;
    display: block;
}

/* Story Closing */
.story-closing {
    margin: 80px 0 60px;
    text-align: right;
}

.closing-signature {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 500;
}

/* Story CTA */
.story-cta {
    margin-top: 100px;
    padding: 60px;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    border-radius: 4px;
    text-align: center;
}

.story-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.story-cta > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.story-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.story-cta .social-links {
    justify-content: center;
    margin-top: 30px;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN - STORY PAGE
   ============================================ */

@media (max-width: 768px) {
    .story-hero {
        padding: 120px 0 60px;
    }
    
    .story-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-subtitle {
        font-size: 1.2rem;
    }
    
    .story-content {
        padding: 60px 0;
    }
    
    .story-section h2 {
        font-size: 1.8rem;
    }
    
    .story-section p {
        font-size: 1.05rem;
    }
    
    .opening-text {
        font-size: 1.3rem !important;
    }
    
    .story-pullquote {
        padding: 40px 30px;
        margin: 60px 0;
    }
    
    .story-pullquote blockquote {
        font-size: 1.4rem;
    }
    
    .story-pullquote::before {
        font-size: 5rem;
        top: -10px;
        left: 10px;
    }
    
    .story-image-section {
        margin: 60px 0;
    }
    
    .story-cta {
        padding: 40px 30px;
    }
    
    .story-cta h3 {
        font-size: 1.6rem;
    }
    
    .story-cta-buttons {
        flex-direction: column;
    }
    
    .story-cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .story-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-subtitle {
        font-size: 1.05rem;
    }
    
    .opening-text {
        font-size: 1.15rem !important;
    }
    
    .story-pullquote {
        padding: 30px 20px;
    }
    
    .story-pullquote blockquote {
        font-size: 1.2rem;
    }
    
    .closing-signature {
        font-size: 1.4rem;
    }
    
    .story-cta {
        padding: 30px 20px;
    }
}
