/* Beautiful Wedding Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600&family=Great+Vibes&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    font-weight: 400;
}

/* Color Variables */
:root {
    --rose-50: #fdf2f8;
    --rose-100: #fce7f3;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
}

/* Wedding Container */
.wedding-container {
    position: relative;
    overflow-x: hidden;
}

/* Floating Hearts Animation */
.floating-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    animation: float-up linear infinite;
}

.heart-icon-float {
    width: 16px;
    height: 16px;
    color: var(--rose-200);
    opacity: 0.3;
    fill: currentColor;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 50;
    transition: transform 0.3s ease-out;
    opacity: 0.3;
}

.cursor-trail-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--rose-300);
    filter: blur(12px);
    animation: pulse 2s infinite;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: all 0.5s ease;
    border-bottom: 1px solid var(--rose-100);
}

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-heart {
    width: 20px;
    height: 20px;
    color: var(--rose-400);
    fill: currentColor;
    animation: heartbeat 2s infinite;
}

.nav-text {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #1f2937;
    font-weight: 400;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 13px;
    letter-spacing: 0.15em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.nav-link {
    position: relative;
    background: none;
    border: none;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: var(--rose-400);
}

.nav-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-400);
    transition: all 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(to right, var(--rose-400), #ec4899);
    color: white;
    padding: 10px 28px;
    border-radius: 9999px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-cta:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--rose-50), white, var(--green-50));
}

.hero-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.flower-bloom {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(48px);
    animation: bloom 8s ease-in-out infinite;
}

.bloom-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: var(--rose-200);
}

.bloom-2 {
    bottom: 128px;
    right: 80px;
    width: 160px;
    height: 160px;
    background: var(--green-200);
    animation-delay: 2s;
}

.bloom-3 {
    top: 50%;
    left: 33%;
    width: 96px;
    height: 96px;
    background: #fbb6ce;
    filter: blur(32px);
    animation-delay: 4s;
}

@keyframes bloom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.3;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 24px;
    animation: slideUp 1s ease-out;
}

.hero-heart {
    margin-bottom: 32px;
    animation: heartbeat 2s infinite;
}

.hero-heart-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    color: var(--rose-300);
    fill: currentColor;
}

.hero-title {
    letter-spacing: -0.025em;
}

.hero-heading {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 32px;
    color: #2d3748;
    letter-spacing: 0.02em;
    animation: fadeInScale 1s ease-out;
    font-weight: 400;
    line-height: 1.1;
}

.hero-divider {
    width: 96px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--rose-300), transparent);
    margin: 0 auto 24px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-family: 'Cormorant Garamond', serif;
}

.hero-comment {
    font-size: 14px;
    color: #a0aec0;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-date {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: #4b5563;
    margin-bottom: 64px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-date-text {
    font-weight: 400;
    letter-spacing: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.sparkle-icon {
    width: 16px;
    height: 16px;
    color: var(--rose-400);
}

.hero-venue {
    font-size: 16px;
    color: #a0aec0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Countdown */
.countdown-container {
    margin-bottom: 48px;
    animation: fadeInScale 1s ease-out 0.7s both;
}

.countdown-label {
    font-size: 13px;
    color: var(--rose-400);
    margin-bottom: 20px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 512px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .countdown-grid {
        gap: 24px;
    }
}

.countdown-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--rose-100);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .countdown-box {
        padding: 24px;
    }
}

.countdown-box:hover {
    transform: translateY(-4px);
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    color: var(--rose-400);
    margin-bottom: 8px;
    font-weight: 600;
    animation: countPulse 2s infinite;
}

.countdown-unit {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: #718096;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-400);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-cta:hover {
    color: var(--rose-500);
}

.chevron-icon {
    width: 20px;
    height: 20px;
}

/* Story Section */
.story-section {
    padding: 128px 24px;
    background: white;
    position: relative;
}

.story-container {
    max-width: 768px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 5rem);
    margin-bottom: 20px;
    color: #2d3748;
    animation: fadeInUp 1s ease-out;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.section-divider {
    width: 64px;
    height: 2px;
    background: var(--rose-300);
    margin: 0 auto;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.story-card {
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
}

.story-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.story-icon {
    padding: 12px;
    border-radius: 12px;
    animation: iconPulse 3s infinite;
}

.story-icon.rose {
    background: var(--rose-50);
}

.story-icon.green {
    background: var(--green-50);
}

.story-heart {
    width: 20px;
    height: 20px;
    /* fill: currentColor; */
}

.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
}

.story-title.rose {
    color: var(--rose-400);
}

.story-title.green {
    color: var(--green-600);
}

.story-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
    padding-left: 52px;
    font-family: 'Crimson Text', serif;
}

/* Details Section */
.details-section {
    padding: 128px 24px;
    background: linear-gradient(to bottom, var(--rose-50), white);
}

.details-container {
    max-width: 1280px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    border: 2px solid;
}

.ceremony-card {
    border-color: var(--rose-100);
}

.reception-card {
    border-color: var(--green-100);
}

.detail-card:hover {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.detail-icon {
    padding: 16px;
    border-radius: 16px;
    animation: iconPulse 3s infinite;
}

.detail-icon.rose {
    background: var(--rose-50);
}

.detail-icon.green {
    background: var(--green-50);
}

.detail-heart {
    width: 40px;
    height: 40px;
}

.detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #2d3748;
    font-weight: 500;
}

.detail-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #4a5568;
    font-family: 'Crimson Text', serif;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.detail-item.rose {
    background: var(--rose-50);
}

.detail-item.green {
    background: var(--green-50);
}

.detail-item:hover {
    transform: translateX(4px);
}

.detail-item-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.detail-item.rose .detail-item-icon {
    color: var(--rose-400);
}

.detail-item.green .detail-item-icon {
    color: var(--green-600);
}

.detail-item-text {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
    font-family: 'Crimson Text', serif;
}

.detail-item-sub {
    font-size: 14px;
    color: #a0aec0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Gallery Section */
.gallery-section {
    padding: 128px 24px;
    background: linear-gradient(to bottom, var(--rose-50), white);
}

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

.section-icon {
    margin-bottom: 24px;
    animation: iconPulse 3s infinite;
}

.section-icon-svg {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    color: var(--rose-400);
}

.section-subtitle {
    color: #718096;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--rose-100), #fce7f3, var(--green-100));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.7s ease;
    animation: fadeInUp 1s ease-out both;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.05) rotate(2deg);
}

.gallery-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

.gallery-camera {
    width: 64px;
    height: 64px;
    z-index: 10;
    color: #d1d5db;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* RSVP Section */
.rsvp-section {
    padding: 128px 24px;
    background: white;
}

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

.rsvp-confirm {
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(to right, var(--green-50), #d1fae5);
    border: 2px solid var(--green-200);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.5s ease-out;
}

.rsvp-confirm-text {
    color: var(--green-600);
    font-weight: 500;
    font-size: 18px;
}

.rsvp-error {
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(to right, #fef2f2, #fee2e2);
    border: 2px solid #fca5a5;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rsvp-error-text {
    color: #dc2626;
    font-weight: 500;
    font-size: 18px;
}

.rsvp-form {
    background: linear-gradient(135deg, var(--rose-50), #fce7f3, var(--rose-50));
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--rose-100);
}

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

.form-label {
    display: block;
    color: #4a5568;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Crimson Text', serif;
    color: #2d3748;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--rose-400);
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.1);
}

.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Crimson Text', serif;
}

.radio-label.selected {
    border-color: var(--rose-400);
    background: var(--rose-50);
}

.radio-input {
    margin: 0;
}

.radio-text {
    font-size: 16px;
    color: #4a5568;
    font-family: 'Crimson Text', serif;
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(to right, var(--rose-400), #ec4899);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(251, 113, 133, 0.3);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.form-submit:hover {
    box-shadow: 0 15px 35px rgba(251, 113, 133, 0.4);
    transform: translateY(-2px);
}

.form-submit.submitting {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    padding: 80px 24px;
    background: linear-gradient(to bottom, white, var(--rose-50));
    text-align: center;
}

.footer-container {
    max-width: 768px;
    margin: 0 auto;
}

.footer-heart {
    margin-bottom: 24px;
    animation: heartbeat 2s infinite;
}

.footer-heart-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    color: var(--rose-300);
    fill: currentColor;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 500;
}

.footer-divider {
    width: 64px;
    height: 2px;
    background: var(--rose-300);
    margin: 0 auto 32px;
}

.footer-text {
    color: #718096;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
    font-family: 'Crimson Text', serif;
}

.footer-info {
    color: #a0aec0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Section Visibility Animation */
.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .detail-card {
        padding: 32px;
    }
    
    .rsvp-form {
        padding: 32px;
    }
    
    .radio-group {
        flex-direction: column;
    }
}
/* Ti
meline Section */
.timeline-section {
    padding: 128px 24px;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.timeline-container {
    max-width: 1024px;
    margin: 0 auto;
}

.timeline-content {
    position: relative;
    margin-top: 80px;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--rose-200), var(--green-200), var(--rose-200));
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 64px;
    padding-left: 40px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }
.timeline-item:nth-child(6) { animation-delay: 0.5s; }
.timeline-item:nth-child(7) { animation-delay: 0.6s; }
.timeline-item:nth-child(8) { animation-delay: 0.7s; }

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
    }

    .timeline-left {
        padding-right: 48px;
        text-align: right;
    }

    .timeline-right {
        margin-left: auto;
        padding-left: 48px;
    }
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .timeline-dot {
        left: auto;
        right: -10px;
    }

    .timeline-right .timeline-dot {
        right: auto;
        left: -10px;
    }
}

.timeline-dot.rose {
    background-color: var(--rose-400);
}

.timeline-dot.green {
    background-color: var(--green-500);
}

.timeline-card {
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 2px solid;
}

.timeline-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-card.rose {
    background: linear-gradient(135deg, var(--rose-50), #fce7f3);
    border-color: var(--rose-100);
}

.timeline-card.green {
    background: linear-gradient(135deg, var(--green-50), #dcfce7);
    border-color: var(--green-100);
}

.timeline-time {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-card.rose .timeline-time {
    color: var(--rose-500);
}

.timeline-card.green .timeline-time {
    color: var(--green-600);
}

.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
}

.timeline-desc {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
}

/* Wedding Party Section */
.party-section {
    padding: 128px 24px;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.party-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.party-grid {
    display: grid;
    gap: 80px;
}

@media (min-width: 768px) {
    .party-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.party-group {
    text-align: center;
}

.party-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin-bottom: 48px;
    font-weight: 500;
}

.party-group-title.rose {
    color: var(--rose-400);
}

.party-group-title.green {
    color: var(--green-600);
}

.party-members {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.party-member {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.party-avatar {
    width: 128px;
    height: 128px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.party-avatar:hover {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.party-avatar.rose {
    background: linear-gradient(135deg, var(--rose-200), #fbb6ce);
}

.party-avatar.green {
    background: linear-gradient(135deg, var(--green-200), #86efac);
}

.party-avatar-icon {
    width: 48px;
    height: 48px;
}

.party-avatar.rose .party-avatar-icon {
    color: var(--rose-500);
}

.party-avatar.green .party-avatar-icon {
    color: var(--green-600);
}

.party-member-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}

.party-member-role {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.party-member-role.rose {
    color: var(--rose-500);
}

.party-member-role.green {
    color: var(--green-600);
}

.party-member-relation {
    color: #a0aec0;
    font-size: 14px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

/* Dress Code Section */
.dress-code-section {
    padding: 128px 24px;
    background: linear-gradient(to bottom, var(--rose-50), white);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.dress-code-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.dress-code-container {
    max-width: 1024px;
    margin: 0 auto;
}

.dress-code-theme {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--rose-400);
    margin-bottom: 64px;
    font-style: italic;
    font-weight: 500;
}

.dress-code-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .dress-code-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dress-code-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.dress-code-card:hover {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.dress-code-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3748;
    font-weight: 500;
}

.dress-code-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
    font-family: 'Crimson Text', serif;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.color-swatch {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.color-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.color-circle:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.color-circle.dusty-pink {
    background-color: #fda4af;
}

.color-circle.sage-green {
    background-color: #86efac;
}

.color-circle.blush {
    background-color: #fbb6ce;
}

.color-circle.ivory {
    background-color: #f5f5f4;
}

.color-circle.mint {
    background-color: #a7f3d0;
}

.color-name {
    font-size: 14px;
    color: #718096;
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Map Section Styles */
.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rose-50) 0%, var(--green-50) 100%);
    position: relative;
}

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

.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.map-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(251, 113, 133, 0.1);
}

.map-church-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--rose-500);
    margin-bottom: 1rem;
}

.map-address {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 500;
}

.map-description {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--rose-400), var(--rose-500));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.3);
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 113, 133, 0.4);
}

.map-button-icon {
    width: 1rem;
    height: 1rem;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(251, 113, 133, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        padding: 2rem;
    }
    
    .map-church-name {
        font-size: 1.75rem;
    }
    
    .map-embed iframe {
        height: 300px;
    }
}