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

:root {
    --primary-pastel: #E91E8C;
    --secondary-pastel: #4A90E2;
    --accent-pastel: #F5A623;
    --light-purple: #9B59B6;
    --light-green: #27AE60;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --text-medium: #2C2C2C;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-dark: rgba(0, 0, 0, 0.03);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFB5E8 0%, #B5DEFF 50%, #FFDFBA 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="g1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FFB5E8;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23B5DEFF;stop-opacity:0.1" /></linearGradient></defs><circle cx="200" cy="150" r="300" fill="url(%23g1)" /><circle cx="1000" cy="650" r="400" fill="url(%23g1)" /></svg>') no-repeat center center/cover;
    z-index: -1;
    opacity: 0.3;
}

/* Glassmorphism Effect */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 80px rgba(255, 181, 232, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 12px 48px 0 rgba(31, 38, 135, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(255, 181, 232, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

/* Design Switcher Banner */
.design-switcher {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.95), rgba(155, 89, 182, 0.95));
    padding: 0.5rem 2rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.design-switcher span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.switch-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.switch-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pastel);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pastel), var(--secondary-pastel));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Removed floating shapes for cleaner design */

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: slideInFromLeft 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    animation: slideInFromRight 1s ease 0.2s both;
}

.hero-date {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3rem;
    animation: slideInFromLeft 1s ease 0.4s both;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 100px;
    animation: fadeIn 1s ease 0.6s both;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 24px 0 rgba(31, 38, 135, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.countdown-item:hover {
    transform: scale(1.05) translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    box-shadow:
        0 12px 32px 0 rgba(31, 38, 135, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pastel);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-pastel);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 181, 232, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(233, 30, 140, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-medium);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    background: var(--text-medium);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* RSVP Section */
.rsvp-section {
    background: rgba(255, 255, 255, 0.3);
}

.rsvp-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid rgba(233, 30, 140, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(233, 30, 140, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-pastel);
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background: var(--primary-pastel);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--primary-pastel);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
    background: var(--light-purple);
}

.rsvp-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.3), rgba(74, 144, 226, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto 1.5rem;
    animation: successPop 0.5s ease;
    box-shadow: 0 8px 24px rgba(31, 38, 135, 0.15);
}

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

/* Events Section */
.events-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    display: none;
}

.event-card {
    margin-bottom: 2rem;
    position: relative;
    animation: fadeIn 1s ease;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 100%;
}

.event-card::before {
    display: none;
}

.event-date {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    box-shadow:
        0 8px 24px rgba(31, 38, 135, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.event-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pastel);
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 1rem;
    color: var(--text-medium);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.5rem;
}

.event-content {
    padding: 2rem;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
}

.event-time {
    color: var(--primary-pastel);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.event-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.event-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(31, 38, 135, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item .icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-pastel);
}

/* Venue Section */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.venue-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.venue-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)) !important;
    box-shadow:
        0 12px 48px 0 rgba(31, 38, 135, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(255, 181, 232, 0.2);
}

.card-icon {
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    color: var(--primary-pastel);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.venue-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-pastel);
    font-weight: 700;
}

.venue-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hotel-list {
    list-style: none;
    text-align: left;
    color: var(--text-medium);
    margin: 1rem 0;
    font-weight: 500;
}

.hotel-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.hotel-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-pastel);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
    color: var(--light-purple);
}

.schedule-info {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.footer-date {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-hashtag {
    color: var(--primary-pastel);
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

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

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

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

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-date {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        width: fit-content;
    }

    .event-day,
    .event-month {
        display: inline;
        margin: 0;
    }

    .event-month {
        font-size: 1rem;
    }

    .venue-grid {
        grid-template-columns: 1fr;
    }

    /* Removed floating shapes */
}