:root {
    --primary-color: #d63384; /* Deep Pink */
    --secondary-color: #ffd700; /* Gold */
    --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-color: #333;
}

/* Music Prompt Overlay */
.music-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.music-prompt.hidden {
    display: none;
}

.music-prompt-content {
    text-align: center;
    color: white;
    animation: fadeInUp 0.5s ease-out;
}

.music-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.music-prompt-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.start-music-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #d63384, #ff6b9d);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.5);
}

.start-music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(214, 51, 132, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    min-height: 100vh;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Floating Hearts Background */
.floating-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -10vh;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: floatUp 10s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* Typography */
h1, h2, .name, .amp {
    font-family: 'Great Vibes', cursive;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    max-width: 90%;
}

.title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.couple-names {
    font-size: 4rem;
    line-height: 1.2;
    margin: 1rem 0;
    color: #c2185b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.amp {
    color: var(--secondary-color);
    font-size: 3rem;
    display: block;
    margin: 0.5rem 0;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-style: italic;
}

.scroll-btn {
    margin-top: 2rem;
    padding: 12px 30px;
    font-size: 1.1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
}

.scroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
}

/* Main Content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 2rem;
    text-align: center;
}

.message-section {
    margin-bottom: 4rem;
}

.message-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: #444;
}

.decoration {
    font-size: 2rem;
    margin-top: 1rem;
}

/* Gallery */
.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.photo-card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.photo-card:nth-child(even) {
    transform: rotate(2deg);
}

.photo-card:hover {
    transform: scale(1.05) rotate(0);
    z-index: 10;
}

.photo-placeholder {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    border-radius: 5px;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #555;
    position: relative;
    z-index: 1;
}

.children-names {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
}

/* Animations */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .couple-names {
        font-size: 3rem;
    }
    .title {
        font-size: 2.5rem;
    }
    .hero-content {
        padding: 2rem;
    }
}
