/* ==================== 
   ROOT VARIABLES & RESET 
   ==================== */
:root {
    /* Primary Colors */
    --primary-pink: #ff6b9d;
    --primary-rose: #c44569;
    --primary-coral: #ff7f7f;
    --primary-purple: #9b59b6;
    --primary-lavender: #a29bfe;
    
    /* Gradient Colors */
    --gradient-romantic: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #9b59b6 100%);
    --gradient-sunset: linear-gradient(135deg, #ff7f7f 0%, #ff6b9d 50%, #c44569 100%);
    --gradient-dream: linear-gradient(135deg, #a29bfe 0%, #9b59b6 50%, #c44569 100%);
    --gradient-soft: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    
    /* Background Colors */
    --bg-primary: #fff5f7;
    --bg-secondary: #ffe4e9;
    --bg-dark: #1a0a10;
    
    /* Text Colors */
    --text-primary: #2d132c;
    --text-secondary: #6b4c5a;
    --text-light: #ffffff;
    --text-muted: #9a8b91;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(196, 69, 105, 0.15);
    --shadow-medium: 0 8px 30px rgba(196, 69, 105, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 107, 157, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-round: 50px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* ==================== 
   LOCK SCREEN STYLES 
   ==================== */
.lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-romantic);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.lock-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

/* Lock screen hearts */
.lock-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.lock-heart {
    position: absolute;
    font-size: 20px;
    animation: floatHeart 6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 1;
    }
}

.lock-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-large);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.lock-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-romantic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.lock-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(255, 107, 157, 0.2);
    }
}

.lock-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.lock-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid var(--bg-secondary);
    border-radius: var(--radius-round);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition-medium);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.toggle-password svg {
    width: 22px;
    height: 22px;
}

.toggle-password:hover {
    color: var(--primary-pink);
}

.unlock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--gradient-romantic);
    color: white;
    border-radius: var(--radius-round);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
}

.unlock-btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.unlock-btn:hover svg {
    transform: translateX(5px);
}

.error-message {
    color: var(--primary-rose);
    font-size: 0.9rem;
    min-height: 24px;
    margin-top: 10px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.hint-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* ==================== 
   MAIN WEBSITE STYLES 
   ==================== */
.main-website {
    position: relative;
}

/* Floating Hearts Animation */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 20px;
    animation: floatUp 8s linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg);
    }
}

/* ==================== 
   NAVIGATION 
   ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-rose);
}

.nav-logo .heart-icon {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-romantic);
    transition: var(--transition-medium);
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-rose);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: none;
    z-index: 999;
    box-shadow: var(--shadow-soft);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-medium);
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-pink);
}

/* ==================== 
   HERO SECTION 
   ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: var(--gradient-romantic);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-hearts {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-hearts span {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-hearts span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-hearts span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.title-line.highlight {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.hero-names .name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: white;
}

.heart-separator {
    font-size: 1.8rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.hero-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: white;
    color: var(--primary-rose);
    border-radius: var(--radius-round);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-medium);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

/* ==================== 
   SECTION HEADERS 
   ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-tag {
    color: white;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-secondary);
    color: var(--primary-rose);
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==================== 
   GALLERY SECTION 
   ==================== */
.gallery-section {
    padding: 100px 5%;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.gallery-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 300px;
}

.gallery-card {
    background: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(196, 69, 105, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

.card-heart {
    font-size: 2.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.gallery-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-rose);
}

.gallery-btn:hover {
    background: var(--gradient-romantic);
}

.gallery-btn:hover svg {
    color: white;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    background: var(--gradient-romantic);
    transform: scale(1.2);
}

/* ==================== 
   QUESTIONS SECTION 
   ==================== */
.questions-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.questions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.question-card {
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-large);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: var(--transition-medium);
}

.question-card[data-color="pink"]::before {
    background: linear-gradient(90deg, #ff6b9d, #ff8fab);
}

.question-card[data-color="purple"]::before {
    background: linear-gradient(90deg, #9b59b6, #a29bfe);
}

.question-card[data-color="coral"]::before {
    background: linear-gradient(90deg, #ff7f7f, #ffb3b3);
}

.question-card[data-color="teal"]::before {
    background: linear-gradient(90deg, #00b894, #55efc4);
}

.question-card[data-color="gold"]::before {
    background: linear-gradient(90deg, #fdcb6e, #ffeaa7);
}

.question-card[data-color="rose"]::before {
    background: linear-gradient(90deg, #c44569, #ff6b9d);
}

.question-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.question-card:hover::before {
    height: 8px;
}

.question-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.question-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.question-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.question-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-secondary);
}

/* ==================== 
   MESSAGE SECTION 
   ==================== */
.message-section {
    position: relative;
    padding: 100px 5%;
    background: var(--gradient-romantic);
    overflow: hidden;
    z-index: 2;
}

.message-bg-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    background-size: 100px;
}

.message-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.message-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-large);
    padding: 60px;
    box-shadow: var(--shadow-medium);
}

.message-decoration {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.message-decoration.left {
    top: -20px;
    left: -30px;
}

.message-decoration.right {
    bottom: -20px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.message-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-primary);
}

.message-text p {
    margin-bottom: 25px;
    text-indent: 2rem;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-signature {
    text-align: right;
    font-style: italic;
    margin-top: 30px;
}

.signature-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-style: normal;
    color: var(--primary-rose);
}

/* ==================== 
   TIMELINE SECTION 
   ==================== */
.timeline-section {
    padding: 100px 5%;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-romantic);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.timeline-item:hover .timeline-marker {
    background: var(--gradient-romantic);
    transform: translateX(-50%) scale(1.1);
}

.timeline-icon {
    font-size: 1.5rem;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    max-width: 100%;
    transition: var(--transition-medium);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-date {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bg-secondary);
    color: var(--primary-rose);
    border-radius: var(--radius-round);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-item.future .timeline-marker {
    background: var(--gradient-dream);
    border-color: var(--primary-purple);
}

.timeline-item.future .timeline-content {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.1), rgba(255, 107, 157, 0.1));
}

/* ==================== 
   FOOTER 
   ==================== */
.footer {
    background: var(--bg-dark);
    padding: 80px 5% 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-hearts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-hearts span {
    font-size: 2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-hearts span:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-hearts span:nth-child(3) {
    animation-delay: 0.6s;
}

.footer-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 40px;
}

.footer-names .heart {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== 
   ANIMATIONS 
   ==================== */
/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Animations */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ==================== 
   RESPONSIVE DESIGN 
   ==================== */
@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .questions-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-line.highlight {
        font-size: 3.5rem;
    }
    
    .hero-names .name {
        font-size: 1.5rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Gallery */
    .gallery-slide {
        flex: 0 0 85%;
        min-width: 280px;
    }
    
    /* Questions */
    .questions-container {
        grid-template-columns: 1fr;
    }
    
    .question-card {
        padding: 30px 25px;
    }
    
    /* Message */
    .message-content {
        padding: 40px 30px;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .message-decoration {
        display: none;
    }
    
    /* Timeline */
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Footer */
    .footer-title {
        font-size: 2.2rem;
    }
    
    .footer-names {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Lock Screen */
    .lock-content {
        padding: 40px 25px;
    }
    
    .lock-title {
        font-size: 1.6rem;
    }
    
    .lock-icon {
        width: 65px;
        height: 65px;
    }
    
    .lock-icon svg {
        width: 32px;
        height: 32px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 80px 15px;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .title-line.highlight {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-names {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-names .name {
        font-size: 1.3rem;
    }
    
    /* Gallery */
    .gallery-slide {
        flex: 0 0 90%;
    }
    
    .card-image {
        height: 220px;
    }
    
    /* Questions */
    .question-text {
        font-size: 1.3rem;
    }
    
    /* Message */
    .message-content {
        padding: 30px 20px;
    }
    
    .signature-name {
        font-size: 1.6rem;
    }
    
    /* Timeline */
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .timeline-marker {
        left: 25px;
        width: 45px;
        height: 45px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 1.3rem;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 5% 25px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
}
