@charset "utf-8";

/*
    Gus & Luz RSVP Stylesheet
    Author: Jose Sanchez
    Date: 2/11/2026

    Filename: gl_styles2.css
    Shared rules (reset, nav, logo, footer, language toggle, animations)
    live in gl_base.css — this file only holds RSVP-page-specific styling.
*/

/* Font Styles */
.corinthia-regular {
    font-family: var(--font-script);
    font-weight: 400;
    font-style: normal;
}

.corinthia-bold {
    font-family: var(--font-script);
    font-weight: 700;
    font-style: normal;
}

/* Slide-in groupings specific to this page */
.intro {
    opacity: 0;
    transform: translateX(40px);
    animation: slideIn 1.1s ease forwards;
}

.title, .location {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideIn 1.1s ease forwards;
}

.rsvp-container {
    opacity: 0;
    transform: translateY(40px);
    animation: slideIn 1.1s ease forwards;
}

/* Title Styles */
.title {
    text-align: center;
    padding: 0 10px;
}

.title h1 {
    font-size: 1.9rem;
}

/* Intro Styles */
.intro {
    text-align: center;
    padding: 0 2rem;
    line-height: 1.8rem;
    font-size: 1.05rem;
    color: var(--color-ink-soft);
    margin-bottom: 10px;
}

/* RSVP Styles */
.rsvp-container {
    width: 92%;
    max-width: 600px;
    margin: 0 auto 50px;
    background-color: var(--color-surface);
    border: var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    overflow: hidden;
}

.rsvp-container iframe {
    width: 100%;
    height: 1215px;
    border: none;
    border-radius: var(--radius-sm);
}
