/* ==========================================================================
   Invitation System
   Bootstrap 5 global stylesheet
   Theme: Refined Wedding Enterprise
   ========================================================================== */

/* ==========================================================================
   01. Design tokens
   ========================================================================== */

:root {
    --brand-900: #202733;
    --brand-800: #2b3442;
    --brand-700: #3b4657;
    --brand-600: #536071;

    --accent-700: #a67c45;
    --accent-600: #bb9360;
    --accent-500: #c9aa7a;
    --accent-300: #dfc9aa;

    --rose-700: #a77d75;
    --rose-600: #ba9188;
    --rose-500: #cda69c;
    --rose-300: #e4cfc9;

    --success: #4f826c;
    --warning: #b68b4f;
    --danger: #b46161;
    --info: #607d9c;

    --body-bg: #f4f1ed;
    --body-bg-alt: #ebe6df;
    --surface: #ffffff;
    --surface-soft: #faf8f5;
    --surface-muted: #f2eee9;

    --text: #252b35;
    --text-soft: #566171;
    --muted: #7c8591;
    --border: rgba(43, 52, 66, .11);
    --border-strong: rgba(43, 52, 66, .18);

    --glass: rgba(255, 255, 255, .68);
    --glass-soft: rgba(255, 255, 255, .52);
    --glass-dark: rgba(32, 39, 51, .72);
    --glass-border: rgba(255, 255, 255, .45);

    --gradient-main: linear-gradient(135deg, #202733 0%, #3b4657 100%);
    --gradient-main-soft: linear-gradient(135deg, #313b49 0%, #566273 100%);
    --gradient-gold: linear-gradient(135deg, #a67c45 0%, #c9aa7a 100%);
    --gradient-rose: linear-gradient(135deg, #a77d75 0%, #cda69c 100%);
    --gradient-neutral: linear-gradient(135deg, #566171 0%, #7d8794 100%);
    --gradient-surface: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(248, 245, 241, .76));
    --gradient-body:
        radial-gradient(circle at 90% 5%, rgba(201, 170, 122, .10), transparent 27rem),
        radial-gradient(circle at 8% 92%, rgba(205, 166, 156, .10), transparent 29rem),
        linear-gradient(135deg, #f7f4f0 0%, #efeae4 100%);

    --sidebar-width: 280px;
    --topbar-height: 76px;

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-xs: 0 2px 10px rgba(32, 39, 51, .05);
    --shadow-sm: 0 10px 28px rgba(32, 39, 51, .07);
    --shadow: 0 18px 48px rgba(32, 39, 51, .10);
    --shadow-lg: 0 28px 72px rgba(32, 39, 51, .15);
    --shadow-accent: 0 14px 34px rgba(166, 124, 69, .22);

    --transition-fast: .18s ease;
    --transition: .28s ease;
    --transition-slow: .42s ease;
}

/* ==========================================================================
   02. Reset and base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--gradient-body);
    color: var(--text);
    font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .95rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img,
svg {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition);
}

::selection {
    background: rgba(201, 170, 122, .30);
    color: var(--brand-900);
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-track {
    background: #ece7e1;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #ece7e1;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-700), var(--accent-500));
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-800), var(--accent-600));
}

/* ==========================================================================
   03. Typography and utility colors
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
    font-weight: 700;
    letter-spacing: -.025em;
}

.text-muted {
    color: var(--muted) !important;
}

.text-soft {
    color: var(--text-soft) !important;
}

.text-gold {
    color: var(--accent-700) !important;
}

.text-rose {
    color: var(--rose-700) !important;
}

.text-purple {
    color: var(--brand-700) !important;
}

.bg-champagne {
    background: #f9f3e9 !important;
}

.bg-main-gradient {
    background: var(--gradient-main) !important;
}

.bg-gold-gradient,
.bg-primary-gradient {
    background: var(--gradient-gold) !important;
}

.bg-rose-gradient {
    background: var(--gradient-rose) !important;
}

.bg-purple-gradient,
.bg-dark-gradient {
    background: var(--gradient-main-soft) !important;
}

.bg-success-gradient {
    background: linear-gradient(135deg, #466f60, #67937f) !important;
}

.fw-700 {
    font-weight: 700;
}

.cursor-pointer {
    cursor: pointer;
}

.radius {
    border-radius: var(--radius-lg);
}

.radius-lg {
    border-radius: var(--radius-xl);
}

.min-w-0 {
    min-width: 0;
}

.divider {
    width: 100%;
    height: 1px;
    margin: 25px 0;
    background: var(--border);
}

/* ==========================================================================
   04. Glass and surfaces
   ========================================================================== */

.glass,
.glass-card,
.card,
.filter-card,
.table-card {
    border: 1px solid var(--glass-border);
    background: var(--gradient-surface);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.glass-soft {
    border: 1px solid rgba(255, 255, 255, .32);
    background: var(--glass-soft);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.card,
.glass-card,
.filter-card,
.table-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card:hover,
.glass-card:hover,
.shadow-hover:hover {
    border-color: rgba(201, 170, 122, .32);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .42);
}

.card-body {
    padding: 1.35rem;
}

.card-footer {
    padding: 1rem 1.35rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, .42);
}

/* ==========================================================================
   05. App shell
   ========================================================================== */

.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    margin-left: var(--sidebar-width);
    transition:
        width var(--transition),
        margin-left var(--transition);
}

.content-wrapper {
    flex: 1;
    padding: 28px;
}

.page-title {
    margin: 0;
    color: var(--text);
    font-weight: 750;
}

.page-subtitle {
    color: var(--muted);
}

/* ==========================================================================
   06. Sidebar
   ========================================================================== */

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1040;
    width: var(--sidebar-width);
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    background:
        radial-gradient(circle at 12% 4%, rgba(201, 170, 122, .16), transparent 18rem),
        linear-gradient(180deg, #202733 0%, #2c3543 54%, #333d4c 100%);
    box-shadow: 18px 0 48px rgba(32, 39, 51, .18);
    transition: transform var(--transition);
}

.sidebar-header {
    padding: 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    color: #fff;
}

.sidebar-brand img,
.sidebar-logo {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 17px;
    background: rgba(255, 255, 255, .94);
    object-fit: contain;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .14);
}

.sidebar-logo {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--gradient-gold);
    font-size: 1.45rem;
}

.sidebar-brand h5 {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: .98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-brand small {
    color: rgba(255, 255, 255, .56);
    font-size: .72rem;
}

.sidebar-menu {
    padding: 16px 12px 38px;
}

.sidebar .nav-item {
    margin-bottom: 4px;
}

.sidebar .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 47px;
    padding: 11px 13px;
    border-radius: 14px;
    color: rgba(255, 255, 255, .70);
    font-size: .88rem;
    font-weight: 550;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.sidebar .nav-link > i:first-child {
    width: 22px;
    flex: 0 0 22px;
    text-align: center;
    font-size: 1.03rem;
}

.sidebar .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07);
    transform: translateX(2px);
}

.sidebar .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(166, 124, 69, .96), rgba(201, 170, 122, .92));
    box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
}

.sidebar .nav-link.active::before {
    position: absolute;
    inset: 9px auto 9px 0;
    width: 3px;
    border-radius: 999px;
    content: "";
    background: #fff;
}

.sidebar .nav-link .bi-chevron-down {
    margin-left: auto;
    font-size: .75rem;
    transition: transform var(--transition);
}

.sidebar .nav-link[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.submenu {
    margin: 5px 0 8px 24px;
    padding: 3px 0 3px 13px;
    border-left: 1px solid rgba(255, 255, 255, .11);
}

.submenu a {
    display: block;
    margin: 3px 0;
    padding: 9px 11px;
    border-radius: 11px;
    color: rgba(255, 255, 255, .58);
    font-size: .81rem;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.submenu a:hover,
.submenu a.active {
    color: #fff;
    background: rgba(255, 255, 255, .06);
    transform: translateX(2px);
}

.sidebar-toggle {
    padding: 0;
    color: var(--brand-700);
    font-size: 1.55rem;
}

.sidebar-overlay {
    display: none;
}

/* ==========================================================================
   07. Topbar
   ========================================================================== */

.topbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--topbar-height);
    padding: 11px 25px;
    border-bottom: 1px solid rgba(43, 52, 66, .08);
    background: rgba(255, 255, 255, .69);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(17px) saturate(145%);
    -webkit-backdrop-filter: blur(17px) saturate(145%);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-left {
    gap: 15px;
}

.topbar-right {
    gap: 7px;
}

.topbar .btn {
    border-radius: 13px;
}

.topbar .btn-light {
    border-color: rgba(43, 52, 66, .08);
    background: rgba(255, 255, 255, .66);
}

.topbar img {
    border: 2px solid rgba(255, 255, 255, .82);
    box-shadow: 0 7px 18px rgba(32, 39, 51, .10);
}

.dropdown-menu {
    overflow: hidden;
    padding: .45rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.dropdown-item {
    padding: .68rem .82rem;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: .87rem;
    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--text);
    background: var(--surface-muted);
}

.dropdown-header {
    color: var(--text);
    font-weight: 700;
}

/* ==========================================================================
   08. Footer
   ========================================================================== */

.footer {
    padding: 17px 26px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, .66);
    color: var(--muted);
    font-size: .8rem;
    backdrop-filter: blur(14px);
}

/* ==========================================================================
   09. Buttons
   ========================================================================== */

.btn {
    min-height: 43px;
    padding: .68rem 1.15rem;
    border-radius: 13px;
    font-size: .88rem;
    font-weight: 650;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0) scale(.99);
}

.btn-primary {
    border-color: transparent;
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 9px 22px rgba(32, 39, 51, .16);
}

.btn-primary:hover,
.btn-primary:focus {
    border-color: transparent;
    background: linear-gradient(135deg, #151b24, #333e4d);
    color: #fff;
    box-shadow: 0 12px 28px rgba(32, 39, 51, .22);
}

.btn-secondary {
    border-color: transparent;
    background: var(--gradient-rose);
    color: #fff;
}

.btn-success {
    border-color: transparent;
    background: linear-gradient(135deg, #456f5f, #648b7a);
    color: #fff;
}

.btn-warning {
    border-color: transparent;
    background: linear-gradient(135deg, #a97d43, #c89f66);
    color: #fff;
}

.btn-danger {
    border-color: transparent;
    background: linear-gradient(135deg, #9d5151, #bd7373);
    color: #fff;
}

.btn-light {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .73);
    color: var(--text);
}

.btn-light:hover {
    border-color: var(--border-strong);
    background: #fff;
    color: var(--text);
}

.btn-outline-primary {
    border: 1px solid rgba(43, 52, 66, .18);
    background: transparent;
    color: var(--brand-700);
}

.btn-outline-primary:hover {
    border-color: rgba(43, 52, 66, .28);
    background: rgba(43, 52, 66, .06);
    color: var(--brand-800);
}

.btn-outline-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .42);
    color: var(--text-soft);
}

.btn-outline-secondary:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, .78);
    color: var(--text);
}

.btn-sm {
    min-height: 35px;
    padding: .46rem .82rem;
    border-radius: 11px;
    font-size: .78rem;
}

.btn-lg {
    min-height: 50px;
    padding: .82rem 1.35rem;
    border-radius: 15px;
}

/* ==========================================================================
   10. Hero dashboard
   ========================================================================== */

.hero-dashboard {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 20%, rgba(201, 170, 122, .22), transparent 18rem),
        var(--gradient-main);
    color: #fff;
    box-shadow: var(--shadow);
}

.hero-dashboard::after {
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.hero-dashboard h1,
.hero-dashboard h2,
.hero-dashboard h3,
.hero-dashboard h4,
.hero-dashboard h5,
.hero-dashboard h6 {
    color: #fff;
}

.hero-dashboard p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .70);
}

/* ==========================================================================
   11. Statistics cards
   ========================================================================== */

.stat-card {
    position: relative;
    min-height: 145px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stat-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 55%);
    pointer-events: none;
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.stat-card h2 {
    position: relative;
    z-index: 1;
    margin: 7px 0 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.15rem);
    font-weight: 760;
}

.stat-card small,
.stat-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .70);
}

.stat-icon {
    position: absolute;
    right: 17px;
    bottom: 7px;
    color: #fff;
    font-size: 3.8rem;
    opacity: .12;
}

.card-gold {
    background: var(--gradient-gold);
}

.card-rose {
    background: var(--gradient-rose);
}

.card-dark,
.card-purple {
    background: var(--gradient-main);
}

.card-soft,
.card-green,
.card-blue {
    background: var(--gradient-neutral);
}

.icon-box {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.icon-gold {
    background: var(--gradient-gold);
}

.icon-rose {
    background: var(--gradient-rose);
}

.icon-purple {
    background: var(--gradient-main-soft);
}

.icon-green {
    background: linear-gradient(135deg, #486f61, #688d7d);
}

/* ==========================================================================
   12. Forms
   ========================================================================== */

.form-label {
    margin-bottom: .45rem;
    color: var(--text);
    font-size: .84rem;
    font-weight: 650;
}

.form-control,
.form-select {
    min-height: 49px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, .78);
    color: var(--text);
    box-shadow: none;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

textarea.form-control {
    min-height: 130px;
    padding-top: .75rem;
    resize: vertical;
}

.form-control::placeholder {
    color: #9aa1aa;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(166, 124, 69, .48);
    background: #fff;
    box-shadow: 0 0 0 .22rem rgba(201, 170, 122, .13);
}

.form-check-input:checked {
    border-color: var(--accent-700);
    background-color: var(--accent-700);
}

.input-group {
    border-radius: 13px;
}

.input-group-text {
    min-width: 48px;
    justify-content: center;
    border-color: var(--border);
    background: rgba(255, 255, 255, .74);
    color: var(--muted);
}

.input-group .form-control,
.input-group .btn,
.input-group .input-group-text {
    min-height: 49px;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: var(--muted);
    transform: translateY(-50%);
}

.search-box input {
    padding-left: 44px;
}

.filter-card {
    margin-bottom: 24px;
    padding: 20px;
}

/* ==========================================================================
   13. Tables
   ========================================================================== */

.table-card {
    background: rgba(255, 255, 255, .75);
}

.table {
    margin: 0;
    color: var(--text);
}

.table > :not(caption) > * > * {
    box-shadow: none;
}

.table thead {
    background: var(--gradient-main);
    color: #fff;
}

.table thead th {
    padding: 15px 16px;
    border: 0;
    color: rgba(255, 255, 255, .88);
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .02em;
    white-space: nowrap;
}

.table tbody td {
    padding: 14px 16px;
    border-color: rgba(43, 52, 66, .055);
    vertical-align: middle;
}

.table tbody tr {
    transition: background var(--transition-fast);
}

.table tbody tr:hover {
    background: rgba(201, 170, 122, .07);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: rgba(43, 52, 66, .018);
}

/* ==========================================================================
   14. Badges and statuses
   ========================================================================== */

.badge {
    padding: .42rem .75rem;
    border-radius: 999px;
    font-size: .71rem;
    font-weight: 650;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
    color: #fff !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-info {
    background-color: var(--info) !important;
}

.bg-primary {
    background-color: var(--brand-700) !important;
}

.status-active,
.status-completed {
    background: rgba(79, 130, 108, .13);
    color: #356652;
}

.status-pending {
    background: rgba(182, 139, 79, .14);
    color: #89632f;
}

.status-cancelled {
    background: rgba(180, 97, 97, .13);
    color: #8f4444;
}

.status-completed {
    background: rgba(96, 125, 156, .13);
    color: #486783;
}

/* ==========================================================================
   15. Pagination
   ========================================================================== */

.pagination {
    gap: 6px;
}

.page-link {
    display: grid;
    min-width: 39px;
    min-height: 39px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 11px !important;
    background: rgba(255, 255, 255, .70);
    color: var(--text-soft);
    box-shadow: none;
}

.page-link:hover {
    border-color: rgba(166, 124, 69, .28);
    background: rgba(201, 170, 122, .09);
    color: var(--accent-700);
}

.page-item.active .page-link {
    border-color: transparent;
    background: var(--gradient-main);
    color: #fff;
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, .45);
    color: #a7adb5;
}

/* ==========================================================================
   16. Modal
   ========================================================================== */

.modal-content {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border);
    background: var(--gradient-main);
    color: #fff;
}

.modal-header .modal-title {
    color: #fff;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-footer {
    border-top: 1px solid var(--border);
}

/* ==========================================================================
   17. Alerts and toast
   ========================================================================== */

.alert {
    border: 1px solid currentColor;
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-xs);
}

.alert-success {
    color: #356652;
}

.alert-danger {
    color: #8f4444;
}

.alert-warning {
    color: #89632f;
}

.alert-info {
    color: #486783;
}

.toast {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
}

/* ==========================================================================
   18. Timeline, event, RSVP, QR and gallery
   ========================================================================== */

.timeline {
    position: relative;
    padding-left: 31px;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 2px;
    border-radius: 999px;
    content: "";
    background: rgba(166, 124, 69, .35);
}

.timeline-item {
    position: relative;
    margin-bottom: 27px;
}

.timeline-item::before {
    position: absolute;
    top: 5px;
    left: -30px;
    width: 15px;
    height: 15px;
    border: 4px solid var(--accent-600);
    border-radius: 50%;
    content: "";
    background: var(--surface);
    box-shadow: 0 0 0 5px rgba(201, 170, 122, .10);
}

.event-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.event-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.event-body {
    padding: 22px;
}

.rsvp-card {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-lg);
    background: var(--gradient-rose);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.qr-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .84);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.qr-card img {
    width: min(220px, 100%);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
}

.gallery-item img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   19. Countdown
   ========================================================================== */

.countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.count-box {
    display: flex;
    width: 82px;
    height: 82px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-xs);
}

.count-box h3 {
    margin: 0;
    color: var(--brand-800);
    font-size: 1.35rem;
}

/* ==========================================================================
   20. Skeleton and loader
   ========================================================================== */

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(43, 52, 66, .08);
    border-top-color: var(--accent-600);
    border-radius: 50%;
    animation: spin .75s linear infinite;
}

.skeleton {
    border-radius: 12px;
    background:
        linear-gradient(
            90deg,
            rgba(43, 52, 66, .045) 25%,
            rgba(255, 255, 255, .82) 50%,
            rgba(43, 52, 66, .045) 75%
        );
    background-size: 300% 100%;
    animation: skeleton 1.3s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes skeleton {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: -100% 0;
    }
}

/* ==========================================================================
   21. Floating helpers
   ========================================================================== */

.float-card {
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.float-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.float-sm {
    animation: floatSmall 5s ease-in-out infinite;
}

@keyframes floatSmall {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   22. Authentication
   ========================================================================== */

.login-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(201, 170, 122, .22), transparent 24rem),
        radial-gradient(circle at 92% 88%, rgba(205, 166, 156, .18), transparent 27rem),
        linear-gradient(135deg, #202733 0%, #3b4657 100%);
}

.login-page::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, .06)),
        radial-gradient(circle at center, transparent, rgba(20, 25, 34, .20));
    pointer-events: none;
}

.login-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    backdrop-filter: blur(4px);
}

.circle-one {
    top: 8%;
    left: 6%;
    width: 190px;
    height: 190px;
}

.circle-two {
    right: 5%;
    bottom: 9%;
    width: 260px;
    height: 260px;
}

.circle-three {
    top: 18%;
    right: 31%;
    width: 82px;
    height: 82px;
}

.circle-four {
    bottom: 18%;
    left: 39%;
    width: 120px;
    height: 120px;
}

.login-left {
    position: relative;
    min-height: 100vh;
    padding: 55px;
    color: #fff;
}

.login-overlay {
    display: flex;
    max-width: 700px;
    min-height: calc(100vh - 110px);
    flex-direction: column;
    justify-content: center;
}

.login-brand {
    max-width: 610px;
}

.brand-logo {
    display: grid;
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .13);
    backdrop-filter: blur(12px);
}

.login-brand h1 {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.03;
}

.login-brand p {
    max-width: 560px;
    color: rgba(255, 255, 255, .67);
    font-size: 1.02rem;
}

.login-features {
    display: grid;
    max-width: 650px;
    margin-top: 35px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--accent-300);
    font-size: 1.15rem;
}

.login-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 35px;
}

.login-card {
    width: 100%;
    max-width: 475px;
    margin: auto;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .40);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 70px rgba(15, 20, 28, .22);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.login-card:hover {
    transform: none;
}

.login-logo {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(166, 124, 69, .16);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
}

.login-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.login-card .input-group .btn {
    min-width: 48px;
    border: 1px solid var(--border);
    border-left: 0;
    border-radius: 0 13px 13px 0;
    box-shadow: none;
}

.login-card .btn-primary {
    background: var(--gradient-main);
}

.login-card .form-check-label,
.login-card a {
    font-size: .82rem;
}

/* ==========================================================================
   23. Public hero and website helpers
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 65px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 10%, rgba(201, 170, 122, .22), transparent 18rem),
        var(--gradient-main);
    color: #fff;
    box-shadow: var(--shadow);
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .70);
    font-size: 1.05rem;
}

/* ==========================================================================
   24. Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   25. Responsive
   ========================================================================== */

@media (max-width: 1199.98px) {
    .content-wrapper {
        padding: 23px;
    }

    .hero-dashboard {
        padding: 32px;
    }
}

@media (max-width: 991.98px) {
    body.sidebar-open {
        overflow: hidden;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show,
    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .main-wrapper {
        width: 100%;
        margin-left: 0;
    }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        z-index: 1035;
        background: rgba(19, 24, 31, .48);
        backdrop-filter: blur(3px);
    }

    body.sidebar-open .sidebar-overlay,
    .sidebar-overlay.show {
        display: block;
    }

    .topbar {
        padding: 10px 17px;
    }

    .content-wrapper {
        padding: 19px;
    }

    .login-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .topbar-right .dropdown .text-start {
        display: none;
    }

    .topbar-right {
        gap: 2px;
    }

    .hero-dashboard {
        padding: 27px;
    }

    .hero {
        padding: 35px;
    }

    .login-wrapper {
        padding: 18px;
    }

    .login-card {
        padding: 28px;
        border-radius: 24px;
    }

    .count-box {
        width: 72px;
        height: 72px;
    }

    .footer {
        padding: 15px 18px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .content-wrapper {
        padding: 14px;
    }

    .topbar {
        min-height: 68px;
        padding: 9px 13px;
    }

    .topbar .page-title h5,
    .topbar .page-title {
        max-width: 135px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-dashboard {
        padding: 23px;
        border-radius: 22px;
    }

    .stat-card {
        min-height: 132px;
        padding: 21px;
    }

    .login-card {
        padding: 24px 20px;
    }

    .login-logo {
        width: 70px;
        height: 70px;
    }

    .login-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   26. Print
   ========================================================================== */

@media print {
    body {
        background: #fff !important;
    }

    .sidebar,
    .topbar,
    .footer,
    .sidebar-overlay,
    .btn,
    .dropdown,
    .pagination,
    .no-print {
        display: none !important;
    }

    .main-wrapper {
        width: 100% !important;
        margin: 0 !important;
    }

    .content-wrapper {
        padding: 0 !important;
    }

    .card,
    .glass-card,
    .table-card {
        border: 1px solid #ddd !important;
        background: #fff !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
}

/* ==========================================================================
   PUBLIC WEBSITE HOME PAGE
   Append this block at the END of: public/assets/css/app.css
   ========================================================================== */

.website-page {
    --website-primary: #7a3f18;
    --website-secondary: #b87333;
    --website-accent: #d8a35d;
    --website-text: #3d2417;
    --website-footer: #17110e;
    background:
        radial-gradient(circle at 15% 10%, rgba(216, 163, 93, .10), transparent 25rem),
        linear-gradient(180deg, #fffdf9 0%, #fbf7f1 100%);
    color: var(--website-text);
}

.website-page h1,
.website-page h2,
.website-page h3,
.website-page h4,
.website-page h5,
.website-page h6 {
    color: var(--website-text);
    font-family: Georgia, "Times New Roman", serif;
}

.website-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 14px 0;
    border-bottom: 1px solid rgba(122, 63, 24, .08);
    background: rgba(255, 253, 249, .82);
    box-shadow: 0 10px 35px rgba(61, 36, 23, .08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.website-header .navbar {
    padding: 0;
}

.website-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--website-text);
}

.website-brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: contain;
}

.website-brand-mark {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(122, 63, 24, .18);
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #f8ecdc);
    color: var(--website-primary);
    font-size: 1.55rem;
    box-shadow: 0 10px 24px rgba(122, 63, 24, .10);
}

.website-brand-name {
    color: var(--website-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
}

.website-header .navbar-nav {
    gap: 8px;
}

.website-header .nav-link {
    position: relative;
    padding: 12px 14px !important;
    color: #4f443e;
    font-size: .92rem;
    font-weight: 600;
}

.website-header .nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 4px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: var(--website-secondary);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.website-header .nav-link:hover,
.website-header .nav-link.active {
    color: var(--website-primary);
}

.website-header .nav-link:hover::after,
.website-header .nav-link.active::after {
    transform: scaleX(1);
}

.website-login-button,
.website-primary-button,
.website-whatsapp-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: .78rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--website-primary),
        var(--website-secondary)
    );
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(122, 63, 24, .20);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.website-login-button:hover,
.website-primary-button:hover,
.website-whatsapp-cta:hover {
    color: #fff;
    box-shadow: 0 18px 40px rgba(122, 63, 24, .28);
    transform: translateY(-2px);
}

.website-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 95px 0;
    background:
        linear-gradient(115deg, rgba(255, 251, 245, .96), rgba(249, 236, 218, .82)),
        radial-gradient(circle at 80% 20%, rgba(216, 163, 93, .18), transparent 30rem);
}

.website-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(122, 63, 24, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 63, 24, .025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}

.website-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.website-hero-glow-one {
    top: -160px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: rgba(216, 163, 93, .15);
}

.website-hero-glow-two {
    bottom: -180px;
    left: -150px;
    width: 420px;
    height: 420px;
    background: rgba(184, 115, 51, .09);
}

.website-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--website-accent);
}

.website-ornament span {
    width: 56px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--website-accent)
    );
}

.website-ornament span:last-child {
    background: linear-gradient(
        90deg,
        var(--website-accent),
        transparent
    );
}

.website-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--website-secondary);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.website-hero-title {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--website-text);
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .98;
}

.website-hero-description {
    max-width: 650px;
    margin-bottom: 32px;
    color: #65564e;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.85;
}

.website-hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.website-trust-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(122, 63, 24, .08);
    color: var(--website-primary);
}

.website-hero-trust strong,
.website-hero-trust small {
    display: block;
}

.website-hero-trust strong {
    color: var(--website-text);
    font-size: .86rem;
}

.website-hero-trust small {
    color: #8b7a70;
    font-size: .73rem;
}

.website-hero-visual {
    position: relative;
    max-width: 620px;
    margin-left: auto;
}

.website-hero-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(122, 63, 24, .12);
    border-radius: 42px 42px 120px 42px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(242,220,194,.86));
    box-shadow: 0 34px 85px rgba(92, 49, 23, .18);
    transform: rotate(1.5deg);
}

.website-hero-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.website-envelope-art {
    position: relative;
    min-height: 520px;
}

.website-invitation-paper {
    position: absolute;
    top: 62px;
    left: 50%;
    display: flex;
    width: 62%;
    min-height: 330px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 115, 51, .30);
    border-radius: 16px;
    background: #fffaf3;
    color: var(--website-primary);
    box-shadow: 0 20px 50px rgba(92, 49, 23, .13);
    transform: translateX(-50%) rotate(-4deg);
}

.website-invitation-paper::before {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(216, 163, 93, .55);
    border-radius: 12px;
    content: "";
}

.website-invitation-paper i {
    margin-bottom: 16px;
    font-size: 3.5rem;
}

.website-invitation-paper span {
    position: relative;
    z-index: 1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.website-invitation-paper small {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.website-envelope-front {
    position: absolute;
    right: 40px;
    bottom: 20px;
    left: 40px;
    display: grid;
    height: 260px;
    place-items: center;
    border-radius: 24px 24px 56px 56px;
    background:
        linear-gradient(145deg, #e5c6a4, #cda272);
    color: rgba(122, 63, 24, .72);
    font-size: 5rem;
    box-shadow: 0 28px 60px rgba(92, 49, 23, .22);
    clip-path: polygon(0 22%, 50% 58%, 100% 22%, 100% 100%, 0 100%);
}

.website-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.70);
    border-radius: 999px;
    background: rgba(255,255,255,.76);
    color: var(--website-text);
    font-size: .83rem;
    font-weight: 700;
    box-shadow: 0 15px 38px rgba(61, 36, 23, .14);
    backdrop-filter: blur(16px);
}

.website-floating-badge i {
    color: var(--website-secondary);
    font-size: 1.1rem;
}

.website-floating-badge-one {
    top: 90px;
    left: -45px;
}

.website-floating-badge-two {
    right: -30px;
    bottom: 90px;
}

.website-section {
    padding: 100px 0;
}

.website-services {
    background: rgba(255, 255, 255, .80);
}

.website-events {
    background:
        radial-gradient(circle at 50% 0, rgba(216, 163, 93, .10), transparent 28rem),
        #fcf9f4;
}

.website-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.website-section-heading h2 {
    margin: 15px 0 8px;
    color: var(--website-text);
    font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.website-section-heading p {
    margin: 0;
    color: #76665c;
    font-size: 1rem;
}

.website-service-card {
    position: relative;
    overflow: hidden;
    padding: 44px 32px;
    border: 1px solid rgba(122, 63, 24, .14);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(253,247,239,.92));
    text-align: center;
    box-shadow: 0 18px 48px rgba(61, 36, 23, .08);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.website-service-card::after {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(216, 163, 93, .20);
    border-radius: 50%;
    content: "";
}

.website-service-card:hover {
    border-color: rgba(184, 115, 51, .34);
    box-shadow: 0 26px 60px rgba(61, 36, 23, .14);
    transform: translateY(-8px);
}

.website-service-icon {
    display: grid;
    width: 98px;
    height: 98px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #fff8ee, #f4e1cb);
    color: var(--website-primary);
    font-size: 2.55rem;
    box-shadow: inset 0 0 0 1px rgba(122, 63, 24, .08);
}

.website-service-card h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.website-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    color: var(--website-secondary);
}

.website-card-divider span {
    width: 38px;
    height: 1px;
    background: rgba(184, 115, 51, .48);
}

.website-card-divider i {
    font-size: .72rem;
}

.website-service-card p {
    margin: 0;
    color: #76665c;
    line-height: 1.75;
}

.website-event-card {
    overflow: hidden;
    border: 1px solid rgba(122, 63, 24, .14);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 48px rgba(61, 36, 23, .08);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.website-event-card:hover {
    box-shadow: 0 26px 60px rgba(61, 36, 23, .14);
    transform: translateY(-7px);
}

.website-event-media {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background: #f2e6d8;
}

.website-event-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .45s ease;
}

.website-event-card:hover .website-event-media img {
    transform: scale(1.05);
}

.website-event-placeholder {
    display: grid;
    min-height: 230px;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(216, 163, 93, .24), transparent 45%),
        linear-gradient(145deg, #fff8ed, #ead3b9);
    color: var(--website-primary);
    font-size: 4.5rem;
}

.website-event-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    color: var(--website-primary);
    font-size: .73rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.website-event-body {
    padding: 24px;
}

.website-event-body h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.website-event-date {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #79685e;
    font-size: .88rem;
}

.website-event-date i {
    color: var(--website-secondary);
}

.website-event-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(122, 63, 24, .10);
}

.website-event-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--website-primary);
    font-weight: 800;
}

.website-event-link:hover {
    color: var(--website-secondary);
}

.website-event-link.is-disabled {
    cursor: default;
    opacity: .55;
}

.website-empty-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 55px 30px;
    border: 1px dashed rgba(122, 63, 24, .20);
    border-radius: 28px;
    background: rgba(255,255,255,.65);
    text-align: center;
}

.website-empty-icon {
    display: grid;
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(122, 63, 24, .08);
    color: var(--website-primary);
    font-size: 2.4rem;
}

.website-empty-state h3 {
    font-size: 1.55rem;
}

.website-empty-state p {
    margin: 0;
    color: #7a6a60;
}

.website-contact {
    background: #fff;
}

.website-contact-panel {
    position: relative;
    overflow: hidden;
    padding: 60px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 95% 10%, rgba(216,163,93,.20), transparent 22rem),
        linear-gradient(135deg, #3d2417, var(--website-primary));
    color: #fff;
    box-shadow: 0 30px 75px rgba(61, 36, 23, .20);
}

.website-contact-panel h2 {
    margin: 10px 0 14px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.website-contact-panel > .row > div:first-child > p {
    max-width: 520px;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

.website-contact-panel .website-eyebrow {
    color: #f3c98d;
}

.website-whatsapp-cta {
    margin-top: 14px;
    background: linear-gradient(135deg, #1fa855, #25d366);
    box-shadow: 0 14px 32px rgba(37, 211, 102, .25);
}

.website-contact-card {
    display: grid;
    min-height: 155px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(14px);
}

.website-contact-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.13);
    color: #f3c98d;
}

.website-contact-card span {
    color: rgba(255,255,255,.57);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.website-contact-card strong {
    margin-top: 4px;
    color: #fff;
    overflow-wrap: anywhere;
}

.website-footer {
    padding: 78px 0 28px;
    background-color: var(--website-footer);
    background-position: center;
    background-size: cover;
    color: rgba(255,255,255,.74);
}

.website-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.website-footer-brand:hover {
    color: #fff;
}

.website-footer-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.website-footer-brand-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 16px;
    color: #f1c47f;
    font-size: 1.45rem;
}

.website-footer-description {
    max-width: 350px;
    margin: 22px 0;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
}

.website-social-links {
    display: flex;
    gap: 9px;
}

.website-social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(216, 163, 93, .28);
    border-radius: 50%;
    color: #f1c47f;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.website-social-links a:hover {
    background: #f1c47f;
    color: var(--website-footer);
    transform: translateY(-3px);
}

.website-footer-title {
    margin-bottom: 22px;
    color: #f1c47f;
    font-size: 1.25rem;
}

.website-footer-links,
.website-footer-contact {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.website-footer-links a {
    color: rgba(255,255,255,.70);
}

.website-footer-links a::before {
    margin-right: 9px;
    color: #f1c47f;
    content: "›";
}

.website-footer-links a:hover {
    color: #fff;
}

.website-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.website-footer-contact i {
    margin-top: 3px;
    color: #f1c47f;
}

.website-footer-bottom {
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid rgba(216,163,93,.22);
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
}

.website-floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border: 4px solid rgba(255,255,255,.90);
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 16px 38px rgba(37, 211, 102, .35);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.website-floating-whatsapp:hover {
    color: #fff;
    box-shadow: 0 20px 44px rgba(37, 211, 102, .45);
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 991.98px) {
    .website-header .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border: 1px solid rgba(122,63,24,.10);
        border-radius: 20px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 40px rgba(61,36,23,.10);
    }

    .website-header .navbar-nav {
        margin-bottom: 16px;
    }

    .website-login-button {
        width: 100%;
    }

    .website-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .website-hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .website-hero-visual {
        margin: 10px auto 0;
    }

    .website-floating-badge-one {
        left: 14px;
    }

    .website-floating-badge-two {
        right: 14px;
    }

    .website-contact-panel {
        padding: 42px;
    }
}

@media (max-width: 767.98px) {
    .website-header {
        padding: 10px 0;
    }

    .website-brand-logo,
    .website-brand-mark {
        width: 48px;
        height: 48px;
    }

    .website-brand-name {
        font-size: 1.45rem;
    }

    .website-hero {
        padding: 65px 0;
    }

    .website-hero-card,
    .website-hero-image,
    .website-envelope-art {
        min-height: 420px;
    }

    .website-invitation-paper {
        min-height: 270px;
    }

    .website-envelope-front {
        right: 20px;
        left: 20px;
        height: 210px;
    }

    .website-floating-badge {
        padding: 10px 13px;
        font-size: .73rem;
    }

    .website-section {
        padding: 75px 0;
    }

    .website-contact-panel {
        padding: 34px 24px;
        border-radius: 26px;
    }
}

@media (max-width: 575.98px) {
    .website-hero-title {
        font-size: 3.2rem;
    }

    .website-hero-trust {
        width: 100%;
    }

    .website-hero-card,
    .website-hero-image,
    .website-envelope-art {
        min-height: 360px;
        border-radius: 28px 28px 70px 28px;
    }

    .website-invitation-paper {
        top: 38px;
        min-height: 240px;
    }

    .website-envelope-front {
        bottom: 8px;
        height: 180px;
    }

    .website-floating-badge-one {
        top: 28px;
    }

    .website-floating-badge-two {
        bottom: 30px;
    }

    .website-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

/* ==========================================================================
   PUBLIC WEBSITE HERO SLIDESHOW
   ========================================================================== */

.website-hero-slider {
    display: block;
    min-height: 0;
    padding: 0;
}

.website-hero-carousel {
    position: relative;
    overflow: hidden;
}

.website-hero-carousel .carousel-inner {
    overflow: visible;
}

.website-hero-carousel .carousel-item {
    transition: opacity .85s ease-in-out;
}

.website-hero-slide {
    position: relative;
    display: flex;
    min-height: 720px;
    align-items: center;
    overflow: hidden;
    padding: 95px 0 125px;
    background:
        linear-gradient(
            115deg,
            rgba(255, 251, 245, .98),
            rgba(249, 236, 218, .84)
        ),
        radial-gradient(
            circle at 82% 20%,
            rgba(216, 163, 93, .20),
            transparent 31rem
        );
}

.website-hero-slide::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(
            rgba(122, 63, 24, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(122, 63, 24, .025) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .72),
        transparent
    );
    pointer-events: none;
}

.website-hero-copy {
    position: relative;
    z-index: 2;
}

.website-hero-carousel .carousel-item.active .website-hero-copy {
    animation: websiteHeroCopyIn .78s ease both;
}

.website-hero-carousel .carousel-item.active .website-hero-visual {
    animation: websiteHeroVisualIn .9s ease both;
}

.website-hero-carousel .carousel-item.active .website-hero-image {
    animation: websiteHeroImageZoom 7s ease-out both;
}

.website-hero-indicators {
    bottom: 34px;
    z-index: 4;
    gap: 8px;
    margin-bottom: 0;
}

.website-hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(122, 63, 24, .30);
    opacity: 1;
    transition:
        width .3s ease,
        background .3s ease;
}

.website-hero-indicators .active {
    width: 40px;
    background: linear-gradient(
        90deg,
        var(--website-primary),
        var(--website-accent)
    );
}

.website-hero-control {
    top: 50%;
    bottom: auto;
    z-index: 5;
    width: 58px;
    height: 58px;
    opacity: 1;
    transform: translateY(-50%);
}

.website-hero-control-prev {
    left: 22px;
}

.website-hero-control-next {
    right: 22px;
}

.website-hero-control span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
    color: var(--website-primary);
    box-shadow: 0 14px 34px rgba(61, 36, 23, .14);
    backdrop-filter: blur(14px);
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.website-hero-control:hover span {
    background: var(--website-primary);
    color: #fff;
    transform: scale(1.06);
}

@keyframes websiteHeroCopyIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes websiteHeroVisualIn {
    from {
        opacity: 0;
        transform: translateX(42px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes websiteHeroImageZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 1199.98px) {
    .website-hero-control-prev {
        left: 8px;
    }

    .website-hero-control-next {
        right: 8px;
    }
}

@media (max-width: 991.98px) {
    .website-hero-slide {
        min-height: auto;
        padding: 80px 0 115px;
    }

    .website-hero-control {
        top: auto;
        bottom: 23px;
        transform: none;
    }

    .website-hero-control-prev {
        left: calc(50% - 110px);
    }

    .website-hero-control-next {
        right: calc(50% - 110px);
    }

    .website-hero-indicators {
        bottom: 41px;
    }
}

@media (max-width: 575.98px) {
    .website-hero-slide {
        padding: 65px 0 120px;
    }

    .website-hero-control {
        width: 46px;
        height: 46px;
    }

    .website-hero-control span {
        width: 42px;
        height: 42px;
    }

    .website-hero-control-prev {
        left: 18px;
    }

    .website-hero-control-next {
        right: 18px;
    }
}
/* ==========================================================================
   PUBLIC EVENT INTEGRATION
   Home page event cards, public event listing and event detail page
   ========================================================================== */

.website-event-meta {
    display: grid;
    gap: 8px;
}

.website-event-description {
    margin: 16px 0 0;
    color: #78675d;
    font-size: .9rem;
    line-height: 1.75;
}

.website-event-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.website-event-countdown > div {
    min-width: 0;
    padding: 10px 6px;
    border: 1px solid rgba(122, 63, 24, .10);
    border-radius: 13px;
    background: #fff8ef;
    text-align: center;
}

.website-event-countdown strong,
.website-event-countdown small {
    display: block;
}

.website-event-countdown strong {
    color: var(--website-primary);
    font-size: 1rem;
    line-height: 1.1;
}

.website-event-countdown small {
    margin-top: 4px;
    color: #8c786c;
    font-size: .62rem;
    font-weight: 700;
}

.website-events-actions {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.website-outline-button,
.website-primary-button,
.website-header-link {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        color .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.website-outline-button,
.website-header-link {
    border: 1px solid rgba(122, 63, 24, .18);
    background: rgba(255, 255, 255, .76);
    color: var(--website-primary);
}

.website-outline-button:hover,
.website-header-link:hover {
    border-color: rgba(122, 63, 24, .34);
    background: #fff;
    color: var(--website-secondary);
    box-shadow: 0 14px 30px rgba(61, 36, 23, .10);
    transform: translateY(-2px);
}

.website-primary-button {
    border: 0;
    background:
        linear-gradient(
            135deg,
            var(--website-primary),
            var(--website-secondary)
        );
    color: #fff;
    box-shadow: 0 14px 30px rgba(122, 63, 24, .20);
}

.website-primary-button:hover {
    color: #fff;
    box-shadow: 0 18px 36px rgba(122, 63, 24, .28);
    transform: translateY(-2px);
}

.public-events-page,
.public-event-detail-page {
    min-height: 100vh;
    background: #fcf9f4;
}

.public-events-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 90px;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(216, 163, 93, .23),
            transparent 25rem
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(184, 115, 51, .17),
            transparent 28rem
        ),
        linear-gradient(
            135deg,
            #fff9f0,
            #f3dfc8
        );
}

.public-events-hero::after {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(122, 63, 24, .10);
    border-radius: 32px;
    content: "";
    pointer-events: none;
}

.public-events-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.public-events-hero h1 {
    margin: 12px 0 18px;
    color: var(--website-text);
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 1;
}

.public-events-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #76665c;
    font-size: 1.08rem;
    line-height: 1.85;
}

.public-event-filter {
    margin-bottom: 42px;
    padding: 24px;
    border: 1px solid rgba(122, 63, 24, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 44px rgba(61, 36, 23, .07);
}

.public-event-filter .input-group-text {
    border-color: rgba(122, 63, 24, .14);
    background: #fff9f1;
    color: var(--website-primary);
}

.public-events-pagination {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.public-events-pagination .pagination {
    gap: 6px;
    margin: 0;
}

.public-events-pagination .page-link {
    display: grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    border: 1px solid rgba(122, 63, 24, .12);
    border-radius: 12px;
    background: #fff;
    color: var(--website-primary);
}

.public-events-pagination .page-item.active .page-link {
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            var(--website-primary),
            var(--website-secondary)
        );
    color: #fff;
}

.public-event-cover {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: end start;
    overflow: hidden;
    padding: 80px 0;
    background:
        linear-gradient(
            90deg,
            rgba(32, 17, 10, .88),
            rgba(61, 36, 23, .58),
            rgba(61, 36, 23, .18)
        ),
        var(--public-event-image),
        linear-gradient(
            135deg,
            var(--website-primary),
            var(--website-secondary)
        );
    background-position: center;
    background-size: cover;
}

.public-event-cover::after {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;
    content: "";
    pointer-events: none;
}

.public-event-cover-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    color: #fff;
}

.public-event-cover h1 {
    max-width: 900px;
    margin: 12px 0 20px;
    color: #fff;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: .98;
}

.public-event-cover-venue {
    display: inline-flex;
    margin: 0;
    padding: 10px 16px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .90);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.public-event-content-card,
.public-event-sidebar,
.public-invitation-notice {
    border: 1px solid rgba(122, 63, 24, .12);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 58px rgba(61, 36, 23, .09);
}

.public-event-content-card {
    padding: clamp(28px, 5vw, 52px);
}

.public-event-content-card h2 {
    margin: 18px 0;
    color: var(--website-text);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.public-event-description {
    color: #6f5e54;
    font-size: 1rem;
    line-height: 1.95;
}

.public-event-address {
    display: flex;
    margin-top: 30px;
    padding: 22px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
    background: #fff8ef;
}

.public-event-address > i {
    color: var(--website-secondary);
    font-size: 1.5rem;
}

.public-event-address small,
.public-event-address strong {
    display: block;
}

.public-event-address small {
    margin-bottom: 4px;
    color: #8b786c;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-event-address strong {
    color: var(--website-text);
    font-weight: 750;
}

.public-invitation-notice {
    display: flex;
    margin-top: 24px;
    padding: 26px;
    align-items: flex-start;
    gap: 18px;
    background:
        linear-gradient(
            135deg,
            #fff8ed,
            #f4dfc7
        );
}

.public-invitation-notice > i {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    border-radius: 17px;
    background: var(--website-primary);
    color: #fff;
    font-size: 1.35rem;
}

.public-invitation-notice h3 {
    margin: 0 0 8px;
    color: var(--website-text);
    font-size: 1.2rem;
}

.public-invitation-notice p {
    margin: 0;
    color: #715f54;
    line-height: 1.75;
}

.public-event-sidebar {
    position: sticky;
    top: 105px;
    overflow: hidden;
    padding: 12px;
}

.public-event-detail-item {
    display: flex;
    padding: 20px;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(122, 63, 24, .09);
}

.public-event-detail-item:last-of-type {
    border-bottom: 0;
}

.public-event-detail-item > i {
    color: var(--website-secondary);
    font-size: 1.35rem;
}

.public-event-detail-item small,
.public-event-detail-item strong {
    display: block;
}

.public-event-detail-item small {
    color: #917e72;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-event-detail-item strong {
    margin-top: 4px;
    color: var(--website-text);
}

.public-event-large-countdown {
    margin: 12px;
    padding: 22px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            var(--website-primary),
            var(--website-secondary)
        );
    color: #fff;
}

.public-event-large-countdown h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}

.public-event-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.public-event-countdown-grid > div {
    min-width: 0;
    padding: 10px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    text-align: center;
}

.public-event-countdown-grid strong,
.public-event-countdown-grid small {
    display: block;
}

.public-event-countdown-grid strong {
    font-size: 1.05rem;
}

.public-event-countdown-grid small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: .58rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .public-event-sidebar {
        position: static;
    }

    .public-event-cover {
        min-height: 440px;
    }
}

@media (max-width: 767.98px) {
    .public-events-hero {
        padding: 82px 0 68px;
    }

    .public-event-cover {
        min-height: 390px;
        padding: 65px 0;
    }

    .public-event-countdown-grid,
    .website-event-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-invitation-notice {
        display: block;
    }

    .public-invitation-notice > i {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .website-event-countdown {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .website-event-countdown small {
        font-size: .52rem;
    }

    .public-event-cover::after,
    .public-events-hero::after {
        inset: 10px;
        border-radius: 22px;
    }

    .public-event-filter {
        padding: 18px;
    }
}
.website-header.is-scrolled {
    box-shadow: 0 14px 38px rgba(61, 36, 23, .12);
}

.website-event-countdown.is-complete,
.public-event-large-countdown.is-complete {
    opacity: .78;
}
