/* /src/App.razor.rz.scp.css */
:root[b-gr74nfqk3x] {
    --dark-pink: #e88b96;
    --pink: #f2d7df;
    --light-pink: #f5e4e9;
    --dark-green: #023229;
    --light-green: #d6e3c7;
    /*--light-blue: #d8e3f3;*/
    --light-blue: #dee6f5;
    --blue: #a2bbe1;
    --yellow: #f3ecd7;
    --light-yellow: #f7f8e9;
    --dark-grey: #171717;
}

html[b-gr74nfqk3x] {
    scroll-behavior: smooth;
}
/* /src/Layout/MainLayout.razor.rz.scp.css */
.navbar[b-7qrifmpi99] {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.page[b-7qrifmpi99] {
    display: flex;
    flex-direction: column;
    align-content: center;
    min-height: 100vh;
    background: repeating-linear-gradient( 90deg, var(--light-blue) 0, var(--light-blue) 5rem, white 5rem, white 10rem );
    background-size: 10rem 100%;
    background-position: calc(50% - 2.5rem) 0; /* The center is the middle of a white stripe */
    background-repeat: repeat;
}

.layout[b-7qrifmpi99] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content[b-7qrifmpi99] {
    position: relative;
    color: white;
    margin: 10rem 5rem;
    font-family: 'Cormorant Garamond';
    font-size: 1.5rem;
    text-align: center;
}

.footer[b-7qrifmpi99] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 13rem;
    width: 100%;
    background: white;
    padding: 1rem;
    margin-top: auto;
}

    .footer img[b-7qrifmpi99] {
        height: 100%;
    }

@media (max-width: 991px) {
    .main-content[b-7qrifmpi99] {
        margin: 8rem 0 7rem;
    }
}
/* /src/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-yjo9nz1872] {
    width: 100vw;
    height: 4rem;
    background-color: var(--blue);
    position: absolute;
    top: 0;
    left: 0;
}

.nav-item-text[b-yjo9nz1872] {
    color: white;
    font-family: 'Cormorant Garamond';
    font-size: 30px;
    letter-spacing: 4px;
}

    .nav-item-text:hover[b-yjo9nz1872] {
        font-weight: 600;
        transition: 100ms;
    }

    .nav-link.active .nav-item-text[b-yjo9nz1872] {
        font-weight: 600;
    }

.regular-nav[b-yjo9nz1872] {
    visibility: visible;
}

.mobile-nav[b-yjo9nz1872] {
    visibility: hidden;
}

/* Sub navbar for Info */
.info-nav-wrapper[b-yjo9nz1872] {
    position: relative;
}

.sub-navbar[b-yjo9nz1872] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--light-blue);
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2000;
    opacity: 0.75;
}

.info-nav-wrapper:hover .sub-navbar[b-yjo9nz1872] {
    display: flex;
    transition: 100ms;
}

.sub-nav-link[b-yjo9nz1872] {
    color: var(--dark-green);
    font-family: 'Cormorant Garamond';
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
}

    .sub-nav-link:hover[b-yjo9nz1872] {
        font-weight: 600;
    }

@media (max-width: 991px) {
    .regular-nav[b-yjo9nz1872] {
        visibility: hidden;
    }

    .mobile-nav[b-yjo9nz1872] {
        visibility: visible
    }

    .nav-item-text[b-yjo9nz1872] {
        font-size: 25px;
    }
}
/* /src/Pages/ContactInfo/ContactInfo.razor.rz.scp.css */
.columns[b-e4xfyne1wu] {
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
}
/* /src/Pages/FAQ/ExpandableFAQ.razor.rz.scp.css */
.expandable-section[b-9ws9o024fs] {
    margin-bottom: 1.5rem;
}

.expandable-section-title[b-9ws9o024fs] {
    text-align: left;
    cursor: pointer;
    width: fit-content;
}

.content[b-9ws9o024fs] {
    text-align: justify;
}

.content-wrapper[b-9ws9o024fs] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.content-wrapper.open[b-9ws9o024fs] {
    max-height: 50rem;
}

hr[b-9ws9o024fs] {
    display: none;
}

@media (max-width: 991px) {
    hr[b-9ws9o024fs] {
        display: block;
    }
}
/* /src/Pages/FAQ/FAQ.razor.rz.scp.css */
.container[b-cq8dj5jexu] {
    background: var(--blue);
    padding: 3rem 10rem;
    border-radius: 3rem;
    text-align: center;
}

ul[b-cq8dj5jexu] {
    list-style-type: disc;
}

a[b-cq8dj5jexu] {
    color: white;
}

h1[b-cq8dj5jexu] {
    font-family: 'Symphony';
    font-size: 3rem;
}

.no-bottom[b-cq8dj5jexu] {
    margin-bottom: 0;
}

.faq-item[b-cq8dj5jexu] {
    margin-bottom: 20px;
}

.faq-item__header[b-cq8dj5jexu] {
    cursor: pointer;
}

@media (max-width: 991px) {
    .container[b-cq8dj5jexu] {
        padding: 8vh 2rem;
        border-radius: 0;
        width: 100vw;
    }
}
/* /src/Pages/Home/Home.razor.rz.scp.css */
.container[b-0dxlc7g1jl] {
    position: relative;
    z-index: 3;
    padding: 0;
}

.container-regular[b-0dxlc7g1jl] {
    display: block;
}

.container-mobile[b-0dxlc7g1jl] {
    display: none;
}

.page[b-0dxlc7g1jl] {
    height: 100vh;
}

.first-info[b-0dxlc7g1jl] {
    display: flex;
    flex-direction: column;
    background: var(--blue);
    padding: 2rem 4rem;
    border-radius: 3rem;
}
    .name[b-0dxlc7g1jl] {
        font-family: 'Cormorant SC';
        font-size: 3rem;
        margin: 0;
        letter-spacing: 0.25rem;
    }

    .and-sign[b-0dxlc7g1jl] {
        font-family: 'Anaktoria';
        font-size: 2rem;
        margin: 0;
    }

    .first-info img[b-0dxlc7g1jl] {
        width: 70%;
        margin: 1rem 0;
    }

    .cursive-text[b-0dxlc7g1jl] {
        font-family: "Mrs Saint Delafield", cursive;
        font-size: 6rem;
    }

    .date[b-0dxlc7g1jl] {
        font-size: 2rem;
        letter-spacing: 0.25rem;
    }

.page-collage[b-0dxlc7g1jl] {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

    .page-collage-section[b-0dxlc7g1jl] {
        background-color: var(--blue);
        border: 1.25rem solid var(--blue);
        border-radius: 2rem;
        overflow: hidden;
    }

    .images[b-0dxlc7g1jl] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        flex: 4;
        overflow: hidden;
    }

    .images img[b-0dxlc7g1jl] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .illustrative-info[b-0dxlc7g1jl] {
        flex: 6;
        background-color: white;
        color: var(--blue);
        height: 30rem;
        padding: 0.5rem;
        letter-spacing: 0.1rem;
        font-size: 2rem;
    }

    .church-img[b-0dxlc7g1jl] {
        width: 65%;
    }

    .illustrative-info-lerflaten[b-0dxlc7g1jl] {
        display: flex;
        align-items: center;
    }

    .lerflaten-img[b-0dxlc7g1jl] {
        width: 18rem;
    }

a[b-0dxlc7g1jl] {
    color: white;
}

@media (max-width: 991px) {
    .container-regular[b-0dxlc7g1jl] {
        display: none;
    }

    .container-mobile[b-0dxlc7g1jl] {
        display: block;
    }

    .page[b-0dxlc7g1jl] {
        height: 86vh;
    }

    .first-info[b-0dxlc7g1jl] {
        padding: 2rem;
        border-radius: 0;
    }

        .name[b-0dxlc7g1jl] {
            font-size: 1.75rem;
        }

        .and-sign[b-0dxlc7g1jl] {
            font-size: 1.5rem;
        }

        .first-info img[b-0dxlc7g1jl] {
            width: 100%;
        }

        .cursive-text[b-0dxlc7g1jl] {
            font-size: 3rem;
        }

        .date[b-0dxlc7g1jl] {
            font-size: 1rem;
        }

    .page-collage-mobile[b-0dxlc7g1jl] {
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

    .church-img[b-0dxlc7g1jl] {
        width: 100%;
    }

    .lerflaten-img[b-0dxlc7g1jl] {
        width: 100%;
    }
}
/* /src/Pages/Images/Images.razor.rz.scp.css */
.images[b-zn4ufkyoxs] {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

img[b-zn4ufkyoxs] {
    width: 250px;
}
/* /src/Pages/Info/Info.razor.rz.scp.css */
.container[b-gy188nedxi] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background: var(--blue);
    padding: 3rem 10rem;
    border-radius: 3rem;
}

ul[b-gy188nedxi] {
    list-style-type: disc;
    list-style-position: inside;
    text-align: center;
    padding: 0;
}

a[b-gy188nedxi] {
    color: white;
}

.dresscode[b-gy188nedxi] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.dresscode img[b-gy188nedxi] {
    width: 100%;
}

.photographing[b-gy188nedxi] {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    text-align: justify;
}

    .photographing-img[b-gy188nedxi] {
        text-align: center;
    }

    .photographing-img img[b-gy188nedxi] {
        width: 15rem;
        border-radius: 2rem;
    }

.where[b-gy188nedxi] {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    text-align: justify;
}

    .where-church-regular[b-gy188nedxi] {
        display: block;
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

    .where-church-mobile[b-gy188nedxi] {
        display: none;
    }

        .where-church-img[b-gy188nedxi] {
            flex: 5;
            text-align: center;
        }

        .where-church-info[b-gy188nedxi] {
            flex: 5;
        }

        .where-church-img img[b-gy188nedxi] {
            width: 70%;
        }

    .where-lerflaten[b-gy188nedxi] {
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

        .where-lerflaten-img[b-gy188nedxi] {
            flex: 5;
            text-align: center;
        }

        .where-lerflaten-info[b-gy188nedxi] {
            flex: 5;
        }

        .where-lerflaten-img img[b-gy188nedxi] {
            width: 50%;
        }

.transport[b-gy188nedxi] {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    text-align: justify;
}

    .transport-first-section[b-gy188nedxi] {
        flex: 5;
    }

    .transport-second-section[b-gy188nedxi] {
        flex: 5;
    }

.hotel-content[b-gy188nedxi] {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    text-align: justify;
}

.hotel-first-section[b-gy188nedxi] {
    flex: 5;
}

.hotel-second-section[b-gy188nedxi] {
    flex: 3;
}

.no-bottom[b-gy188nedxi] {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .container[b-gy188nedxi] {
        padding: 8vh 2rem;
        border-radius: 0;
        width: 100vw;
    }

    .photographing[b-gy188nedxi] {
        flex-direction: column;
        gap: 0;
    }

    .where[b-gy188nedxi] {
        gap: 3rem;
    }

    .where-church[b-gy188nedxi] {
        flex-direction: column;
        gap: 0;
    }

    .where-church-regular[b-gy188nedxi] {
        display: none;
    }

    .where-church-mobile[b-gy188nedxi] {
        display: block;
    }

    .where-lerflaten[b-gy188nedxi] {
        flex-direction: column;
        gap: 0;
    }

    .where img[b-gy188nedxi] {
        width: 100%;
    }

    .transport[b-gy188nedxi] {
        flex-direction: column;
        gap: 2rem;
    }

    .hotel-content[b-gy188nedxi] {
        flex-direction: column;
        gap: 2rem;
    }
}
/* /src/Pages/Info/InfoBox.razor.rz.scp.css */
h1[b-5zmssyrkma] {
    font-family: 'Symphony';
    font-size: 3rem;
}
/* /src/Pages/Schedule/Deprecated/DeprecatedSchedule.razor.rz.scp.css */
.container[b-epguhtl9li] {
    background: var(--blue);
    padding: 10vh 4rem;
    border-radius: 3rem;
}

.timeline[b-epguhtl9li] {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

    /* Center vertical line */
    .timeline[b-epguhtl9li]::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: white;
        transform: translateX(-50%);
    }

    /* Center horizontal line at the end */
    .timeline[b-epguhtl9li]::after {
        content: '';
        position: absolute;
        left: calc(50% - 2rem);
        bottom: -2px;
        height: 2px;
        width: 4rem;
        background-color: white;
        transform: translateY(-50%);
    }

/* Base item layout */
.timeline-item[b-epguhtl9li] {
    position: relative;
    width: 50%;
}

    .timeline-item.left[b-epguhtl9li] {
        text-align: right;
        left: 0;
        padding: 0.5rem 3rem 0.5rem 0;
    }

    .timeline-item.right[b-epguhtl9li] {
        text-align: left;
        left: 50%;
        padding: 0.5rem 0 0.5rem 3rem;
    }

    /* Content block */
    .timeline-item .content[b-epguhtl9li] {
        display: inline-block;
        position: relative;
    }

    /* Horizontal connector line � anchored at center line */
    .timeline-item[b-epguhtl9li]::after {
        content: '';
        position: absolute;
        top: 50%;
        height: 2px;
        background-color: white;
        transform: translateY(-50%);
    }

    /* Left side: from center line to the left (toward text) */
    .timeline-item.left[b-epguhtl9li]::after {
        right: 0rem;
        width: 2rem;
    }

    /* Right side: from center line to the right (toward text) */
    .timeline-item.right[b-epguhtl9li]::after {
        left: 0rem;
        width: 2rem;
    }

/* Text styling */
.time[b-epguhtl9li] {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.activity[b-epguhtl9li] {
    font-size: 1rem;
    color: white;
}

@media (max-width: 991px) {
    .container[b-epguhtl9li] {
        padding: 8vh 3rem;
        border-radius: 0;
        width: 100vw;
    }
}
/* /src/Pages/Schedule/Deprecated/TimelineItem.razor.rz.scp.css */
.timeline-item[b-4uk50o2udc] {
    position: relative;
}

.timeline-item[b-4uk50o2udc]:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline-item[b-4uk50o2udc]:after {
    background-color: var(--green);
    left: -38px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
}
/* /src/Pages/Schedule/Schedule.razor.rz.scp.css */
.container[b-7rbtudk8id] {
    background: var(--blue);
    padding: 10vh 4rem;
    border-radius: 3rem;
}

.container img[b-7rbtudk8id] {
    width: 80%;
}

@media (max-width: 991px) {
    .container[b-7rbtudk8id] {
        padding: 0;
        border-radius: 0;
        width: 100vw;
    }

    .container img[b-7rbtudk8id] {
        width: 100%;
    }
}
/* /src/Pages/WishList/WishList.razor.rz.scp.css */
.container[b-5fd16bhbqb] {
    background: var(--blue);
    padding: 3rem 10rem;
    border-radius: 3rem;
}

a[b-5fd16bhbqb] {
    color: white;
}

h1[b-5fd16bhbqb] {
    font-family: 'Symphony';
    font-size: 3rem;
}

p[b-5fd16bhbqb] {
    font-size: 2rem;
}

img[b-5fd16bhbqb] {
    width: 80%;
    margin: 1rem 0;
}

.wishlist-info[b-5fd16bhbqb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: justify;
}

.no-bottom[b-5fd16bhbqb] {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .container[b-5fd16bhbqb] {
        padding: 8vh 2rem;
        border-radius: 0;
        width: 100vw;
    }

    img[b-5fd16bhbqb] {
        width: 100%;
    }

    p[b-5fd16bhbqb] {
        font-size: 1.5rem;
    }
}
