:root {
    --rsvp-bg: #ffffff;
    --rsvp-text: var(--text, #1a1a1a);
    --input-bg: #f9f9f9;
    --input-border: rgba(0,0,0,0.15);
    --input-text: var(--text, #1a1a1a);
    --input-placeholder: rgba(0,0,0,0.4);
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8960c;
    --cream: #faf8f5;
    --dark: #2c2c2c;
    --rose: #e8c4c4;
    --burgundy: #722f37;
    --cover-bg: var(--bg, #fff);
}
﻿@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

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



body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    overflow-x: hidden;
}

/* ===== COVER PAGE ===== */
.cover-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 1s ease;
}

.cover-page.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
}

.cover-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.3);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cover-card::before,
.cover-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
}

.cover-card::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.cover-card::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.cover-ornament {
    position: absolute;
    font-size: 30px;
    color: var(--gold);
    opacity: 0.6;
}

.cover-ornament.top-left { top: -20px; left: -20px; }
.cover-ornament.top-right { top: -20px; right: -20px; }
.cover-ornament.bottom-left { bottom: -20px; left: -20px; }
.cover-ornament.bottom-right { bottom: -20px; right: -20px; }

.cover-label {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cover-title {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.cover-and {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: var(--gold);
    margin: 10px 0;
}

.cover-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 30px 0;
    line-height: 1.8;
}

.cover-guest {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
}

.cover-guest-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.cover-guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.cover-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border: none;
    padding: 15px 50px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cover-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.cover-btn i {
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.show {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-label {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-names {
    font-family: 'Great Vibes', cursive;
    font-size: 70px;
    color: #fff;
    margin: 20px 0;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-and {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    color: var(--gold);
    display: block;
    margin: 10px 0;
}

.hero-date {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-light);
    letter-spacing: 5px;
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    color: var(--burgundy);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

/* ===== COUPLE SECTION ===== */
.couple-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}

.couple-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.couple-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 350px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gold-light);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.couple-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.couple-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold));
    border-radius: 22px;
    z-index: -1;
}

.couple-photo-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
}

.couple-photo-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.couple-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.couple-name {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.couple-child {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.couple-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.couple-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.couple-social a:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
}

.countdown-section .section-title {
    color: #fff;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 30px 20px;
    min-width: 120px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
    letter-spacing: 2px;
}

/* ===== EVENT SECTION ===== */
.event-section {
    background: var(--cream);
}

.event-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    width: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.event-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
}

.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: #fff;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.event-date {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-time {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.event-location {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--burgundy), #5a252b);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-maps-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    overflow: hidden;
}

/* Gallery grid removed for Swiper */

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item.animate {
    transform: scale(1);
    opacity: 1;
}

.gallery-item:nth-child(2n) {
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(3n) {
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* ===== RSVP SECTION ===== */
.rsvp-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
}

.rsvp-section .section-title {
    color: #fff;
}

.rsvp-container {
    max-width: 700px;
    margin: 0 auto;
}

.rsvp-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select option {
    background: var(--dark);
    color: #fff;
}

.attendance-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.attendance-option {
    flex: 1;
    min-width: 150px;
}

.attendance-option input {
    display: none;
}

.attendance-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.attendance-option input:checked + label {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--dark);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 15px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Comments Display */
.comments-container {
    margin-top: 50px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.comments-container::-webkit-scrollbar {
    width: 5px;
}

.comments-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.comments-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.comment-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid var(--gold);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-name {
    font-weight: 600;
    color: var(--gold);
}

.comment-attendance {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
}

.comment-message {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.comment-date {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

/* ===== GIFT SECTION ===== */
.gift-section {
    background: var(--cream);
}

.gift-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gift-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

.gift-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--burgundy), #5a252b);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fff;
}

.gift-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 20px;
}

/* ATM Card Design */
.atm-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.atm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.atm-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    margin-bottom: 20px;
}

.atm-bank {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.atm-number {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.atm-holder {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gift-address {
    background: #f8f6f3;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    text-align: left;
}

.gift-address-title {
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.gift-address-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.footer-thanks {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 30px;
}

.footer-names {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 40px;
}

.footer-contact {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.footer-contact-title {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.footer-portfolio {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-portfolio-text {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-portfolio-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-portfolio-link:hover {
    color: var(--gold-light);
}

.footer-copyright {
    margin-top: 30px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* ===== MUSIC PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.music-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.1);
}

.music-btn.playing {
    animation: musicPulse 1s infinite;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
}

/* ===== FLOATING ELEMENTS ===== */
.floating-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--rose), var(--gold-light));
    border-radius: 50% 0 50% 50%;
    animation: fall linear infinite;
    opacity: 0.6;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cover-title {
        font-size: 35px;
    }

    .cover-and {
        font-size: 28px;
    }

    .cover-card {
        padding: 40px 25px;
    }

    .hero-names {
        font-size: 45px;
    }

    .hero-and {
        font-size: 35px;
    }

    .section-title {
        font-size: 35px;
    }

    .couple-card, .event-card, .gift-card {
        width: 100%;
        max-width: 350px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 35px;
    }

    .rsvp-form {
        padding: 30px 20px;
    }

    .atm-number {
        font-size: 16px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Alert Notification */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    z-index: 3000;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.alert-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.cover-label, .cover-subtitle, .cover-guest-label, .cover-guest-name { color: var(--rsvp-text) !important; }