:root {
    --blush: #fff5f7;
    --rose: #b76e79; /* Rose Gold/Pink */
    --rose-light: #e6b3bc;
    --white: #ffffff;
    --dark: #4a4a4a;
    --muted: #888888;
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Lora', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #f7e6ec; /* Outer background */
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.7;
}

.mobile-container {
    width: 100%; margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(183, 110, 121, 0.1);
    position: relative; overflow-x: hidden;
}

/* Colors & Backgrounds */
.text-rose { color: var(--rose); }
.text-dark { color: var(--dark); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.bg-blush { background-color: var(--blush); }
.bg-white { background-color: var(--white); }
.bg-rose { background-color: var(--rose); }

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-5 { margin-bottom: 40px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }
.p-4 { padding: 30px; }
.w-100 { width: 100%; }

/* Typography */
.title, .section-title, .connector, .arabic { font-family: var(--font-script); font-weight: 400; }
.section-title { font-size: 44px; margin-bottom: 35px; }
.section { padding: 80px 30px; position: relative; }
.container { max-width: 1000px; margin: 0 auto; }
.shadow-soft { box-shadow: 0 10px 30px rgba(183, 110, 121, 0.08); }
.round-box { border-radius: 20px; }

/* Placeholders */
.img-placeholder {
    background: #fae6ea; width: 100%; display: flex; align-items: center; justify-content: center; position: relative;
}
.img-placeholder::after { content: "♥ Image"; color: #cf9ba3; font-style: italic; font-size: 16px; }

/* Cover Overlay */
.cover-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: var(--blush); z-index: 1000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}
.cover-overlay.hide { opacity: 0; visibility: hidden; }
.floral-frame {
    position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid var(--rose-light); border-radius: 25px;
    pointer-events: none; max-width: 800px; margin: 0 auto;
}
.cover-content { text-align: center; z-index: 2; padding: 30px; }
.cover-content .title { font-size: 72px; line-height: 1.2; margin: 15px 0 40px; }
.cover-content .subtitle { font-style: italic; letter-spacing: 2px; font-size: 18px; }

/* Buttons */
.btn-romantic {
    background-color: var(--rose); color: var(--white);
    border: none; padding: 14px 40px; border-radius: 40px;
    font-size: 15px; font-family: var(--font-serif); letter-spacing: 2px;
    cursor: pointer; transition: 0.4s; text-transform: uppercase;
}
.btn-romantic:hover { background-color: #a45e68; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(183,110,121,0.3); }
.btn-romantic:active { transform: scale(0.95); }
.btn-romantic-outline {
    background-color: transparent; border: 1px solid var(--rose); color: var(--rose);
    padding: 10px 30px; border-radius: 30px; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 12px;
}
.btn-romantic-outline:hover { background-color: var(--rose); color: #fff; }
.btn-sm { padding: 10px 25px; font-size: 12px; }

.pulse-glow { animation: pulseGlow 2.5s infinite; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(183, 110, 121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0); }
}

/* Animations Scroll Reveal */
.blur-in { opacity: 0; filter: blur(10px); transform: translateY(20px); transition: all 1s ease-out; }
.fade-in-soft { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.blur-in.visible { opacity: 1; filter: blur(0); transform: translateY(0); }
.fade-in-soft.visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0; position: relative;}
.oval-frame {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; border-radius: 0; border: none; box-shadow: none;
}
.hero-img { height: 100%; width: 100%; object-fit: cover; display: block; border-radius: inherit; }
.hero-text { 
    text-align: center; z-index: 2; background: rgba(255, 245, 247, 0.85);
    padding: 50px 40px; border-radius: 20px; backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 10px 40px rgba(183,110,121,0.15);
    min-width: 300px;
}
.hero-text .title { font-size: 64px; line-height: 1.1; margin-bottom: 5px; }
.hero-text .date { letter-spacing: 3px; font-size: 16px; text-transform: uppercase; }

/* Verse */
.floral-icon { font-size: 36px; margin-bottom: 15px; opacity: 0.8; }
.arabic { font-size: 32px; line-height: 1.8; margin-bottom: 20px; }

/* Couple */
.round-border { border-radius: 50%; border: 6px solid var(--white); }
.avatar-img { width: 160px; height: 160px; margin: 0 auto 20px; object-fit: cover; object-position: top; }
.couple-card { margin-bottom: 20px; }
.couple-card .name { font-size: 32px; font-weight: normal; margin-bottom: 5px; font-style: italic; }
.connector { font-size: 60px; margin: 15px 0; opacity: 0.6; }

/* Timeline */
.romantic-timeline { position: relative; }
.romantic-timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: var(--rose-light);
}
.timeline-box {
    background: var(--white); margin-left: 60px; padding: 25px;
    border-radius: 20px; margin-bottom: 30px; position: relative;
}
.timeline-box .year {
    position: absolute; left: -60px; top: 15px;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
    border: 2px solid var(--white);
}
.timeline-box h5 { font-size: 22px; font-style: italic; margin-bottom: 8px; color: var(--rose); }

/* Events */
.countdown-soft {
    display: flex; justify-content: center; gap: 20px; margin-bottom: 50px;
    background: var(--white); padding: 20px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.08); max-width: 500px; margin-left: auto; margin-right: auto;
}
.countdown-soft .time { text-align: center; }
.countdown-soft span { display: block; font-size: 28px; font-family: var(--font-serif); }
.countdown-soft small { font-size: 13px; text-transform: lowercase; font-style: italic; }

.event-card { padding: 45px 30px; border-radius: 20px; margin-bottom: 25px; }
.ring-icon { font-size: 40px; margin-bottom: 20px; opacity: 0.8;}
.event-card h4 { font-family: var(--font-script); font-size: 42px; margin-bottom: 15px; font-weight: normal; }
.location { font-size: 15px; margin-top: 5px; }

/* Gallery */
.soft-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.s-item { border-radius: 20px; aspect-ratio: 1/1; width: 100%; height: 100%; object-fit: cover; display: block; }
.s-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

/* Form & Inputs */
.bank-card { padding: 35px; border-radius: 20px; margin: 0 auto; max-width: 450px;}
.input-soft {
    width: 100%; padding: 15px 20px; margin-bottom: 20px;
    border: 1px solid var(--rose-light); border-radius: 12px;
    background: var(--blush); font-family: var(--font-serif);
    color: var(--dark); transition: 0.3s; font-size: 15px;
}
.input-soft:focus { outline: none; border-color: var(--rose); background: var(--white); box-shadow: 0 0 10px rgba(183,110,121,0.1); }

/* Footer */
.footer { padding: 80px 20px; }
.footer .title { font-size: 50px; }
.created-by { font-size: 14px; letter-spacing: 1px; }

/* Hidden utility */
.hidden { display: none; }

/* Music Player */
.music-player {
    position: fixed; bottom: 30px; right: 30px;
    width: 55px; height: 55px;
    background-color: var(--white); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.2);
    z-index: 999; cursor: pointer; font-size: 20px; border: 1px solid var(--rose-light);
}
.record-anim { animation: float 3s ease-in-out infinite; animation-play-state: paused; }
.record-anim.playing { animation-play-state: running; }
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* =========================================
   DESKTOP RESPONSIVENESS (Phase 2 Additions)
   ========================================= */
@media (min-width: 768px) {
    .section { padding: 120px 40px; }
    
    .hero-text { padding: 60px 80px; min-width: 500px; }
    .hero-text .title { font-size: 80px; }
    
    /* Couple Layout */
    .couple-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    .couple-card { margin-bottom: 0; }
    .connector { font-size: 80px; margin: 0; }
    .avatar-img { width: 180px; height: 180px; }
    
    /* Timeline Grid */
    .romantic-timeline {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .romantic-timeline::before { display: none; }
    .timeline-box { margin-left: 0; margin-bottom: 0; text-align: center; }
    .timeline-box .year { position: static; margin: 0 auto 15px auto; }
    
    /* Events */
    .events-wrapper {
        display: flex;
        justify-content: center;
        gap: 40px;
    }
    .event-card { flex: 1; max-width: 450px; margin-bottom: 0; margin-top: 0 !important; }
    
    /* Gallery Desktop */
    .soft-gallery { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .s-item.wide { grid-column: span 2; }
    
    /* Forms & gifts */
    .rvsp-gift-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
    }
    .gift-section { flex: 1; margin-bottom: 0 !important; }
    .rsvp-section { flex: 1; margin-top: 0 !important; }
}

@media (min-width: 1024px) {
    .container { max-width: 1100px; }
    .hero-text .title { font-size: 100px; }
}
