/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9b59b6;
    --secondary-color: #b68ccb;
    --accent-color: #d4a5d8;
    --lilac: #c8a2d0;
    --light-purple: #e8d5f2;
    --text-dark: #2d1b3d;
    --text-light: #6b4f7a;
    --bg-light: #f9f5fc;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(155, 89, 182, 0.15);
    --shadow-lg: 0 15px 40px rgba(155, 89, 182, 0.25);
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #b8a5c7 0%, #e8daef 50%, #f9f5fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(142, 68, 173, 0.08) 0%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 20px;
}

.invitation-open {
    animation: fadeInUp 1s ease-out;
}

.guest-label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.9;
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    background: rgba(155, 89, 182, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(155, 89, 182, 0.5), 0 0 20px rgba(155, 89, 182, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(155, 89, 182, 0.8), 0 0 40px rgba(155, 89, 182, 0.5);
    }
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    margin: 20px 0;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-date {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.open-invitation {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.open-invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.open-invitation:hover::before {
    left: 100%;
}

.open-invitation:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.4);
}

.open-invitation i {
    margin-right: 10px;
}

/* Main Content */
.main-content {
    animation: fadeIn 0.8s ease-out;
}

/* Welcome Section */
.welcome {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 70%, rgba(232, 213, 242, 0.3) 100%);
    text-align: center;
    position: relative;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at top, rgba(155, 89, 182, 0.04), transparent);
}

.bismillah {
    margin-bottom: 40px;
}

.arabic {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.translation {
    font-style: italic;
    color: var(--text-light);
}

.welcome-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 600;
}

.welcome-message {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Section Title */
.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Couple Section */
.couple {
    padding: 80px 20px;
    background: var(--white);
}

.couple-container {
    max-width: 1000px;
    margin: 0 auto;
}

.bride-groom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.bride, .groom {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.photo-frame {
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(155, 89, 182, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.photo-frame::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(155, 89, 182, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.photo-frame:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.3), 0 0 50px rgba(155, 89, 182, 0.3);
}

.photo-frame:hover::after {
    left: 100%;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.parent-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.parent-names {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.ampersand {
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ampersand i {
    animation: heartbeat 1.5s infinite;
}

/* Love Story Section */
.love-story {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.2);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(155, 89, 182, 0.1);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-content.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* Event Details Section */
.event-details {
    padding: 80px 20px;
    background: var(--bg-light);
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(155, 89, 182, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.event-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.event-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.event-info p {
    margin: 10px 0;
    color: var(--text-light);
}

.event-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.address {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.map-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.map-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

/* Countdown */
.countdown {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 213, 242, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    box-shadow: var(--shadow-lg);
    max-width: 850px;
    margin: 0 auto;
}

.countdown h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 5px 15px rgba(155, 89, 182, 0.2);
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

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

/* RSVP Section */
.rsvp {
    padding: 80px 20px;
    background: var(--bg-light);
}

.rsvp-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.rsvp-form {
    max-width: 650px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(155, 89, 182, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    background: rgba(249, 245, 252, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.15);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.4);
}

/* Wishes */
.wishes-container {
    max-width: 800px;
    margin: 0 auto;
}

.wishes-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.wishes-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
}

.wish-item {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.wish-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.wish-status {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    background: #e8f5e9;
    color: #2e7d32;
}

.wish-status.tidak-hadir {
    background: #ffebee;
    color: #c62828;
}

.wish-message {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gift Section */
.gift {
    padding: 80px 20px;
    background: var(--white);
}

.gift-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.gift-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #9b59b6, #b68ccb, #d4a5d8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-align: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.gift-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.3);
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #8e44ad, #9b59b6, #b68ccb);
}

.bank-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.gift-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.account-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
    letter-spacing: 1px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-name {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
}

/* Closing Section */
.closing {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.closing-content {
    max-width: 700px;
    margin: 0 auto;
}

.closing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.closing-regards {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.closing-names p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.closing-names h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.footer i {
    color: #ff6b6b;
}

/* Music Control Button */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.music-control:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Scroll Animation */
.couple .bride,
.couple .groom,
.event-card,
.gallery-item,
.countdown,
.rsvp-form,
.gift-card,
.closing-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.couple .bride {
    transform: translateX(-30px);
}

.couple .groom {
    transform: translateX(30px);
}

.couple .bride.animate-visible,
.couple .groom.animate-visible,
.event-card.animate-visible,
.gallery-item.animate-visible,
.countdown.animate-visible,
.rsvp-form.animate-visible,
.gift-card.animate-visible,
.closing-content.animate-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .couple-names {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .bride-groom {
        flex-direction: column;
    }

    .ampersand {
        margin: 20px 0;
        transform: none;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding: 20px;
        padding-left: 30px;
        padding-right: 20px;
    }

    .timeline-dot {
        left: 30px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .music-control {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-date {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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