/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-awd0xfhgbz],
.components-reconnect-repeated-attempt-visible[b-awd0xfhgbz],
.components-reconnect-failed-visible[b-awd0xfhgbz],
.components-pause-visible[b-awd0xfhgbz],
.components-resume-failed-visible[b-awd0xfhgbz],
.components-rejoining-animation[b-awd0xfhgbz] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-retrying[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-failed[b-awd0xfhgbz],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-awd0xfhgbz] {
    display: block;
}


#components-reconnect-modal[b-awd0xfhgbz] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-awd0xfhgbz 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-awd0xfhgbz 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-awd0xfhgbz 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-awd0xfhgbz]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-awd0xfhgbz 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-awd0xfhgbz {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-awd0xfhgbz {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-awd0xfhgbz {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-awd0xfhgbz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-awd0xfhgbz] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-awd0xfhgbz] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-awd0xfhgbz] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-awd0xfhgbz] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-awd0xfhgbz] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-awd0xfhgbz] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-awd0xfhgbz 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-awd0xfhgbz] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-awd0xfhgbz {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Index.razor.rz.scp.css */
/* Defines where to get background image */
.image-background[b-rd0wbn08vu] {
    position: relative;
    min-height: 100vh;
    background-image: url("images/wideshot.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for darkening */
.overlay[b-rd0wbn08vu] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Centers page content */
.landing-content[b-rd0wbn08vu] {
    position: relative;
    z-index: 1;
    height: 100vh;           /* Sets the container height to the full viewport height */
    width: 100vw;            /* Sets the container width to the full viewport width */
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

.landing-content h1[b-rd0wbn08vu] {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.landing-content p[b-rd0wbn08vu] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
/* /Components/Pages/Invitation.razor.rz.scp.css */
.portrait-image[b-yyldi6g6d9] {
    max-height: 75vh;
    max-width: 90vw;
    object-fit: contain;
}
/* /Components/Pages/RSVP.razor.rz.scp.css */
/* RSVP CARD */
.card[b-v6i6cfjhft] {
    background: rgba(255, 255, 255, 0); /* transparent */
    padding: 0rem 0rem 2rem 0rem;
    display: flex;
    margin: auto;
    border-style: none;
    width: 80%;
}

.card label[b-v6i6cfjhft] {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    padding-left: 1rem;
}

[b-v6i6cfjhft] .input-field {
    width: 100%;
    background-color: transparent;
    color: black;
    border: 2px solid black;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

    /* Vendor prefixes for cross-browser compatibility */
    appearance: none;
    -webkit-appearance: none; /* For Chrome, Safari, Edge, Opera, iOS */
    -moz-appearance: none;    /* For Firefox */
}

[b-v6i6cfjhft] .input-field::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

[b-v6i6cfjhft] .input-field:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

[b-v6i6cfjhft] .input-field:focus {
  background-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

/* Custom arrow using wrapper */
[b-v6i6cfjhft] .input-field-wrapper {
  position: relative;
  width: 100%;
}

[b-v6i6cfjhft] .input-field-wrapper::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: black;
}

button.primary[b-v6i6cfjhft] {
    margin-top: 1.75rem;
    background-color: transparent;
    color: black;
    border: 2px solid black;
    border-radius: 999px;          /* fully rounded sides */
    padding: 0.75rem 1.2rem;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    width: 100%;
}

button.primary:hover[b-v6i6cfjhft] {
    background-color: rgba(0, 0, 0, 0.08); /* less transparent on hover */
}
/* /Components/Pages/Schedule.razor.rz.scp.css */
/* SCHEDULE GRID */
.schedule-grid[b-uv4ty8orzc] {
    display: grid;
    gap: 2rem;
    width: 50%;
    grid-template-rows: repeat(auto-fit, 1fr);
}

/* CARD */
.schedule-card[b-uv4ty8orzc] {
    background: none;
    overflow: hidden;
    padding-bottom: 1.5rem;
}

/* TEXT */
.schedule-card h3[b-uv4ty8orzc] {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    color: #333;
}

.schedule-card .time[b-uv4ty8orzc] {
    font-weight: 600;
    color: #b38b59;
    margin: 0.5rem 0;
}

.schedule-card p[b-uv4ty8orzc] {
    padding: 0 0rem;
    color: #555;
}
/* /Components/Pages/WhereToStay.razor.rz.scp.css */
.pdf-container[b-wwrakorg4w] {
    width: 100%;
    height: 75vh;
    margin-top: 1rem;
}

.pdf-frame[b-wwrakorg4w] {
    width: 100%;
    height: 100%;
    border: none;
}
