:root {
    --primary: #2d5a3b;
    --secondary: #4a7c59;
    --accent: #8fb996;
    --light-green: #e8f5e9;
    --dark: #1a3c27;
    --light: #f1f8e9;
    --white: #ffffff;
    --gold: #d4af37;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(45, 90, 59, 0.95);
}

.header.scrolled .logo,
.header.scrolled .nav-link {
    color: white;
}

.header.scrolled .bar {
    background-color: white;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(45, 90, 59, 0.4), rgba(45, 90, 59, 0.4)), 
                url('../img/background-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.date-badge {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-color: white;
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 15px auto;
}

.welcome-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
}

.quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.nav-card {
    background: var(--light-green);
    padding: 30px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nav-card:hover {
    transform: translateY(-10px);
    background: var(--accent);
    color: white;
}

.nav-card i {
    font-size: 2.5rem;
}

.nav-card span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Countdown Section */
.countdown {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-progress {
    max-width: 600px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 5px;
    width: 0%;
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--dark);
    color: white;
    text-align: center;
}

.closing-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: white;
    color: var(--primary);
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.music-player.playing {
    background: var(--primary);
    animation: rotate 4s linear infinite;
}

.music-player.playing .music-icon {
    color: white;
}

.music-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Music Instruction */
.music-instruction {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 90, 59, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    animation: slideDown 0.5s ease;
}

.instruction-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.instruction-content i {
    font-size: 1.2rem;
    color: var(--gold);
}

.instruction-content p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.instruction-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instruction-close:hover {
    color: var(--gold);
}

/* Couple Section */
.couple-section {
    padding: 120px 0 100px;
    background-color: white;
    position: relative;
}

.couple-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.couple {
    text-align: center;
    max-width: 350px;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: var(--light-green);
}

.couple:hover {
    transform: translateY(-10px);
}

.photo-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 8px solid var(--accent);
    box-shadow: var(--shadow);
    position: relative;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.couple:hover .photo-frame img {
    transform: scale(1.1);
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.parents {
    font-size: 1rem;
    color: #555;
    margin-top: 15px;
    font-style: italic;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.heart-divider {
    color: var(--primary);
    font-size: 3rem;
    margin: 0 20px;
    animation: pulse 2s infinite;
}

.love-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--light);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

/* Event Details */
.event-details {
    padding: 120px 0 100px;
    background-color: var(--light);
}

.events-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.event {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
    border-top: 5px solid var(--primary);
}

.event:hover {
    transform: translateY(-10px);
}

.event-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.event h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.date-time {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.location {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.event-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

.event-note p {
    color: #666;
    font-size: 0.9rem;
}

.event-protocol {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.protocol-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.protocol-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.protocol-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-green);
    border-radius: 10px;
}

.protocol-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
}

.protocol-item span {
    color: #555;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0 100px;
    background-color: white;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 90, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover {
    color: var(--accent);
}

#modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.modal-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.modal-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Maps Section */
.maps-section {
    padding: 120px 0 100px;
    background-color: var(--light);
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.location-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-green);
    border-radius: 10px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 3px;
}

.info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    margin: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.transportation-info {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.transport-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.transport-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--light-green);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-5px);
}

.transport-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.transport-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.transport-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* RSVP Section */
.rsvp-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.rsvp-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.rsvp-form-container {
    max-width: 800px;
    margin: 0 auto 80px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.rsvp-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

.form-control:focus {
    outline: 2px solid var(--gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    background: var(--gold);
    color: white;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-submit:hover {
    background: white;
    color: var(--primary);
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 30px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes pulse-number {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 90, 59, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(45, 90, 59, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 90, 59, 0);
    }
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.countdown-number.changing {
    animation: pulse-number 0.5s ease;
}

/* Floating Hearts Animation */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    color: #ff6b6b;
    font-size: 20px;
    opacity: 0;
    animation: float-heart linear infinite;
}

@keyframes float-heart {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Sparkles Animation */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle-twinkle linear infinite;
}

@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Falling Flowers Animation */
.flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flower {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: falling-flower linear infinite;
}

@keyframes falling-flower {
    0% { 
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 0.7;
    }
    90% { 
        opacity: 0.7;
    }
    100% { 
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Photos Animation */
.photo-frame-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-frame {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.3;
    animation: float-frame linear infinite;
    border: 2px solid var(--gold);
}

.floating-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float-frame {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 0.3;
    }
    90% { 
        opacity: 0.3;
    }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Travel Paths Animation */
.travel-path-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.travel-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: travel-dot linear infinite;
}

@keyframes travel-dot {
    0% { 
        transform: translate(0, 0);
        opacity: 0;
    }
    10% { 
        opacity: 0.8;
    }
    90% { 
        opacity: 0.8;
    }
    100% { 
        transform: translate(100px, 100px);
        opacity: 0;
    }
}

/* Bubbles Animation */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: bubble-float linear infinite;
}

.bubble:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

@keyframes bubble-float {
    0% { 
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% { 
        opacity: 0.6;
    }
    90% { 
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quick-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .couple-section {
        padding: 100px 0 80px;
    }
    
    .couple-container {
        flex-direction: column;
    }
    
    .photo-frame {
        width: 200px;
        height: 200px;
    }
    
    .divider {
        margin: 20px 0;
    }
    
    .heart-divider {
        font-size: 2rem;
    }
    
    .love-story {
        padding: 30px 20px;
    }
    
    .event-details {
        padding: 100px 0 80px;
    }
    
    .events-container {
        flex-direction: column;
    }
    
    .event {
        min-width: 100%;
    }
    
    .protocol-list {
        grid-template-columns: 1fr;
    }
    
    .event-protocol {
        padding: 30px 20px;
    }
    
    .gallery-section {
        padding: 100px 0 80px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-nav {
        padding: 0 10px;
    }
    
    .modal-nav button {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .maps-section {
        padding: 100px 0 80px;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .transportation-info {
        padding: 30px 20px;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .rsvp-section {
        padding: 100px 0 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .rsvp-form-container,
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .music-player {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .music-icon {
        font-size: 1.2rem;
    }
}