/* ==========================================
   ROMANTIC & LOVE LETTER AESTHETIC STYLES
   ========================================== */

/* Romantic Fonts & Typography */
.hero-script-title,
.romantic-title,
.story-title,
.signature-name,
.signature-flourish {
    font-family: var(--font-primary); /* Dancing Script */
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.05rem;
}

.hero-script-text,
.moment-story,
.story-letter p,
.romantic-subtitle {
    font-family: var(--font-secondary); /* Cormorant Garamond */
    font-style: italic;
    line-height: 2;
    font-size: 1.15rem;
    color: var(--gold-light);
}

/* Hero Letter Style */
.hero-letter {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(191, 157, 97, 0.03);
    border-left: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

.letter-date {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-script-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 30px rgba(191, 157, 97, 0.3);
}

.hero-script-text {
    margin-bottom: 2rem;
    text-align: left;
}

.hero-signature {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    margin-top: 3rem;
    text-align: right;
}

.signature-name {
    font-family: var(--font-tertiary); /* Great Vibes */
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(191, 157, 97, 0.4);
}

.hero-whisper {
    margin-top: 2rem;
    text-align: center;
}

.hero-whisper p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    opacity: 0.8;
}

/* Floating Images Around Content */
.floating-image {
    position: absolute;
    width: 300px;
    height: 400px;
    opacity: 0.4;
    z-index: 5;
    overflow: hidden;
    border: 1px solid rgba(191, 157, 97, 0.3);
}

.floating-image.left {
    left: 5%;
    top: 20%;
}

.floating-image.right {
    right: 5%;
    top: 40%;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) saturate(80%);
}

/* Recent Moments Section */
.recent-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000 0%, rgba(191, 157, 97, 0.05) 50%, #000000 100%);
}

.section-header-romantic {
    text-align: center;
    margin-bottom: 6rem;
}

.romantic-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(191, 157, 97, 0.4);
}

.romantic-subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-style: italic;
}

/* Moment Flow - Alternating Layout */
.moment-flow {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.moment-flow.reverse {
    flex-direction: row-reverse;
}

.floating-year {
    flex: 0 0 400px;
    position: relative;
}

.floating-year img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 40px rgba(191, 157, 97, 0.2);
    filter: sepia(15%);
}

.moment-content {
    flex: 1;
}

.moment-date {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(191, 157, 97, 0.3);
}

.moment-story {
    margin-bottom: 1.5rem;
}

.moment-story strong {
    color: var(--gold-primary);
    font-style: normal;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: #000000;
}

.gallery-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(191, 157, 97, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.sabrina-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) saturate(90%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-item:hover img {
    filter: sepia(0%) saturate(100%);
    transform: scale(1.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(191, 157, 97, 0.3);
}

.gallery-caption,
.gallery-caption-special {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:hover .gallery-caption-special {
    opacity: 1;
}

.gallery-caption p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    margin: 0;
    text-align: center;
}

.gallery-caption-special {
    text-align: center;
}

.gallery-caption-special h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.gallery-caption-special p {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-light);
}

/* About Section - Romantic Redesign */
.about-section-romantic {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(191, 157, 97, 0.03) 0%, #000000 100%);
}

.container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.about-flow {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.floating-portrait {
    flex: 0 0 500px;
    position: sticky;
    top: 100px;
}

.portrait-frame {
    position: relative;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 20px 60px rgba(191, 157, 97, 0.3);
    overflow: hidden;
}

.portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%);
}

.portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portrait-frame:hover .portrait-overlay {
    opacity: 1;
}

.portrait-script {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
    text-align: center;
}

.portrait-script span {
    font-family: var(--font-tertiary);
    font-size: 2.5rem;
    display: block;
    color: var(--gold-primary);
    margin-top: 0.5rem;
}

.story-content {
    flex: 1;
}

.story-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(191, 157, 97, 0.3);
}

.story-letter {
    background: rgba(191, 157, 97, 0.03);
    padding: 3rem;
    border-left: 2px solid var(--gold-primary);
    margin-bottom: 4rem;
}

.story-opening {
    font-family: var(--font-tertiary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.story-letter p {
    margin-bottom: 2rem;
}

.gold-highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

.story-closing {
    font-family: var(--font-secondary);
    font-style: italic;
    text-align: right;
    margin-top: 3rem;
}

.signature-flourish {
    font-family: var(--font-tertiary);
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
}

/* Credentials - Romantic Style */
.credentials-romantic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.credential-romantic {
    text-align: center;
    padding: 2rem;
    background: rgba(191, 157, 97, 0.05);
    border: 1px solid rgba(191, 157, 97, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-romantic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.2);
}

.credential-romantic i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.credential-romantic h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.credential-romantic p {
    font-family: var(--font-secondary);
    font-style: italic;
    line-height: 1.8;
}

/* Testimonial - Romantic Style */
.testimonial-romantic {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.1), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--gold-primary);
    padding: 3rem;
    border-radius: 10px;
    position: relative;
}

.quote-romantic {
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    z-index: 0;
}

.testimonial-romantic-text {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2;
    color: var(--gold-light);
    margin: 0 0 2rem 0;
    padding-left: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-romantic-author {
    font-family: var(--font-secondary);
    text-align: right;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.testimonial-romantic-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-top: 0.3rem;
    font-style: italic;
}

/* Responsive Romantic Styles */
@media (max-width: 1024px) {
    .floating-image {
        display: none;
    }
    
    .moment-flow {
        flex-direction: column !important;
    }
    
    .floating-year {
        flex: 1;
        max-width: 100%;
    }
    
    .about-flow {
        flex-direction: column;
    }
    
    .floating-portrait {
        flex: 1;
        max-width: 100%;
        position: relative;
        top: 0;
    }
    
    .gallery-item.large,
    .gallery-item.sabrina-feature {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-letter {
        padding: 2rem 1rem;
    }
    
    .hero-script-title {
        font-size: 2.5rem;
    }
    
    .hero-script-text {
        font-size: 1rem;
    }
    
    .romantic-title {
        font-size: 2.5rem;
    }
    
    .moment-date {
        font-size: 1.5rem;
    }
    
    .container-fluid {
        padding: 0 1.5rem;
    }
    
    .story-letter {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-romantic {
        padding: 2rem 1.5rem;
    }
    
    .credentials-romantic {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
