:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --text-color: #2c3e50;
    --background-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.love-letter {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.love-letter:hover {
    transform: translateY(-5px);
}

.letter-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.letter-content h2 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.promises {
    margin-bottom: 4rem;
}

.promises h2 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promise-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-10px);
}

.promise-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.moments {
    margin-bottom: 4rem;
}

.moments h2 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.moment {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.moment-date {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.reassurance {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.reassurance h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.reasons p {
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.heart-beat {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 0 auto;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.heart-beat::before,
.heart-beat::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 20px 20px 0 0;
}

.heart-beat::before {
    left: 25px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart-beat::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

footer {
    text-align: center;
    padding: 2rem;
    color: white;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .letter-content {
        font-size: 1rem;
    }
}


:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffd93d;
    --text-color: #2c3e50;
    --background-color: #1a1a2e;
    --card-bg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--background-color), #16213e);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.9);
    z-index: 1000;
    padding: 1rem 0;
}

.navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: var(--primary-color);
}

.names-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.name {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heart-divider {
    font-size: 2.5rem;
    animation: pulse 1.5s infinite;
}

.love-counter {
    margin-top: 2rem;
    color: white;
    text-align: center;
}

.daily-reminder {
    margin: 4rem 0;
}

.reminder-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-bubble {
    background: var(--card-bg);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.reason-bubble:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}

.photo-memories {
    margin: 4rem 0;
}

.memory-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.memory-placeholder {
    background: var(--card-bg);
    height: 250px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.memory-placeholder:hover {
    transform: scale(1.05);
}

.memory-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.future-together {
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.countdown-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.dream-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.dream-list li {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.dream-list li:hover {
    transform: translateY(-5px);
}

.love-notes {
    margin: 4rem 0;
}

.note-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.love-note {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.love-note:hover {
    transform: translateY(-5px);
}

.floating-hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 768px) {
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .name {
        font-size: 2.5rem;
    }

    .names-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}



:root {
    --primary-color: #ffd700; /* Luxurious gold */
    --secondary-color: #ff69b4; /* Soft pink */
    --accent-color: #e5e4e2; /* Platinum */
    --text-color: #2c3e50;
    --background-color: #0a0a1a;
    --card-bg: rgba(255, 255, 255, 0.92);
    --gradient-1: linear-gradient(135deg, #000428, #004e92);
    --gradient-2: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.1));
    --glass-effect: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-1);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Modern Glassmorphism Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
}

.navigation a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

/* Luxury Names Display */
.names-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 8rem 0 4rem;
    padding: 2rem;
    background: var(--glass-effect);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.name {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modern Card Designs */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* Luxury Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

/* Premium Image Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    background: var(--glass-effect);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Luxury Countdown */
.countdown-container {
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--accent-color);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Premium Animations */
@keyframes luxury-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes golden-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    
    .names-container {
        flex-direction: column;
        gap: 1rem;
        margin: 6rem 0 3rem;
    }
    
    .navigation ul {
        padding: 0 1rem;
        gap: 1.5rem;
    }
}



/* Theme Transition */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px var(--shadow-color);
}

.theme-toggle i {
    font-size: 1.5rem;
}

/* Theme-specific styles */
[data-theme="light"] {
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Card adaptations for themes */
.card {
    background: var(--card-bg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

/* Navigation adaptations */
.navigation {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
}

/* Text adaptations */
body {
    color: var(--text-color);
    background: var(--gradient-1);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}

p {
    color: var(--text-secondary);
}

/* ... (previous styles.css code remains the same) */

/* Theme-specific animations */
@keyframes theme-transition {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.theme-transition {
    animation: theme-transition 0.3s ease;
}
