/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background-image: url('../images/wedding-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 254, 247, 0.65) 0%,
        rgba(245, 240, 232, 0.7) 50%,
        rgba(255, 254, 247, 0.65) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--gold-dark);
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '❋';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 10px;
}

.hero-subtitle::before {
    left: -30px;
}

.hero-subtitle::after {
    right: -30px;
}

.hero-names {
    font-family: 'Dancing Script', cursive;
    font-size: 110px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 3px 25px rgba(212, 175, 55, 0.15);
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-names .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charFadeIn 0.6s ease forwards;
    animation-delay: var(--delay);
}

.hero-names .name-ampersand .char {
    animation-delay: var(--delay);
}

@keyframes charFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: 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);
    }
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 40px;
    position: relative;
    animation: expandWidth 1s ease 1.2s both;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.hero-divider::before,
.hero-divider::after {
    content: '❋';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 12px;
    background: rgba(255, 254, 247, 0.9);
    padding: 0 8px;
}

.hero-divider::before {
    left: -15px;
}

.hero-divider::after {
    right: -15px;
}

.hero-heart {
    margin: 20px 0;
    font-size: 32px;
    color: var(--gold);
    animation: heartbeat 2s ease-in-out infinite, fadeInScale 1s ease 0.6s both;
}

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

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

.hero-date {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 5px;
    color: var(--gold-dark);
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-date i {
    font-size: 18px;
    color: var(--gold);
    opacity: 0.9;
    margin: 0 4px;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-date i:first-of-type {
    transform: rotate(0deg);
    animation-delay: 0s;
}

.hero-date i:last-of-type {
    transform: rotate(0deg);
    margin-left: 0;
    animation-delay: 1s;
}

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

.decorative-element {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    animation: floatSlow 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    animation-delay: 3s;
}

.decorative-element svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Invitation Section */
.invitation {
    background-image: url('../images/wedding-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    pointer-events: none;
}

.invitation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
}

.invitation > * {
    position: relative;
    z-index: 2;
}

.invitation .section-title {
    color: var(--gold-light);
}

.invitation-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.9;
    color: var(--gold-light);
    max-width: 750px;
    margin: 0 auto 60px;
    font-weight: 400;
    font-style: italic;
}

/* Timeline Section */
.timeline {
    background-image: url('../images/wedding-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    padding: 120px 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 254, 247, 0.92);
    pointer-events: none;
}

.timeline > * {
    position: relative;
    z-index: 2;
}

.timeline .section-title {
    margin-bottom: 60px;
    width: 100%;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
    padding: 0 60px;
}

.timeline-item {
    background: var(--warm-beige);
    border: 2px solid var(--gold-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

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

.timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-white);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.timeline-item:hover::before {
    transform: scaleY(1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
    line-height: 1.4;
}

.timeline-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: visible;
    text-align: left;
}

.timeline-time {
    font-size: 32px;
    font-weight: 500;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    line-height: 1.3;
}

.timeline-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    font-family: 'Playfair Display', serif;
    flex: 1;
    line-height: 1.4;
}

.timeline-content {
    margin-bottom: 0;
}

.timeline-description {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--charcoal);
}

.timeline-location-icon {
    color: var(--gold);
    font-size: 18px;
}

.timeline-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.timeline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--gold);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.timeline-btn:hover {
    background: var(--gold);
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.timeline-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.timeline-btn:not(:hover) svg {
    fill: var(--gold-dark);
}

.timeline-btn:hover svg {
    fill: var(--soft-white);
}

.timeline-transportation {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transport-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.transport-option:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.transport-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.transport-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.transport-details strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 600;
}

.transport-details span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.4;
}

/* RSVP Section */
.rsvp-section {
    background-image: url('../images/wedding-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    min-height: 100vh;
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.95) 0%, rgba(255, 254, 247, 0.98) 100%);
    pointer-events: none;
}

.rsvp-section > * {
    position: relative;
    z-index: 2;
}

.rsvp-section .section-title {
    margin-bottom: 60px;
    width: 100%;
}

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

.rsvp-header {
    text-align: center;
    margin-bottom: 40px;
}

.event-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--charcoal);
    font-weight: 500;
}

.event-type .hochzeit-text {
    color: var(--gold-dark);
}

.rsvp-card {
    width: 100%;
    background: var(--soft-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 70px 60px;
    border: 2px solid var(--gold-light);
    border-radius: 12px;
    animation: fadeInUp 0.8s ease-out;
    text-align: left;
}

.rsvp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.rsvp-card label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rsvp-card input[type="text"],
.rsvp-card input[type="email"],
.rsvp-card input[type="tel"],
.rsvp-card input[type="number"],
.rsvp-card textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    background: var(--warm-beige);
    border: 1.5px solid var(--gold-light);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.rsvp-card input:focus,
.rsvp-card textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--soft-white);
}

.rsvp-card textarea {
    resize: vertical;
    min-height: 120px;
}

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

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: var(--gold);
}

.radio-option label {
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--gold);
}

.checkbox-option label {
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.event-selection-group,
.transportation-group {
    margin-top: 20px;
}

.guests-input {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guests-input input {
    width: 80px;
    text-align: center;
}

.guests-input span {
    color: var(--charcoal);
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--soft-white);
    background: var(--gold);
    border: 2px solid var(--gold);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

.submit-btn:hover {
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    text-align: center;
    padding: 60px 40px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.success-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 500;
}

.success-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.8;
}

.error-message {
    text-align: center;
    padding: 60px 40px;
    display: none;
    background: #fff5f5;
    border: 2px solid #feb2b2;
    border-radius: 12px;
    margin-top: 20px;
}

.error-message.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.error-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #c53030;
    margin-bottom: 20px;
    font-weight: 500;
}

.error-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #742a2a;
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-link i {
    font-size: 16px;
    color: var(--gold-dark);
    transition: color 0.3s ease;
}

.contact-link:hover i {
    color: var(--soft-white);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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


/* Contact Section */
.contact-section {
    background-image: url('../images/wedding-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    padding: 120px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 254, 247, 0.85) 0%,
        rgba(245, 240, 232, 0.9) 50%,
        rgba(255, 254, 247, 0.85) 100%
    );
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section > * {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-email {
    margin-top: 30px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    background: var(--soft-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-link:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.email-link i {
    font-size: 32px;
    color: var(--gold-dark);
}

.email-link:hover i {
    color: var(--charcoal);
}


/* Closing */
.closing {
    background-image: url('../images/wedding-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 60px;
    color: var(--soft-white);
    position: relative;
}

.closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    pointer-events: none;
}

.closing > * {
    position: relative;
    z-index: 2;
}

.closing-message {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: var(--gold-light);
    font-weight: 500;
    font-style: normal;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.closing-message::before,
.closing-message::after {
    content: '❋';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.4;
    font-size: 20px;
}

.closing-message::before {
    left: -40px;
}

.closing-message::after {
    right: -40px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--soft-white);
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    border-color: var(--gold);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Fade in animations */
.section {
    animation: fadeIn 0.8s ease;
}

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

.hero-content {
    animation: fadeInUp 1s ease;
}

.invitation-text {
    animation: fadeInUp 0.8s ease 0.2s both;
}

