/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout - no wrapper needed */
/* /Components/Navigation/MobileMenu.razor.rz.scp.css */
.nav__mobile-overlay[b-mi0slgycc6] {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: background 0.3s ease;
}

.nav__mobile-overlay.active[b-mi0slgycc6] {
    display: flex;
}

.nav__mobile-overlay a[b-mi0slgycc6] {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav__mobile-overlay a:hover[b-mi0slgycc6] {
    color: var(--accent);
}
/* /Components/Navigation/SideNav.razor.rz.scp.css */
.side-nav[b-5lg9n3qhoq] {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.side-nav__dot[b-5lg9n3qhoq] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.side-nav__dot:hover[b-5lg9n3qhoq] {
    transform: scale(1.3);
}

.side-nav__dot.active[b-5lg9n3qhoq] {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.side-nav__dot[b-5lg9n3qhoq]::before {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.side-nav__dot:hover[b-5lg9n3qhoq]::before {
    opacity: 1;
}

@media (max-width: 1199px) {
    .side-nav[b-5lg9n3qhoq] { display: none; }
}
/* /Components/Navigation/TopNav.razor.rz.scp.css */
.nav[b-i14fyt5ie1] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 0 clamp(24px, 4vw, 60px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled[b-i14fyt5ie1] {
    background: var(--nav-bg);
    box-shadow: 0 1px 12px var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav__logo[b-i14fyt5ie1] {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__logo .fox-silhouette[b-i14fyt5ie1] {
    width: 18px;
    height: 18px;
    fill: var(--fox);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav__logo:hover .fox-silhouette[b-i14fyt5ie1] {
    opacity: 1;
}

.nav__logo .heart[b-i14fyt5ie1] {
    color: var(--accent);
    font-size: 14px;
}

.nav__right[b-i14fyt5ie1] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__links[b-i14fyt5ie1] {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    list-style: none;
}

.nav__link[b-i14fyt5ie1] {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link[b-i14fyt5ie1]::before {
    content: '';
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -8px;
    right: -8px;
}

.nav__link[b-i14fyt5ie1]::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav__link:hover[b-i14fyt5ie1] {
    color: var(--heading);
}

.nav__link:hover[b-i14fyt5ie1]::after {
    width: 100%;
}

.nav__toggle[b-i14fyt5ie1] {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
}

.nav__toggle[b-i14fyt5ie1]::before {
    content: '';
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: -6px;
    right: -6px;
}

.nav__toggle:hover[b-i14fyt5ie1] {
    color: var(--accent);
    border-color: var(--accent);
}

.nav__toggle svg[b-i14fyt5ie1] {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav__hamburger[b-i14fyt5ie1] {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav__hamburger span[b-i14fyt5ie1] {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--heading);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1)[b-i14fyt5ie1] {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav__hamburger.active span:nth-child(2)[b-i14fyt5ie1] {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3)[b-i14fyt5ie1] {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.star-mode-toggle[b-i14fyt5ie1] {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 30px;
}

.star-mode-toggle__opt[b-i14fyt5ie1] {
    width: 30px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    padding: 0;
}

.star-mode-toggle__opt:hover[b-i14fyt5ie1] {
    color: var(--heading);
}

.star-mode-toggle__opt.active[b-i14fyt5ie1] {
    background: var(--accent);
    color: var(--bg);
}

.star-mode-toggle__opt svg[b-i14fyt5ie1] {
    width: 14px;
    height: 14px;
}

.sim-panel[b-i14fyt5ie1] {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(28, 20, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
    border-left: 1px solid var(--border);
}

.sim-panel.open[b-i14fyt5ie1] {
    transform: translateX(0);
}

.sim-panel__header[b-i14fyt5ie1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sim-panel__title[b-i14fyt5ie1] {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--heading);
    letter-spacing: 0.02em;
}

.sim-panel__close[b-i14fyt5ie1] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.3s ease;
}

.sim-panel__close:hover[b-i14fyt5ie1] {
    color: var(--accent);
}

.sim-panel__mode[b-i14fyt5ie1] {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sim-panel__group[b-i14fyt5ie1] {
    margin-bottom: 18px;
}

.sim-panel__label[b-i14fyt5ie1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.sim-panel__val[b-i14fyt5ie1] {
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.sim-panel__val--changed[b-i14fyt5ie1] {
    color: var(--heading);
}

.sim-panel__track[b-i14fyt5ie1] {
    position: relative;
    padding: 4px 0;
}

.sim-panel__tick[b-i14fyt5ie1] {
    position: absolute;
    top: 50%;
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
    background: var(--accent);
    opacity: 0.35;
    border-radius: 1px;
    pointer-events: none;
}

.sim-panel input[type="range"][b-i14fyt5ie1] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.sim-panel input[type="range"]:hover[b-i14fyt5ie1] {
    opacity: 1;
}

.sim-panel input[type="range"][b-i14fyt5ie1]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}

.sim-panel input[type="range"][b-i14fyt5ie1]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}

.sim-panel__reset[b-i14fyt5ie1] {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.sim-panel__reset:hover[b-i14fyt5ie1] {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .nav__links[b-i14fyt5ie1] { display: none; }
    .nav__hamburger[b-i14fyt5ie1] { display: flex; }
}
/* /Components/Sections/CountdownSection.razor.rz.scp.css */
.countdown[b-5wjc49rgab] {
    position: relative;
    background: var(--bg-alt);
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.countdown__ribbon[b-5wjc49rgab] {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    position: relative;
    z-index: 2;
}

.countdown__item[b-5wjc49rgab] {
    text-align: center;
}

.countdown__flip[b-5wjc49rgab] {
    position: relative;
    width: clamp(72px, 12vw, 120px);
    height: clamp(80px, 13vw, 130px);
    perspective: 600px;
    margin-bottom: 12px;
}

.countdown__flip-inner[b-5wjc49rgab] {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.countdown__flip-inner[b-5wjc49rgab]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    right: 6px;
    height: 1px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 2;
}

.countdown__flip-num[b-5wjc49rgab] {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--heading);
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.countdown__unit[b-5wjc49rgab] {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

[b-5wjc49rgab] .countdown__flip-inner.pulse {
    animation: flipPulse 0.4s ease;
}

@media (max-width: 768px) {
    .countdown__ribbon[b-5wjc49rgab] {
        flex-wrap: wrap;
        gap: 16px;
    }

    .countdown__flip[b-5wjc49rgab] {
        width: 64px;
        height: 72px;
    }

    .countdown__flip-num[b-5wjc49rgab] {
        font-size: 2.4rem !important;
    }
}
/* /Components/Sections/DressCodeSection.razor.rz.scp.css */
.dresscode[b-0a9jjn52kf] {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.dresscode__grid[b-0a9jjn52kf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-0a9jjn52kf] .dresscode__card { padding: clamp(32px, 4vw, 52px); }

[b-0a9jjn52kf] .dresscode__card-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

[b-0a9jjn52kf] .dresscode__card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 14px;
    line-height: 1.15;
    transition: color 0.3s ease;
}

[b-0a9jjn52kf] .dresscode__card-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

[b-0a9jjn52kf] .dresscode__swatches {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

[b-0a9jjn52kf] .dresscode__swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: transform 0.3s ease;
}

[b-0a9jjn52kf] .dresscode__swatch:hover { transform: scale(1.15); }

[b-0a9jjn52kf] .dresscode__swatch-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 4px;
}

@media (max-width: 900px) {
    .dresscode__grid[b-0a9jjn52kf] {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
/* /Components/Sections/FaqSection.razor.rz.scp.css */
.faq[b-sp4xkvwemn] {
    position: relative;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq__deco[b-sp4xkvwemn] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80vh;
    pointer-events: none;
    overflow: hidden;
}

.faq__list[b-sp4xkvwemn] {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item[b-sp4xkvwemn] {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.faq-item:first-child[b-sp4xkvwemn] {
    border-top: 1px solid var(--border);
}

.faq-item__question[b-sp4xkvwemn] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--heading);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.faq-item__question:hover[b-sp4xkvwemn] {
    color: var(--accent-dark);
}

.faq-item__icon[b-sp4xkvwemn] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}

.faq-item__icon[b-sp4xkvwemn]::before,
.faq-item__icon[b-sp4xkvwemn]::after {
    content: '';
    position: absolute;
    background: var(--accent-light);
    transition: transform 0.3s ease;
}

.faq-item__icon[b-sp4xkvwemn]::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-item__icon[b-sp4xkvwemn]::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-item__icon[b-sp4xkvwemn]::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-item__answer[b-sp4xkvwemn] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer-inner[b-sp4xkvwemn] {
    padding: 0 0 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.3s ease;
}
/* /Components/Sections/FooterSection.razor.rz.scp.css */
.footer[b-hl2y6148vv] {
    background: var(--bg-alt);
    padding: clamp(60px, 8vw, 100px) 24px clamp(40px, 5vw, 60px);
    text-align: center;
    transition: background 0.3s ease;
}

.footer__fox-decoration[b-hl2y6148vv] {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    opacity: 0.3;
}

.footer__fox-decoration svg[b-hl2y6148vv] {
    width: 100%;
    height: 100%;
    fill: var(--fox);
}

.footer__monogram-outer[b-hl2y6148vv] {
    margin: 0 auto 24px;
    position: relative;
    display: inline-block;
}

.footer__monogram-text[b-hl2y6148vv] {
    font-family: 'Inter', sans-serif;
    font-size: 140px;
    font-weight: 100;
    color: var(--heading);
    opacity: 0.12;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: color 0.3s ease;
}

.footer__monogram-text .ef-e[b-hl2y6148vv],
.footer__monogram-text .ef-f[b-hl2y6148vv] {
    display: block;
}

.footer__monogram-text .ef-e[b-hl2y6148vv] {
    transform: scaleX(-1);
    margin-right: -0.125em;
}

.footer__monogram-text .ef-f[b-hl2y6148vv] {
    margin-left: -0.125em;
}

.footer__names[b-hl2y6148vv] {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer__date[b-hl2y6148vv] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 36px;
    transition: color 0.3s ease;
}

.footer__nav[b-hl2y6148vv] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.footer__nav a[b-hl2y6148vv] {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer__nav a:hover[b-hl2y6148vv] {
    color: var(--accent);
}

.footer__love[b-hl2y6148vv] {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.7;
}
/* /Components/Sections/GuestResponseSection.razor.rz.scp.css */
.rsvp[b-xlzt4hqi3i] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.rsvp__inner[b-xlzt4hqi3i] {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-xlzt4hqi3i] .form-group {
    margin-bottom: 28px;
}

[b-xlzt4hqi3i] .form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

[b-xlzt4hqi3i] .form-group input,
[b-xlzt4hqi3i] .form-group select,
[b-xlzt4hqi3i] .form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-light);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

[b-xlzt4hqi3i] .form-group input:focus,
[b-xlzt4hqi3i] .form-group select:focus,
[b-xlzt4hqi3i] .form-group textarea:focus {
    border-bottom-color: var(--accent);
}

[b-xlzt4hqi3i] .form-group input::placeholder,
[b-xlzt4hqi3i] .form-group textarea::placeholder {
    color: var(--accent-light);
    opacity: 0.5;
}

[b-xlzt4hqi3i] .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

[b-xlzt4hqi3i] .form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

[b-xlzt4hqi3i] .form-group select option {
    background: var(--surface);
    color: var(--text-primary);
}

/* Capacity progress bar */
[b-xlzt4hqi3i] .capacity-bar {
    margin-bottom: 36px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

[b-xlzt4hqi3i] .capacity-bar__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

[b-xlzt4hqi3i] .capacity-bar__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

[b-xlzt4hqi3i] .capacity-bar__pct {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--heading);
    letter-spacing: -0.02em;
}

[b-xlzt4hqi3i] .capacity-bar__track {
    height: 6px;
    background: var(--bg-alt);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

[b-xlzt4hqi3i] .capacity-bar__fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 1s ease;
}

[b-xlzt4hqi3i] .capacity-bar__fill--over {
    background: var(--sage);
}

[b-xlzt4hqi3i] .capacity-bar__overflow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: var(--fox);
    border-radius: 0 3px 3px 0;
    opacity: 0.7;
    transition: width 1s ease;
}

[b-xlzt4hqi3i] .capacity-bar__note {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    font-style: italic;
}

/* Shared custom combobox (guests + attendance) */
[b-xlzt4hqi3i] .combo,
[b-xlzt4hqi3i] .guests-combo {
    position: relative;
}

[b-xlzt4hqi3i] .combo input,
[b-xlzt4hqi3i] .guests-combo input {
    padding-right: 28px;
    cursor: pointer;
}

[b-xlzt4hqi3i] .combo__toggle,
[b-xlzt4hqi3i] .guests-combo__toggle {
    position: absolute;
    right: 0;
    bottom: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 4px;
    display: flex;
    align-items: center;
}

[b-xlzt4hqi3i] .combo__list,
[b-xlzt4hqi3i] .guests-combo__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--card-shadow);
    margin-top: 4px;
    overflow: hidden;
}

[b-xlzt4hqi3i] .combo__option,
[b-xlzt4hqi3i] .guests-combo__option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s ease;
}

[b-xlzt4hqi3i] .combo__option:hover,
[b-xlzt4hqi3i] .guests-combo__option:hover {
    background: var(--bg-alt);
}

[b-xlzt4hqi3i] .combo__option.active,
[b-xlzt4hqi3i] .guests-combo__option.active {
    color: var(--accent);
    font-weight: 500;
}

[b-xlzt4hqi3i] .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.rsvp__success[b-xlzt4hqi3i] {
    text-align: center;
    padding: 48px 0;
}

.rsvp__success-check[b-xlzt4hqi3i] {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.rsvp__success-check svg[b-xlzt4hqi3i] {
    width: 64px;
    height: 64px;
}

.rsvp__success-check .check-circle[b-xlzt4hqi3i] {
    stroke: var(--accent);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawCheck 0.8s ease 0.2s forwards;
}

.rsvp__success-check .check-mark[b-xlzt4hqi3i] {
    stroke: var(--accent);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawCheck 0.5s ease 0.8s forwards;
}

.rsvp__success-title[b-xlzt4hqi3i] {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.rsvp__success-text[b-xlzt4hqi3i] {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.rsvp__deadline-notice[b-xlzt4hqi3i] {
    padding: 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

[b-xlzt4hqi3i] .validation-message {
    color: var(--rust);
    font-size: 12px;
    margin-top: 4px;
}

@media (max-width: 900px) {
    [b-xlzt4hqi3i] .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* /Components/Sections/HeroSection.razor.rz.scp.css */
.hero[b-61pxm7enyv] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(168deg, var(--bg) 0%, var(--bg-alt) 60%);
    overflow: hidden;
    padding: 100px 0 80px;
    transition: background 0.3s ease;
}

.hero__branch-left[b-61pxm7enyv] {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 130%;
    max-width: none;
    opacity: 0.15;
    mix-blend-mode: multiply;
    transform: rotate(-8deg) scale(1.15);
    pointer-events: none;
    z-index: 1;
}

.hero__branch-right[b-61pxm7enyv] {
    position: absolute;
    bottom: -18%;
    right: -12%;
    width: 75%;
    max-width: none;
    opacity: 0.13;
    mix-blend-mode: multiply;
    transform: rotate(12deg) scaleX(-1);
    pointer-events: none;
    z-index: 1;
}

.hero__branch-left[b-61pxm7enyv],
.hero__branch-right[b-61pxm7enyv] {
    mask-image: radial-gradient(ellipse 80% 70% at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 40%, transparent 100%);
}

.hero__content[b-61pxm7enyv] {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 clamp(24px, 6vw, 80px);
}

.hero__fox-badge[b-61pxm7enyv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero__fox-badge svg[b-61pxm7enyv] {
    width: 20px;
    height: 20px;
    fill: var(--fox);
    opacity: 0.7;
}

.hero__label[b-61pxm7enyv] {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.hero__names[b-61pxm7enyv] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    min-height: clamp(5rem, 14vw, 12rem);
}

.hero__name[b-61pxm7enyv] {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--heading);
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.hero__name-wrap[b-61pxm7enyv] {
    display: inline-flex;
    align-items: baseline;
}

.hero__ampersand[b-61pxm7enyv] {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    font-style: normal;
    color: var(--accent);
    margin: 0 clamp(16px, 3vw, 40px);
    align-self: center;
    transition: color 0.3s ease;
}

[b-61pxm7enyv] .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--accent);
    margin-left: 4px;
    vertical-align: baseline;
    animation: blink 0.8s step-end infinite;
}

.hero__meta[b-61pxm7enyv] {
    margin-top: clamp(28px, 4vw, 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero__date[b-61pxm7enyv],
.hero__location[b-61pxm7enyv] {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s ease;
}

.hero__scroll-indicator[b-61pxm7enyv] {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 3.5s forwards, bounceDown 2.5s ease-in-out 4s infinite;
}

.hero__scroll-indicator span[b-61pxm7enyv] {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.6;
}

.hero__scroll-indicator svg[b-61pxm7enyv] {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .hero[b-61pxm7enyv] {
        padding: 80px 0 60px;
        align-items: flex-start;
        padding-top: 20vh;
    }

    .hero__names[b-61pxm7enyv] {
        flex-direction: column;
        align-items: center;
    }

    .hero__ampersand[b-61pxm7enyv] { margin: 8px 0; }

    /* Větve — diagonálně přes celý výškový displej */
    .hero__branch-left[b-61pxm7enyv] {
        top: -5%;
        left: -60%;
        width: 220%;
        opacity: 0.12;
        transform: rotate(30deg);
        transform-origin: center center;
    }

    .hero__branch-right[b-61pxm7enyv] {
        bottom: -5%;
        right: -60%;
        width: 220%;
        opacity: 0.09;
        transform: rotate(-30deg) scaleX(-1);
        transform-origin: center center;
    }
}

@media (max-width: 500px) {
    .hero__name[b-61pxm7enyv] {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }
}
/* /Components/Sections/ScheduleSection.razor.rz.scp.css */
.schedule[b-09u4xt5vka] {
    position: relative;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 50%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.schedule__list[b-09u4xt5vka] {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.schedule__item[b-09u4xt5vka] {
    display: flex;
    gap: clamp(20px, 3vw, 32px);
    align-items: flex-start;
    padding: clamp(24px, 3vw, 36px) 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.schedule__item:last-child[b-09u4xt5vka] { border-bottom: none; }

.schedule__icon[b-09u4xt5vka] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.7;
}

.schedule__icon svg[b-09u4xt5vka] {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.schedule__info[b-09u4xt5vka] { flex: 1; }

.schedule__time[b-09u4xt5vka] {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: var(--heading);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.3s ease;
}

.schedule__event[b-09u4xt5vka] {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 6px;
    transition: color 0.3s ease;
}

.schedule__detail[b-09u4xt5vka] {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.6;
    transition: color 0.3s ease;
}
/* /Components/Sections/StorySection.razor.rz.scp.css */
.story[b-5l5l0mokth] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.story__timeline[b-5l5l0mokth] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story__timeline[b-5l5l0mokth]::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent) 10%, var(--accent) 90%, transparent);
    opacity: 0.25;
    transform: translateX(-50%);
}

.story__item[b-5l5l0mokth] {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.story__item:last-child[b-5l5l0mokth] { margin-bottom: 0; }

.story__item-content[b-5l5l0mokth] {
    padding: clamp(20px, 3vw, 32px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 2px 12px var(--card-shadow);
    transition: box-shadow 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}

.story__item-content:hover[b-5l5l0mokth] {
    box-shadow: 0 6px 28px var(--card-shadow);
}

.story__item--left .story__item-content[b-5l5l0mokth] {
    grid-column: 1;
    text-align: right;
}

.story__item--left .story__item-dot[b-5l5l0mokth] { grid-column: 2; }
.story__item--left .story__item-spacer[b-5l5l0mokth] { grid-column: 3; }

.story__item--right .story__item-spacer[b-5l5l0mokth] { grid-column: 1; }
.story__item--right .story__item-dot[b-5l5l0mokth] { grid-column: 2; }

.story__item--right .story__item-content[b-5l5l0mokth] {
    grid-column: 3;
    text-align: left;
}

.story__item-dot[b-5l5l0mokth] {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.story__item-dot span[b-5l5l0mokth] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
    flex-shrink: 0;
    position: relative;
}

.story__item-dot span[b-5l5l0mokth]::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story__item-year[b-5l5l0mokth] {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.story__item-title[b-5l5l0mokth] {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.story__item-text[b-5l5l0mokth] {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    transition: color 0.3s ease;
}

@media (max-width: 900px) {
    .story__timeline[b-5l5l0mokth]::before {
        left: 20px;
    }

    .story__item[b-5l5l0mokth] {
        grid-template-columns: 40px 1fr;
    }

    .story__item--left .story__item-content[b-5l5l0mokth],
    .story__item--right .story__item-content[b-5l5l0mokth] {
        grid-column: 2;
        text-align: left;
    }

    .story__item--left .story__item-dot[b-5l5l0mokth],
    .story__item--right .story__item-dot[b-5l5l0mokth] {
        grid-column: 1;
    }

    .story__item--left .story__item-spacer[b-5l5l0mokth],
    .story__item--right .story__item-spacer[b-5l5l0mokth] {
        display: none;
    }

    /* Dot vždy první, content vždy druhý */
    .story__item--left .story__item-dot[b-5l5l0mokth] {
        order: -1;
    }

    .story__item--left .story__item-content[b-5l5l0mokth] {
        order: 1;
    }
}
/* /Components/Sections/TravelSection.razor.rz.scp.css */
.travel[b-m5le433g1j] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.travel__grid[b-m5le433g1j] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 32px);
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-m5le433g1j] .travel-card {
    padding: clamp(28px, 3.5vw, 44px);
    text-align: center;
}

[b-m5le433g1j] .travel-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.7;
}

[b-m5le433g1j] .travel-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[b-m5le433g1j] .travel-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

[b-m5le433g1j] .travel-card__text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    transition: color 0.3s ease;
}

@media (max-width: 1024px) {
    .travel__grid[b-m5le433g1j] {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .travel__grid[b-m5le433g1j] {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
/* /Components/Sections/VenuesSection.razor.rz.scp.css */
.venues[b-5v8nzw5rdy] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.venues__grid[b-5v8nzw5rdy] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 36px);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-5v8nzw5rdy] .venue-card {
    padding: clamp(32px, 4vw, 52px);
}

[b-5v8nzw5rdy] .venue-card__type {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

[b-5v8nzw5rdy] .venue-card__name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.15;
    transition: color 0.3s ease;
}

[b-5v8nzw5rdy] .venue-card__address {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.55;
    transition: color 0.3s ease;
}

[b-5v8nzw5rdy] .venue-card__time {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

[b-5v8nzw5rdy] .venue-card__detail {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .venues__grid[b-5v8nzw5rdy] {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
