@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&family=Libre+Baskerville:wght@400;700&family=Parisienne&family=Special+Elite&family=Tangerine:wght@400;700&display=swap');

/* ============================= */
/* GLOBAL RESET + THEME */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --paper-light: #f3dfbd;
    --paper: #e8c99a;
    --tan: #c4935f;
    --brown: #5a3825;
    --dark-brown: #2b1a12;
    --ink: #1f130d;
    --glass: rgba(243, 223, 189, 0.38);
    --glass-border: rgba(255, 244, 220, 0.48);
}

body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: none;
    color: var(--ink);
    font-family: "Libre Baskerville", Georgia, serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url("/static/images/site-bg.jpg") center center / cover no-repeat;
    filter: blur(3px) brightness(0.78) sepia(12%);
    transform: scale(1.03);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(243, 223, 189, 0.78),
        rgba(232, 201, 154, 0.72),
        rgba(196, 147, 95, 0.45)
    );
}

h1 {
    color: var(--dark-brown);
    font-family: "Parisienne", cursive;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    text-shadow:
        1px 1px 0 rgba(255, 244, 220, 0.35),
        2px 2px 0 rgba(90, 56, 37, 0.10);
}

button {
    margin-top: 6px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 244, 220, 0.45);
    border-radius: 14px;
    background: rgba(43, 26, 18, 0.78);
    box-shadow: 0 6px 18px rgba(43, 26, 18, 0.22);
    color: var(--paper-light);
    cursor: pointer;
    font-family: "Special Elite", monospace;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

button:hover {
    background: rgba(90, 56, 37, 0.92);
    transform: translateY(-3px);
}

/* ============================= */
/* LOGIN PAGE */
/* ============================= */

body.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    overflow: hidden;
}

.login-container {
    position: relative;
    z-index: 1;
    width: min(620px, 92vw);
    padding: 46px 44px 40px;
    text-align: center;
    background: rgba(243, 223, 189, 0.42);
    border: 1px solid rgba(255, 244, 220, 0.52);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 16px 42px rgba(43, 26, 18, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.login-container > *:not(.vintage-frame) {
    position: relative;
    z-index: 1;
}

.vintage-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vintage-frame path {
    fill: none;
    stroke: rgba(43, 26, 18, 0.54);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.login-private-line {
    max-width: 520px;
    margin: 0 auto 18px;
    padding: 8px 0;
    border-top: 2px solid rgba(43, 26, 18, 0.42);
    border-bottom: 2px solid rgba(43, 26, 18, 0.42);
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.login-title {
    margin: 0;
    color: var(--dark-brown);
    font-family: "Parisienne", cursive;
    font-size: clamp(54px, 8vw, 78px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    text-shadow:
        1px 1px 0 rgba(255, 244, 220, 0.35),
        2px 2px 0 rgba(90, 56, 37, 0.10);
}

.login-divider {
    height: 2px;
    max-width: 520px;
    margin: 22px auto 22px;
    background: rgba(43, 26, 18, 0.42);
}

.login-subtitle {
    max-width: 470px;
    margin: 0 auto 26px;
    color: var(--brown);
    font-size: 15px;
    line-height: 1.7;
}

.login-form {
    display: grid;
    gap: 17px;
    max-width: 520px;
    margin: 0 auto;
}

.form-group {
    text-align: left;
}

.form-group label,
.rsvp-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.rsvp-field select,
.rsvp-field input,
.rsvp-field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(43, 26, 18, 0.30);
    border-radius: 13px;
    outline: none;
    background: rgba(255, 244, 220, 0.50);
    color: var(--ink);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 15px;
}

.form-group input {
    padding: 15px 17px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.rsvp-field textarea::placeholder {
    color: rgba(90, 56, 37, 0.62);
}

.form-group input:focus,
.rsvp-field select:focus,
.rsvp-field input:focus,
.rsvp-field textarea:focus {
    border-color: var(--dark-brown);
    box-shadow: 0 0 0 3px rgba(90, 56, 37, 0.15);
}

.open-invitation-btn {
    width: 100%;
    margin-top: 8px;
    background: rgba(43, 26, 18, 0.86);
    color: var(--paper-light);
    border: 1px solid rgba(255, 244, 220, 0.50);
    border-radius: 14px;
    box-shadow:
        0 8px 20px rgba(43, 26, 18, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 14px;
}

.open-invitation-btn:hover {
    background: rgba(90, 56, 37, 0.95);
    transform: translateY(-3px);
}

.small-text {
    margin-top: 20px;
    color: var(--brown);
    font-family: "Special Elite", monospace;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ============================= */
/* DASHBOARD SHELL */
/* ============================= */

body.dashboard-page {
    min-height: 100vh;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    background: none;
}

.dashboard-container {
    width: 100vw;
    min-height: 100vh;
    padding: 34px 70px 50px;
    text-align: center;
    background: transparent;
}

.dashboard-container .top-line,
.dashboard-container .divider,
.tabs,
.tab-content {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

body.dashboard-page .top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto 18px;
    padding: 8px 0;
    border-top: 2px solid rgba(43, 26, 18, 0.45);
    border-bottom: 2px solid rgba(43, 26, 18, 0.45);
    color: var(--brown);
    font-family: "Special Elite", monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.dashboard-page .top-line span {
    flex: 1;
}

body.dashboard-page .top-line span:first-child {
    text-align: left;
}

body.dashboard-page .top-line span:nth-child(2) {
    text-align: center;
}

body.dashboard-page .top-line span:last-child {
    text-align: right;
}

.dashboard-title {
    margin: 18px auto 18px;
    color: var(--dark-brown);
    font-family: "Parisienne", cursive;
    font-size: 78px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    text-shadow:
        1px 1px 0 rgba(255, 244, 220, 0.35),
        2px 2px 0 rgba(90, 56, 37, 0.10);
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 42px;
    margin: 18px auto 34px;
    padding: 12px 0 10px;
    border-top: 2px solid rgba(43, 26, 18, 0.45);
    border-bottom: 2px solid rgba(43, 26, 18, 0.45);
}

.tab-btn {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    color: var(--dark-brown);
    cursor: pointer;
    font-family: "Special Elite", monospace;
    font-size: 13px;
    letter-spacing: 1.4px;
    line-height: 1.2;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.tab-btn:hover {
    background: transparent;
    color: var(--brown);
    transform: translateY(-1px);
}

.tab-btn.active {
    color: var(--dark-brown);
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin: 10px 0 14px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tab-content p {
    color: var(--brown);
    font-size: 16px;
    line-height: 1.7;
}

.logout-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.logout-link:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* WELCOME PAGE */
/* ============================= */

.welcome-section-header,
.countdown-section-header {
    max-width: 980px;
    margin: 28px auto 22px;
    text-align: center;
}

.welcome-section-header h2,
.countdown-section-header h2 {
    margin-bottom: 14px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-section-header p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--brown);
    font-size: 17px;
    line-height: 1.75;
}

.countdown-section-header {
    margin-top: 24px;
    margin-bottom: 24px;
}

.countdown-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(10px, 3vw, 34px);
    max-width: 760px;
    margin: 0 auto;
    padding: 14px 0;
    overflow: hidden;
    border-top: 2px solid rgba(43, 26, 18, 0.38);
    border-bottom: 2px solid rgba(43, 26, 18, 0.38);
}

.countdown-inline div {
    width: 25%;
    min-width: 0;
    text-align: center;
}

.countdown-inline span {
    display: block;
    color: var(--dark-brown);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1;
}

.countdown-inline small {
    display: block;
    margin-top: 6px;
    color: var(--brown);
    font-family: "Special Elite", monospace;
    font-size: clamp(8px, 1.4vw, 11px);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-hero {
    position: relative;
    width: 100%;
    max-width: 1250px;
    height: 58vh;
    min-height: 430px;
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 244, 220, 0.2);
    box-shadow: 0 18px 42px rgba(43, 26, 18, 0.28);
}

.welcome-hero .slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.04);
    filter: sepia(8%) contrast(98%) brightness(1.02);
    transition:
        opacity 1.25s ease-in-out,
        transform 4.5s ease-in-out;
}

.welcome-hero .slide.active-slide {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.welcome-hero.login-glow {
    animation: login-hero-glow 1.6s ease-in-out 2;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(43, 26, 18, 0.70);
    color: var(--paper-light);
    border: 1px solid rgba(255, 244, 220, 0.45);
    cursor: pointer;
    font-size: 28px;
    transition: 0.3s ease;
}

.slide-arrow:hover {
    background: rgba(90, 56, 37, 0.92);
}

.left-arrow {
    left: 24px;
}

.right-arrow {
    right: 24px;
}

.slide-dots {
    margin-top: 18px;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(43, 26, 18, 0.35);
    cursor: pointer;
}

.dot.active-dot {
    background: rgba(43, 26, 18, 0.85);
}

@keyframes login-hero-glow {
    0%, 100% {
        box-shadow: 0 18px 42px rgba(43, 26, 18, 0.28);
    }

    50% {
        box-shadow:
            0 0 0 6px rgba(145, 105, 38, 0.18),
            0 18px 48px rgba(43, 26, 18, 0.34);
    }
}

/* ============================= */
/* SHARED CARDS */
/* ============================= */

.info-card {
    margin: 18px auto;
    padding: 22px;
    text-align: left;
    background: rgba(255, 244, 220, 0.32);
    border: 1px solid rgba(43, 26, 18, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(43, 26, 18, 0.12);
}

.info-card h3 {
    margin-bottom: 8px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================= */
/* SCHEDULE + RSVP */
/* Title | Details | Attire | Actions | RSVP */
/* ============================= */

.schedule-intro {
    max-width: 900px;
    margin: 0 auto 26px;
    color: var(--brown);
    font-size: 17px;
    line-height: 1.7;
}

/* Event card shell */
.event-card {
    position: relative;
    max-width: 1050px;
    margin: 24px auto 34px;
    padding: 48px 32px 28px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(190, 148, 77, 0.55);
    border-radius: 24px;

    /* IMPORTANT: show full artwork */
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 12px 28px rgba(43, 26, 18, 0.16),
        inset 0 0 0 7px rgba(255, 244, 220, 0.30),
        inset 0 0 0 9px rgba(190, 148, 77, 0.18);
}

.event-card::before {
    content: "";
    position: absolute;
    inset: 13px;
    z-index: 0;
    border: 1px solid rgba(190, 148, 77, 0.42);
    border-radius: 17px;
    pointer-events: none;
}

.event-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 0;
    border: 1px solid rgba(255, 244, 220, 0.34);
    border-radius: 13px;
    background: linear-gradient(
        to bottom,
        rgba(255, 248, 235, 0.18),
        rgba(255, 248, 235, 0.06)
    );
    pointer-events: none;
}

.event-card > * {
    position: relative;
    z-index: 1;
}

/* Event backgrounds */
.event-haldi {
    background:
        linear-gradient(
            135deg,
            rgba(255, 244, 220, 0.50),
            rgba(255, 226, 124, 0.14)
        ),
        url("/static/images/HALDI.png");
    border-color: rgba(209, 156, 34, 0.58);
}

.event-hindu {
    background:
        linear-gradient(
            135deg,
            rgba(255, 244, 220, 0.50),
            rgba(128, 38, 32, 0.08)
        ),
        url("/static/images/WEDDING.png");
    border-color: rgba(153, 69, 57, 0.50);
}

.event-christian {
    background:
        linear-gradient(
            135deg,
            rgba(255, 244, 220, 0.54),
            rgba(115, 150, 102, 0.10)
        ),
        url("/static/images/RECEPTION.png");
    border-color: rgba(104, 132, 88, 0.50);
}

.event-theme-badge,
.event-description,
.event-timeline,
.attire-box,
.attire-guide-box {
    display: none !important;
}

.event-header {
    display: block;
}

.event-card .event-header {
    padding-right: 0;
}

/* Event title */
.event-title-block {
    max-width: 850px;
    margin: 0 auto 28px;
    padding-right: 0;
    text-align: center;
}

.event-card h3 {
    display: block;
    margin: 0 auto;
    padding: 0;
    border-bottom: none;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 9px;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
}

.event-haldi h3 {
    color: rgba(163, 100, 19, 0.96);
}

.event-hindu h3 {
    color: rgba(128, 38, 32, 0.92);
}

.event-christian h3 {
    color: rgba(74, 103, 59, 0.92);
}

.event-hindu h3,
.event-christian h3 {
    max-width: 760px;
    font-size: 46px;
    letter-spacing: 7px;
    line-height: 1.08;
}

.event-kicker {
    margin: 18px auto 0;
    color: var(--brown);
    font-family: "Special Elite", monospace;
    font-size: 13px;
    letter-spacing: 5px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

/* Meta row */
.event-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 0;
    max-width: 840px;
    margin: 0 auto 32px;
}

.event-meta-item {
    position: relative;
    padding: 0 26px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.event-meta-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: 104px;
    border-right: 1px dashed rgba(180, 119, 31, 0.38);
}

.event-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background: rgba(218, 173, 88, 0.34);
    border: 1px solid rgba(180, 119, 31, 0.18);
    border-radius: 50%;
    color: rgba(130, 88, 18, 0.92);
    font-family: "Special Elite", monospace;
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 4px 10px rgba(43, 26, 18, 0.05);
}

/* New icon HTML support */
.meta-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 173, 88, 0.34);
    border: 1px solid rgba(180, 119, 31, 0.18);
    border-radius: 50%;
    color: rgba(130, 88, 18, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 4px 10px rgba(43, 26, 18, 0.05);
}

.meta-icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-meta-item span:not(.event-meta-icon),
.meta-label {
    display: block;
    margin-bottom: 7px;
    color: var(--brown);
    font-family: "Special Elite", monospace;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
}

.event-meta-item strong,
.meta-value {
    display: block;
    color: var(--dark-brown);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42;
    text-align: center;
}

/* Attire guide */
.attire-guide-card {
    max-width: 430px;
    margin: 0 auto 24px;
    padding: 18px 20px 20px;
    text-align: center;
    background: rgba(255, 244, 220, 0.46);
    border: 1px solid rgba(180, 119, 31, 0.44);
    border-radius: 18px;
    box-shadow:
        0 8px 18px rgba(43, 26, 18, 0.08),
        inset 0 0 0 4px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.attire-guide-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.attire-guide-image {
    display: block;
    width: 100%;
    max-height: 175px;
    object-fit: contain;
    margin: 0 auto 8px;
    mix-blend-mode: multiply;
}

.attire-guide-card strong {
    display: block;
    margin-top: 6px;
    color: var(--dark-brown);
    font-family: "Great Vibes", cursive;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.05;
}

.attire-guide-card small {
    display: block;
    margin-top: 4px;
    color: var(--brown);
    font-family: "Special Elite", monospace;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.attire-guide-card p {
    margin-top: 10px;
    color: var(--brown);
    font-size: 13px;
    line-height: 1.45;
}

/* Calendar / Directions */
.event-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 24px;
}

.event-action-link {
    display: inline-block;
    padding: 9px 14px;
    background: rgba(255, 244, 220, 0.58);
    border: 1px solid rgba(43, 26, 18, 0.30);
    border-radius: 999px;
    box-shadow:
        0 4px 10px rgba(43, 26, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    color: var(--dark-brown);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 13px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
    transition: 0.25s ease;
}

.event-action-link:hover {
    background: rgba(43, 26, 18, 0.78);
    color: var(--paper-light);
    transform: translateY(-2px);
}

.event-haldi .event-action-link:hover {
    background: rgba(194, 139, 32, 0.88);
}

.event-hindu .event-action-link:hover {
    background: rgba(128, 38, 32, 0.86);
}

.event-christian .event-action-link:hover {
    background: rgba(74, 103, 59, 0.82);
}

/* RSVP confirmation */
.rsvp-confirmation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(160, 139, 94, 0.32);
    background: linear-gradient(
        90deg,
        rgba(218, 228, 198, 0.92) 0%,
        rgba(245, 239, 220, 0.92) 45%,
        rgba(249, 228, 214, 0.90) 100%
    );
    box-shadow:
        0 6px 18px rgba(70, 45, 24, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.rsvp-confirmation.status-no {
    background: linear-gradient(
        90deg,
        rgba(229, 196, 180, 0.74) 0%,
        rgba(245, 239, 220, 0.90) 55%,
        rgba(255, 244, 220, 0.88) 100%
    );
}

.rsvp-confirmation.status-maybe {
    background: linear-gradient(
        90deg,
        rgba(237, 214, 157, 0.78) 0%,
        rgba(245, 239, 220, 0.90) 55%,
        rgba(255, 244, 220, 0.88) 100%
    );
}

.rsvp-status-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0;
}

.rsvp-status-header h4 {
    margin: 0;
    color: #2d1d14;
    font-family: "Special Elite", monospace;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.confirmation-details {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 auto 0 0;
}

.confirmation-details p {
    margin: 0;
    color: #4d382b;
    font-size: 14px;
    line-height: 1.4;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(77, 98, 64, 0.28);
    color: #fff7eb;
    font-family: "Special Elite", monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-yes {
    background: #748b5d;
    color: #fffaf2;
    border-color: rgba(77, 98, 64, 0.35);
}

.badge-no {
    background: #8f6a60;
    color: #fffaf2;
}

.badge-maybe {
    background: #b59b63;
    color: #fffaf2;
}

.edit-rsvp-btn {
    width: auto;
    min-width: 150px;
    margin-left: auto;
    padding: 11px 22px;
    border-radius: 14px;
    border: 1px solid rgba(184, 137, 86, 0.48);
    background: linear-gradient(
        to bottom,
        rgba(255, 248, 236, 0.96),
        rgba(244, 229, 205, 0.94)
    );
    color: #3d2a1f;
    font-family: "Special Elite", monospace;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        0 4px 10px rgba(56, 36, 19, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.edit-rsvp-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(
        to bottom,
        rgba(255, 248, 236, 0.98),
        rgba(238, 217, 186, 0.96)
    );
    color: #3d2a1f;
    box-shadow:
        0 6px 14px rgba(56, 36, 19, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* RSVP form */
.rsvp-form {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(43, 26, 18, 0.25);
}

.rsvp-form.is-hidden {
    display: none;
}

.rsvp-form-heading {
    margin-bottom: 16px;
    text-align: left;
}

.rsvp-form-heading span {
    display: block;
    margin-bottom: 4px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rsvp-form-heading p {
    margin: 0;
    color: var(--brown);
    font-size: 14px;
    line-height: 1.5;
}

.rsvp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.rsvp-field {
    margin-bottom: 16px;
    text-align: left;
}

.rsvp-field textarea {
    min-height: 70px;
    resize: vertical;
}

.rsvp-helper {
    margin-top: 7px;
    color: var(--brown);
    font-size: 12px;
    line-height: 1.45;
}

.rsvp-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px 18px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(
        90deg,
        rgba(77, 48, 33, 0.96),
        rgba(109, 68, 46, 0.96)
    );
    color: #fff7ec;
    font-family: "Special Elite", monospace;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(68, 39, 22, 0.14);
}

.rsvp-btn:hover {
    background: linear-gradient(
        90deg,
        rgba(90, 56, 37, 0.98),
        rgba(119, 76, 50, 0.98)
    );
}

/* ============================= */
/* TRAVEL PAGE */
/* ============================= */

.travel-page-header {
    max-width: 900px;
    margin: 28px auto 30px;
    text-align: center;
}

.travel-page-header h2 {
    margin-bottom: 12px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.travel-page-header p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--brown);
    font-size: 17px;
    line-height: 1.75;
}

.travel-paper-grid,
.mixed-newspaper-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    grid-auto-flow: dense;
    align-items: start;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.travel-paper-card {
    position: relative;
    padding: 20px;
    text-align: left;
    background: rgba(255, 244, 220, 0.42);
    border: 1px solid rgba(43, 26, 18, 0.32);
    border-left: 6px solid rgba(90, 56, 37, 0.62);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 10px 24px rgba(43, 26, 18, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.travel-paper-card::before,
.travel-paper-card::after,
.qa-card::before,
.qa-card::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1px;
    background: rgba(43, 26, 18, 0.22);
}

.travel-paper-card::before,
.qa-card::before {
    top: 8px;
}

.travel-paper-card::after,
.qa-card::after {
    bottom: 8px;
}

.airport-feature {
    border-left-color: rgba(145, 105, 38, 0.78);
}

.hotel-side-card {
    border-left-color: rgba(90, 56, 37, 0.68);
    transform: translateY(8px);
}

.things-clipping-card {
    border-left-color: rgba(74, 103, 59, 0.70);
    transform: translateY(-4px);
}

.restaurant-ad-card {
    border-left-color: rgba(128, 38, 32, 0.70);
    transform: translateY(-10px);
}

.paper-label,
.qa-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 9px;
    background: rgba(43, 26, 18, 0.82);
    color: var(--paper-light);
    font-family: "Special Elite", monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.travel-paper-card h3 {
    margin-bottom: 16px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newspaper-split-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.newspaper-split-title h3 {
    margin-bottom: 0;
}

.mini-stamp {
    display: inline-block;
    padding: 6px 9px;
    color: var(--dark-brown);
    border: 1px solid rgba(43, 26, 18, 0.45);
    font-family: "Special Elite", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(2deg);
}

.paper-image-wrap {
    width: 100%;
    height: 180px;
    margin: 12px 0 18px;
    overflow: hidden;
    background: rgba(255, 244, 220, 0.25);
    border: 1px solid rgba(43, 26, 18, 0.38);
    border-radius: 3px;
}

.paper-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) sepia(35%) contrast(105%) brightness(94%);
    opacity: 0.9;
}

.feature-image {
    height: 210px;
}

.side-image {
    height: 180px;
    margin: 0;
}

.clipping-image {
    float: left;
    width: 46%;
    height: 145px;
    margin: 2px 16px 10px 0;
    transform: rotate(-1deg);
}

.things-clipping-card::after {
    content: "";
    display: table;
    clear: both;
}

.bottom-ad-image {
    height: 135px;
    margin-top: 16px;
    margin-bottom: 0;
}

.paper-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(43, 26, 18, 0.28);
}

.paper-columns .paper-item {
    padding-top: 0;
    border-top: none;
}

.paper-item {
    padding: 13px 0;
    border-top: 1px dashed rgba(43, 26, 18, 0.28);
}

.paper-item:first-of-type,
.no-top-border {
    border-top: none;
}

.paper-item h4 {
    margin-bottom: 7px;
    color: var(--dark-brown);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 17px;
    font-weight: 700;
}

.paper-item p {
    margin-bottom: 8px;
    color: var(--brown);
    font-size: 14px;
    line-height: 1.65;
}

.paper-item a {
    display: inline-block;
    padding-bottom: 2px;
    color: var(--dark-brown);
    border-bottom: 1px solid rgba(43, 26, 18, 0.50);
    font-family: "Special Elite", monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.paper-item a:hover {
    color: var(--brown);
    border-bottom-color: var(--brown);
}

.hotel-side-layout {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 16px;
    align-items: start;
}

.hotel-copy .paper-item:first-child {
    padding-top: 0;
}

.restaurant-ad-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.restaurant-ad-heading h3 {
    margin-bottom: 0;
    line-height: 0.95;
}

.ad-circle {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 244, 220, 0.55);
    border-radius: 50%;
    background: rgba(43, 26, 18, 0.82);
    color: var(--paper-light);
    font-family: "Special Elite", monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(8deg);
}

/* ============================= */
/* REGISTRY */
/* ============================= */

#registry .info-card {
    max-width: 850px;
    text-align: center;
}

/* ============================= */
/* Q&A PAGE */
/* ============================= */

.qa-section-header {
    max-width: 900px;
    margin: 28px auto 26px;
    text-align: center;
}

.qa-section-header h2 {
    margin-bottom: 12px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.qa-section-header p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--brown);
    font-size: 17px;
    line-height: 1.75;
}

.qa-newspaper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.qa-card {
    position: relative;
    padding: 22px 20px;
    text-align: left;
    background: rgba(243, 223, 189, 0.62);
    border: 2px solid rgba(43, 26, 18, 0.34);
    border-radius: 4px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 244, 220, 0.24),
        0 8px 18px rgba(43, 26, 18, 0.10);
}

.qa-card h3 {
    margin-bottom: 12px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.qa-card p {
    color: var(--brown);
    font-size: 15px;
    line-height: 1.75;
}

.featured-qa {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 244, 220, 0.72), rgba(232, 201, 154, 0.58));
}

.contact-qa {
    background: linear-gradient(135deg, rgba(255, 248, 232, 0.72), rgba(190, 211, 178, 0.34));
    border-left: 7px solid rgba(74, 103, 59, 0.72);
}

.qa-card:nth-child(3n) {
    transform: translateY(6px);
}

.qa-card:nth-child(4n) {
    background: rgba(232, 201, 154, 0.58);
}

.qa-card:nth-child(5n) {
    transform: translateY(-4px);
}

/* ============================= */
/* TOASTS + CONFETTI */
/* ============================= */

.confetti-container {
    position: fixed;
    inset: 0;
    z-index: 9998;
    overflow: hidden;
    pointer-events: none;
}

.confetti-piece {
    position: absolute;
    top: -24px;
    border-radius: 2px;
    opacity: 0.9;
    animation: confetti-fall 5.8s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    75% {
        opacity: 0.9;
    }

    100% {
        transform: translateY(112vh) rotate(520deg);
        opacity: 0;
    }
}

.celebration-toast,
.login-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: all 0.4s ease;
}

.celebration-toast.show,
.login-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.celebration-toast-inner,
.login-toast-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
    max-width: 420px;
    padding: 16px 18px;
    background: rgba(255, 244, 220, 0.95);
    border: 1px solid rgba(43, 26, 18, 0.28);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(43, 26, 18, 0.18);
}

.celebration-toast-inner {
    border-left: 6px solid rgba(74, 103, 59, 0.82);
}

.login-toast-inner {
    border-left: 6px solid rgba(145, 105, 38, 0.85);
}

.celebration-icon,
.login-icon {
    font-size: 24px;
    line-height: 1;
}

.celebration-toast strong,
.login-toast strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark-brown);
    font-family: "Special Elite", monospace;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.celebration-toast p,
.login-toast p {
    margin: 0;
    color: var(--brown);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1000px) {
    .travel-paper-grid,
    .mixed-newspaper-grid,
    .paper-columns,
    .hotel-side-layout {
        grid-template-columns: 1fr;
    }

    .side-image {
        height: 180px;
        margin: 12px 0 0;
    }

    .clipping-image {
        float: none;
        width: 100%;
        height: 180px;
        margin: 12px 0 16px;
        transform: none;
    }

    .hotel-side-card,
    .restaurant-ad-card,
    .things-clipping-card {
        transform: none;
    }

    .qa-newspaper-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-qa {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: 56px;
    }

    .login-container {
        width: 90%;
        padding: 42px 28px;
    }

    .dashboard-container {
        padding: 28px 22px 44px;
    }

    .dashboard-title {
        font-size: 62px;
    }

    .top-line {
        gap: 8px;
        font-size: 10px;
    }

    .tabs {
        gap: 24px;
    }

    .welcome-hero {
        height: 60vh;
        min-height: 430px;
    }

    .event-card h3 {
        font-size: 42px;
        letter-spacing: 6px;
    }

    .event-hindu h3,
    .event-christian h3 {
        font-size: 38px;
        letter-spacing: 4px;
    }
}

@media (max-width: 700px) {
    .event-card {
        margin: 22px auto 30px;
        padding: 24px 18px 22px;
        border-radius: 20px;
    }

    .event-card::before {
        inset: 8px;
        border-radius: 15px;
    }

    .event-card::after {
        inset: 13px;
        border-radius: 11px;
    }

    .event-title-block {
        margin-bottom: 22px;
        text-align: left;
    }

    .event-card h3 {
        font-size: 30px;
        letter-spacing: 3px;
        line-height: 1.12;
        text-align: left;
    }

    .event-hindu h3,
    .event-christian h3 {
        font-size: 27px;
        letter-spacing: 2px;
        text-align: left;
    }

    .event-kicker {
        margin-top: 10px;
        font-size: 11px;
        letter-spacing: 1.4px;
        text-align: left;
    }

    .event-meta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        margin: 16px 0 22px;
    }

    .event-meta-item {
        padding: 13px 14px;
        text-align: left;
        background: rgba(255, 244, 220, 0.50);
        border: 1px solid rgba(43, 26, 18, 0.18);
        border-radius: 12px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .event-meta-item:not(:last-child)::after {
        display: none;
    }

    .event-meta-location {
        grid-column: auto;
    }

    .event-meta-icon,
    .meta-icon {
        width: 36px;
        height: 36px;
        margin: 0 0 8px;
    }

    .meta-icon svg {
        width: 16px;
        height: 16px;
    }

    .event-meta-item span:not(.event-meta-icon),
    .event-meta-item strong,
    .meta-label,
    .meta-value {
        text-align: left;
    }

    .attire-guide-card {
        max-width: 100%;
        margin: 0 0 20px;
        padding: 16px 15px 18px;
    }

    .attire-guide-image {
        max-height: 140px;
    }

    .attire-guide-card strong {
        font-size: 28px;
    }

    .event-actions {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .event-action-link {
        padding: 8px 11px;
        font-size: 12px;
    }

    .rsvp-confirmation {
        align-items: flex-start;
        padding: 14px;
        gap: 12px;
    }

    .rsvp-status-header {
        width: 100%;
    }

    .confirmation-details {
        width: 100%;
        gap: 10px;
    }

    .confirmation-details p {
        width: 100%;
    }

    .edit-rsvp-btn {
        width: 100%;
        min-width: 0;
        margin-left: 0;
    }

    .rsvp-grid,
    .qa-newspaper-grid {
        grid-template-columns: 1fr;
    }

    .featured-qa {
        grid-column: span 1;
    }

    .qa-card:nth-child(3n),
    .qa-card:nth-child(5n) {
        transform: none;
    }
}

@media (max-width: 600px) {
    body.dashboard-page .top-line {
        flex-direction: column;
        gap: 4px;
    }

    body.dashboard-page .top-line span {
        text-align: center !important;
    }

    .dashboard-title {
        font-size: 54px;
    }

    .tabs {
        gap: 16px;
        padding: 12px 0;
    }

    .tab-btn {
        font-size: 12px;
    }

    .welcome-hero {
        height: 52vh;
        min-height: 360px;
        border-radius: 18px;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .left-arrow {
        left: 14px;
    }

    .right-arrow {
        right: 14px;
    }

    .countdown-inline {
        gap: 8px;
        padding: 12px 0;
    }

    .celebration-toast,
    .login-toast {
        top: 16px;
        right: 16px;
        left: 16px;
    }

    .celebration-toast-inner,
    .login-toast-inner {
        width: 100%;
        min-width: auto;
    }
}

/* ============================= */
/* FORCE FULL EVENT BACKGROUND ARTWORK */
/* ============================= */

.event-haldi {
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 244, 220, 0.30),
            rgba(255, 226, 124, 0.06)
        ),
        url("/static/images/HALDI.png") !important;

    background-size: 100% 100%, 100% 100% !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
}

.event-hindu {
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 244, 220, 0.30),
            rgba(128, 38, 32, 0.05)
        ),
        url("/static/images/WEDDING.png") !important;

    background-size: 100% 100%, 100% 100% !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
}

.event-christian {
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 244, 220, 0.34),
            rgba(115, 150, 102, 0.06)
        ),
        url("/static/images/RECEPTION.png") !important;

    background-size: 100% 100%, 100% 100% !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
}

/* make overlay lighter so the artwork is not washed out */
.event-card::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 248, 235, 0.08),
        rgba(255, 248, 235, 0.03)
    ) !important;
}

/* ============================= */
/* TYPOGRAPHY REFINEMENT */
/* Elegant wedding + soft vintage */
/* ============================= */

/* Main couple name: keep cursive */
.dashboard-title,
.login-title {
    font-family: "Parisienne", cursive !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Body copy: elegant and readable */
body,
.tab-content p,
.schedule-intro,
.welcome-section-header p,
.travel-page-header p,
.qa-section-header p,
.paper-item p,
.qa-card p,
.confirmation-details p,
.rsvp-form-heading p,
.rsvp-helper {
    font-family: "Libre Baskerville", Georgia, serif !important;
}

/* Main tab/page headings: more wedding-editorial, less typewriter */
.tab-content h2,
.welcome-section-header h2,
.countdown-section-header h2,
.travel-page-header h2,
.qa-section-header h2,
#schedule h2,
#registry h2 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
}

/* Schedule event titles: elegant invitation serif */
.event-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-weight: 700 !important;
    letter-spacing: 7px !important;
    line-height: 1.05 !important;
}

/* Schedule subtitle/kicker: keep vintage, but softer */
.event-kicker {
    font-family: "Special Elite", monospace !important;
    font-size: 12px !important;
    letter-spacing: 4px !important;
    line-height: 1.5 !important;
}

/* Navigation: keep the guest-edition newspaper feel */
.tab-btn,
body.dashboard-page .top-line,
.login-private-line,
.paper-label,
.qa-label,
.mini-stamp,
.meta-label,
.attire-guide-label,
.rsvp-form-heading span,
.form-group label,
.rsvp-field label {
    font-family: "Special Elite", monospace !important;
}

/* Make nav less harsh */
.tab-btn {
    font-size: 12px !important;
    letter-spacing: 1.7px !important;
    font-weight: 400 !important;
}

/* Top newspaper line: lighter and cleaner */
body.dashboard-page .top-line {
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
}

/* Countdown numbers: elegant instead of western */
.countdown-inline span {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

/* Countdown labels: small vintage accent */
.countdown-inline small {
    font-family: "Special Elite", monospace !important;
    letter-spacing: 1.2px !important;
}

/* Travel/Q&A card titles: serif for elegance */
.travel-paper-card h3,
.qa-card h3,
.paper-item h4 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
}

/* Attire guide script stays romantic */
.attire-guide-card strong {
    font-family: "Great Vibes", cursive !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

/* RSVP confirmation: cleaner hierarchy */
.rsvp-status-header h4 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.status-badge,
.edit-rsvp-btn,
.rsvp-btn,
.event-action-link {
    font-family: "Special Elite", monospace !important;
    letter-spacing: 1px !important;
}

/* Calendar/action buttons: slightly softer */
.event-action-link {
    font-size: 12px !important;
    text-transform: uppercase !important;
}

/* Inputs stay readable */
.form-group input,
.rsvp-field select,
.rsvp-field input,
.rsvp-field textarea {
    font-family: "Libre Baskerville", Georgia, serif !important;
}

/* Mobile typography */
@media (max-width: 700px) {
    .dashboard-title {
        font-size: 56px !important;
        line-height: 1.05 !important;
    }

    .tab-content h2,
    .welcome-section-header h2,
    .countdown-section-header h2,
    .travel-page-header h2,
    .qa-section-header h2,
    #schedule h2,
    #registry h2 {
        font-size: 28px !important;
        letter-spacing: 1.2px !important;
    }

    .event-card h3 {
        font-size: 32px !important;
        letter-spacing: 3px !important;
        line-height: 1.1 !important;
    }

    .event-hindu h3,
    .event-christian h3 {
        font-size: 30px !important;
        letter-spacing: 2px !important;
    }

    .event-kicker {
        font-size: 11px !important;
        letter-spacing: 1.6px !important;
    }

    .tab-btn {
        font-size: 11px !important;
        letter-spacing: 1.1px !important;
    }
}