@font-face {
    font-family: 'Classy Coiffeur';
    src: url('Classy-Coiffeur-Light.ttf.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Flabbergast';
    src: url('https://www.guillermo-iris.com/_next/static/media/057a6f08e1c2e60b-s.p.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #3A4D39;    /* Dark sage green */
    --secondary-color: #739072;   /* Medium sage green */
    --accent-color: #4F6F52;     /* Forest green */
    --background-color: rgba(88, 129, 87, 0.1);  /* Light sage green with transparency */
    --text-color: #2C3639;       /* Deep forest gray */
    --overlay-color: rgba(58, 77, 57, 0.3); /* Dark sage green overlay */
    
    /* Additional accent colors for gradients and highlights */
    --accent-light: #f1ebdd;     /* Light cream */
    --accent-warm: #739072;      /* Warm sage */
    
    /* Update fonts for forest theme */
    --font-display: 'Cormorant', serif;
    --font-script: 'Flabbergast', cursive;
}

body {
    font-family: var(--font-display);
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    animation: zoomEffect 20s infinite alternate ease-in-out;
}

.background-image.placeholder {
    z-index: 1;
}

.background-image:not(.placeholder) {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.background-image:not(.placeholder).loaded {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 22vh;
    height: 100%;
    color: var(--accent-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-content h1 {
    font-family: var(--font-script);
    font-size: 6em;
    margin: 0;
    color: var(--accent-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    /* Remove gradient effect */
    -webkit-text-fill-color: initial;
    background: none;
}

.hero-content .date {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 4.5em;
    margin: 15px 0;
    letter-spacing: 3px;
    color: var(--accent-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.hero-content .location {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 3em;
    letter-spacing: 1px;
    color: var(--accent-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,1);
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    padding: 8px 20px;
    margin: 0 5px;
    border: 2px solid white;
    border-radius: 25px;
    background-color:  #739072a9; 
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 1.1em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.lang-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
}

h2::before, h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--secondary-color) 30%,
        var(--secondary-color) 70%,
        transparent
    );
    opacity: 0.7;
}


.info-card, .schedule-card, .travel-info {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
}
/* 
.info-card:hover {
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
} */

h3 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    letter-spacing: 1px;
}

.schedule-card ul {
    list-style-type: none;
    padding: 0;
}

.schedule-card li {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: var(--text-color);
}

footer {
    text-align: center;
    padding: 60px 20px;
    margin-top: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    font-family: var(--font-script);
    font-size: 1.5em;
}

/* Photo gallery section */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    margin: 0.1rem;
    margin-bottom: 1rem;
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5em;
    }

    .language-selector {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 10px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }
} 

/* Add these new styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(115, 144, 114, 0.1); /* Subtle sage border */
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    margin: 0.5rem 0;
    font-family: var(--font-display);
    font-weight: 500;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.timeline-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(115, 144, 114, 0.2);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-item .time {
    min-width: 120px;
    font-weight: 500;
    color: var(--primary-color);
    margin-right: 2rem;
}

.travel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.travel-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.travel-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(161, 198, 234, 0.1);
}

.travel-info li:last-child {
    border-bottom: none;
}

.travel-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.travel-info a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .travel-info {
        padding: 0 1rem;
    }
}

.travel-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-5px);
}

.compact-section {
    margin: 2rem auto;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
} 

/* Update and add these styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-strip {
    gap: 1.5rem;
}

figure {
    margin-bottom: 1.5rem;
}

.photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    height: 400px;
    transition: all 0.5s ease;
}

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

.photo-item:hover {
    transform: translateY(-10px);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(58, 77, 57, 0.8);
    color: white;
    padding: 0.8rem;
    font-size: 1.1em;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

@media (min-width: 769px) {
    .photo-item:hover .photo-caption {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .photo-caption {
        font-size: 1em;
        padding: 0.6rem;
        pointer-events: none;  /* Prevent touch events from interfering */
    }
}

/* Info card styles */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card.elegant {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .content-grid {
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.6rem;
    }

    .photo-strip {
        gap: 1.5rem;
    }

    .photo-item {
        height: 350px;
    }
} 

/* What to Expect section styles */
.expect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.tradition-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.tradition-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(161, 198, 234, 0.1);
    transition: all 0.3s ease;
}

.tradition-list li:last-child {
    border-bottom: none;
}

.info-card.elegant:hover .tradition-list li {
    border-bottom-color: rgba(161, 198, 234, 0.3);
}

.menu-info {
    text-align: left;
}

.menu-info p {
    margin: 1rem 0;
}

.menu-info .highlight {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    font-style: italic;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .expect-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tradition-list li {
        padding: 0.6rem 0;
    }
} 

/* RSVP Form Styles */
.rsvp-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 2rem;
}

.rsvp-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.guest-rsvp {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-color);
}

.attendance-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0;
}

.attendance-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dietary {
    margin-top: 1rem;
}

.dietary input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-info label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info input {
    padding: 0.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.comments {
    margin: 2rem 0;
}

.comments textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    resize: vertical;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .rsvp-container {
        padding: 1rem;
    }

    .rsvp-form {
        padding: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 

/* Add these styles for the RSVP navigation button */
.rsvp-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.rsvp-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.rsvp-nav-btn {
    padding: 8px 25px;
    border: 2px solid white;
    border-radius: 25px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: pulseColors 3s infinite;
}

.rsvp-nav-btn:hover {
    animation: none;
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@keyframes pulseColors {
    0% {
        background-color: var(--primary-color);
    }
    50% {
        background-color: var(--secondary-color);
    }
    100% {
        background-color: var(--primary-color);
    }
}

@media (max-width: 768px) {
    .rsvp-nav {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translate(-50%, 20px);
    }
    
    .rsvp-nav.visible {
        transform: translate(-50%, 0);
    }
    
    .rsvp-nav-btn {
        font-size: 1em;
        padding: 10px 30px;
    }
} 

/* Travel section with tabs */
.travel-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: white;
    color: var(--text-color);
    font-family: var(--font-display);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    border: 2px solid transparent;
}

.tab-btn:hover {
    background: var(--accent-light);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--accent-light);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

@media (max-width: 768px) {
    .travel-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }
} 

/* Activities section styles */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activities-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.activities-list li {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(115, 144, 114, 0.1);
}

.activities-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 

/* Accommodation section styles */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-info {
    text-align: left;
}

.accommodation-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.accommodation-list li {
    margin: 0.5rem 0;
}

.accommodation-list a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.accommodation-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
} 

/* Add a subtle leaf pattern overlay to the hero section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBkPSJNMjUgMkMxMiAyIDIgMTIgMiAyNXMxMCAyMyAyMyAyMyAyMy0xMCAyMy0yM1MzOCAyIDI1IDJ6bTAgNDJjLTEwLjUgMC0xOS04LjUtMTktMTlTMTQuNSA2IDI1IDZzMTkgOC41IDE5IDE5LTguNSAxOS0xOSAxOXoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 2;
}

/* Add an elegant border to info cards */
.info-card.elegant {
    border: 1px solid rgba(115, 144, 114, 0.2);
    position: relative;
    overflow: hidden;
}

.info-card.elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-light), var(--secondary-color), var(--accent-light));
    opacity: 0.7;
}

/* Add decorative elements to section headings */
h2 {
    position: relative;
    display: inline-block;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
}

h2::before {
    right: -15px;
}

h2::after {
    left: -15px;
}

@media (max-width: 768px) {

}

/* Add nature-inspired hover effects to photos */
.photo-item {
    position: relative;
    transition: all 0.5s ease;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(236, 227, 206, 0) 0%,
        rgba(115, 144, 114, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.photo-item:hover::before {
    opacity: 1;
}

/* Add elegant scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add decorative dividers between sections */
section:not(:last-child)::after {
    content: '';
    display: block;
    height: 30px;
    margin: 4rem auto;
    width: 200px;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L40 0 L80 30 L120 0 L160 30 L200 0' stroke='%23739072' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Enhance the language selector buttons */
.lang-btn {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn:hover {
    background: rgba(115, 144, 114, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Add subtle animations to hero text */
.hero-content h1 {
    animation: fadeInDown 1.5s ease-out;
}

.hero-content .date {
    animation: fadeInUp 1.5s ease-out 0.5s backwards;
}

.hero-content .location {
    animation: fadeInUp 1.5s ease-out 1s backwards;
}

@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);
    }
}

/* Add nature-inspired scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--accent-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 6px;
    border: 3px solid var(--accent-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
} 

/* Add subtle pine tree pattern to info cards */
.info-card.elegant {
    border: 1px solid rgba(115, 144, 114, 0.2);
    position: relative;
    overflow: hidden;
}


/* Add mountain silhouette to the hero section overlay */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 L20 60 L40 80 L60 40 L80 70 L100 30 L100 100 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}

/* Update photo hover effect with a mountain-inspired gradient */
.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(236, 227, 206, 0) 0%,
        rgba(115, 144, 114, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Add subtle mountain pattern to scrollbar */
::-webkit-scrollbar-track {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 L10 5 L20 20' fill='%23ECE3CE' stroke='none'/%3E%3C/svg%3E");
    background-repeat: repeat-y;
}

/* Optional: Add a subtle animation to section headings on scroll */
@keyframes mountainFloat {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
    100% { transform: translateY(-50%) translateX(0); }
}

h2::before, h2::after {
    animation: mountainFloat 3s ease-in-out infinite;
}

h2::after {
    animation-delay: 1.5s;
} 

/* RSVP success message styling */
#rsvp-success {
    font-size: 2em;
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    color: var(--primary-color);
    font-family: var(--font-script);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#rsvp-success.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional animation for the form disappearing */
#rsvp-form {
    transition: opacity 0.3s ease;
}

#rsvp-form.hiding {
    opacity: 0;
} 

/* Bank details styling */
.bank-details {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(115, 144, 114, 0.2);
}

.bank-info {
    background: rgba(115, 144, 114, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.bank-info p {
    margin: 0.5rem 0;
    font-family: var(--font-display);
}

/* Make bank details more readable */
.bank-info p:last-child {
    font-family: monospace;
    font-size: 1.1em;
    letter-spacing: 1px;
    line-height: 1.8;
} 
