/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #0b0304;
    --card-bg: rgba(22, 6, 9, 0.65);
    --card-border: rgba(138, 18, 36, 0.25);
    --wine-dark: #2a050a;
    --wine-medium: #4a0e17;
    --crimson: #8a1224;
    --crimson-glow: #b21f35;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --text-primary: #f5e6e8;
    --text-muted: #bfa3a6;
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--wine-medium);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--crimson);
}

/* Decorative Background Glows */
.ambient-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 18, 36, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10%;
    left: -10%;
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -6s;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.15) translate(5%, 5%); opacity: 1; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--gold-glow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 30%, var(--text-muted) 70%, var(--crimson-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Pulsing Heart Emblem */
.heart-emblem {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    cursor: pointer;
}

.heart-emblem svg {
    fill: none;
    stroke: var(--crimson);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(138, 18, 36, 0.8));
    animation: heartBeat 1.8s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.12); }
    28% { transform: scale(1); }
    42% { transform: scale(1.12); }
    70% { transform: scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    margin-bottom: 8px;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    stroke-width: 1.5;
    fill: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Ambient Glow positioning adjustments */
.glow-1 {
    top: -10%;
    left: -10%;
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -6s;
}

/* Audio Player Trigger */
.audio-player-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.music-toggle-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.music-toggle-btn:hover {
    border-color: var(--crimson-glow);
    transform: scale(1.05);
}

.music-toggle-btn.playing {
    border-color: var(--gold);
    animation: musicPulse 2s infinite ease-in-out;
}

@keyframes musicPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.music-toggle-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 1.5;
}

.music-toggle-btn.playing svg {
    stroke: var(--gold);
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
}

/* Letter Section (Envelope) */
.letter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.envelope-wrapper {
    position: relative;
    width: 450px;
    height: 300px;
    margin: 40px auto;
    perspective: 1200px;
    overflow: visible;
    /* Closed: clips card peeking below, allows slight horizontal overflow for shadow */
    clip-path: inset(0px -30px 0px -30px);
    transition: clip-path 0.1s step-end;
}

/* Open: allow card to rise 500px above wrapper */
.envelope-wrapper.open {
    clip-path: inset(-500px -30px 0px -30px);
    transition: clip-path 0.1s step-start;
}

@media (max-width: 500px) {
    .envelope-wrapper {
        width: 320px;
        height: 220px;
    }
}

/* Only the envelope shell itself shows a pointer cursor */
.envelope {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3a0d14;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    z-index: 5;
    cursor: pointer;
}

.envelope::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 150px 225px 150px 0;
    border-color: transparent #431018 transparent transparent;
    z-index: 3;
    border-radius: 0 0 12px 0;
}

.envelope::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 150px 0 150px 225px;
    border-color: transparent transparent transparent #431018;
    z-index: 3;
    border-radius: 0 0 0 12px;
}

@media (max-width: 500px) {
    .envelope::before {
        border-width: 110px 160px 110px 0;
    }
    .envelope::after {
        border-width: 110px 0 110px 160px;
    }
}

.envelope-front-bottom {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 225px 160px 225px;
    border-color: transparent transparent #4f121b transparent;
    z-index: 4;
    border-radius: 0 0 12px 12px;
}

@media (max-width: 500px) {
    .envelope-front-bottom {
        border-width: 0 160px 120px 160px;
    }
}

.envelope-flap {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 160px 225px 0 225px;
    border-color: #55141d transparent transparent transparent;
    z-index: 5;
    transform-origin: top;
    transition: transform 0.4s ease 0.2s, z-index 0.2s ease 0.2s;
    border-radius: 8px 8px 0 0;
}

@media (max-width: 500px) {
    .envelope-flap {
        border-width: 120px 160px 0 160px;
    }
}

/* Wax Seal decoration */
.wax-seal {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #b21f35 0%, #8a1224 70%, #520611 100%);
    border-radius: 50%;
    top: 135px;
    left: 200px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.2);
    transition: transform 0.4s ease 0.2s, opacity 0.3s ease;
    transform-origin: center;
}

@media (max-width: 500px) {
    .wax-seal {
        top: 95px;
        left: 135px;
    }
}

.wax-seal svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    opacity: 0.9;
}

/* Inside Letter Sheet */
.letter-card {
    /* Positioned inside the envelope-wrapper, visually BEHIND the .envelope (z-index 3 < envelope z-index 5) */
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    height: 480px;
    background: #faf4eb;
    color: #2c2523;
    padding: 28px 22px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 3; /* Below envelope shell (z-index:5) when closed */
    /* Normal resting position: sits inside wrapper bounds, covered by envelope shell above */
    transform: translateY(0);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.88rem;
    line-height: 1.75;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, z-index 0.1s step-end;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Mobile: adjust padding for smaller screen */
@media (max-width: 500px) {
    .letter-card {
        top: 14px;
        left: 12px;
        right: 12px;
        height: 420px;
        font-size: 0.8rem;
        padding: 20px 16px;
    }
}

.letter-card p {
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 400;
}

.letter-card .signature {
    text-align: right;
    margin-top: 28px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--crimson);
}

/* === Open State === */
/* 1. Flap flips back */
.envelope-wrapper.open .envelope-flap {
    transform: rotateX(180deg);
    z-index: 1;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. Wax seal disappears */
.envelope-wrapper.open .wax-seal {
    transform: translate(-10px, -20px) rotate(-15deg) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* 3. Card rises above the envelope */
.envelope-wrapper.open .letter-card {
    transform: translateY(-290px);
    z-index: 20; /* Above envelope shell (z-index:5) when open */
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, box-shadow 0.5s ease, z-index 0.1s step-start;
}

/* Mobile open position: envelope is 220px tall, card travels less distance */
@media (max-width: 500px) {
    .envelope-wrapper.open .letter-card {
        transform: translateY(-210px);
    }
}

/* Custom scrollbar for letter card */
.letter-card::-webkit-scrollbar {
    width: 4px;
}
.letter-card::-webkit-scrollbar-track {
    background: transparent;
}
.letter-card::-webkit-scrollbar-thumb {
    background: rgba(138, 18, 36, 0.3);
    border-radius: 2px;
}
.letter-card::-webkit-scrollbar-thumb:hover {
    background: var(--crimson);
}


/* Adjust layout space after letter opens */
.letter-display-area {
    width: 100%;
    max-width: 600px;
    margin-top: 0;
    transition: margin 0.5s ease;
}

/* Hide helper text when envelope is open */
.envelope-wrapper.open ~ p.letter-helper-text {
    opacity: 0;
    pointer-events: none;
}

.letter-helper-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

/* Love Counter Section */
.counter-section {
    background: linear-gradient(180deg, transparent 0%, rgba(42, 5, 10, 0.4) 50%, transparent 100%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.counter-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--crimson-glow), transparent);
}

.counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--crimson-glow);
    box-shadow: 0 10px 25px rgba(138, 18, 36, 0.15);
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(245, 230, 232, 0.2);
}

.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Timeline Section */
.timeline-section {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 200px;
    bottom: 150px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--wine-medium) 0%, var(--crimson-glow) 50%, var(--wine-medium) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--bg-color);
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 10px var(--gold-glow);
    transition: var(--transition);
}

.timeline-item.revealed .timeline-dot {
    background: var(--crimson-glow);
    border-color: var(--text-primary);
    box-shadow: 0 0 15px var(--crimson-glow);
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 60px;
    }
    .timeline-dot {
        left: 30px;
    }
}

.timeline-img-side, .timeline-content-side {
    width: 45%;
}

@media (max-width: 768px) {
    .timeline-img-side, .timeline-content-side {
        width: 100%;
    }
    .timeline-img-side {
        margin-bottom: 20px;
    }
}

.timeline-img-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background: var(--card-bg);
    padding: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.timeline-img-card:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: var(--crimson-glow);
    box-shadow: 0 20px 40px rgba(138, 18, 36, 0.2);
}

.timeline-img-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.timeline-content-side {
    padding: 20px;
}

.timeline-date {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-text {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
}

/* Gallery Section (Horizontal Scroll) */
.gallery-section {
    background: linear-gradient(180deg, transparent 0%, rgba(42, 5, 10, 0.2) 100%);
    overflow: hidden;
}

.gallery-horizontal-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.gallery-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 4px 40px 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--crimson) transparent;
    -webkit-overflow-scrolling: touch; /* smooth momentum scrolling for iOS */
}

/* Custom scrollbar for gallery scroll wrapper */
.gallery-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--wine-medium);
    border-radius: 3px;
    transition: var(--transition);
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--crimson);
}

.gallery-card {
    flex: 0 0 280px; /* Snapping width on mobile */
    scroll-snap-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
}

@media (min-width: 768px) {
    .gallery-card {
        flex: 0 0 350px; /* Larger snapping width on desktop */
    }
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(138, 18, 36, 0.25);
}

.gallery-img-container {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    background: #000;
}

@media (min-width: 768px) {
    .gallery-img-container {
        height: 400px;
    }
}

.gallery-img-container img, .gallery-img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-card:hover .gallery-img-container img {
    transform: scale(1.04);
}

/* Video Card specific styles */
.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(138, 18, 36, 0.85);
    border: 1px solid var(--gold);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-badge svg {
    width: 10px;
    height: 10px;
    fill: white;
}

.gallery-phrase {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
    padding: 8px 10px 10px 10px;
    border-top: 1px solid rgba(138, 18, 36, 0.15);
    width: 100%;
    margin-top: 5px;
    transition: var(--transition);
}

.gallery-card:hover .gallery-phrase {
    color: var(--text-primary);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 2, 3, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    transform: scale(0.9);
    transition: var(--transition);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img, .lightbox-video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    outline: none;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--crimson-glow);
    transform: scale(1.1);
}

/* Quote/Message of Love Slider */
.quotes-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(138, 18, 36, 0.1) 0%, transparent 70%);
}

.quote-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 180px;
}

.quote-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.quote-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.2rem;
    }
}

.quote-author {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Footer Section */
footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(138, 18, 36, 0.15);
    background: #060102;
    position: relative;
}

footer .heart-emblem {
    margin: 0 auto 30px auto;
}

.footer-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
