/* NANDOTSAV 2026 - Master Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cinzel:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Great+Vibes&display=swap');

:root {
    /* Color Palette matching provided mockup */
    --bg-cream: #faf5ed;
    --bg-card-light: #ffffff;
    --bg-maroon-dark: #3b0609;
    --bg-maroon: #5b0d11;
    --bg-maroon-light: #7b181e;
    --primary-red: #90161d;
    --primary-red-hover: #720e14;
    --accent-orange: #d9531e;
    --accent-gold: #c89132;
    --accent-gold-light: #f4e8c1;
    --text-dark: #2b1810;
    --text-muted: #5c4a40;
    --text-light: #fcf8f2;
    --border-gold: #e2d2aa;

    /* Form & Container Specifics */
    --bg-dark: #0f0a1c;
    --bg-card: rgba(28, 19, 48, 0.85);
    --bg-card-border: rgba(245, 158, 11, 0.3);
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --input-bg: #fdfbf7;
    --input-border: #d4c5a0;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-heading: 'Cinzel', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 25px rgba(59, 6, 9, 0.12);
    --shadow-lg: 0 20px 40px rgba(59, 6, 9, 0.18);
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography & General Classes */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-red);
}

.script-sub {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
}

.flourish-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    flex-wrap: wrap;
}

.flourish-heading::before,
.flourish-heading::after {
    content: '';
    display: inline-block;
    width: 25px;
    flex-shrink: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 60px 20px;
}

.container-custom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation Header */
.main-header {
    background: rgba(250, 245, 237, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary-red);
}

.logo-text-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-text-sub {
    font-size: 0.72rem;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.btn-nav-register {
    background: linear-gradient(135deg, #d9531e 0%, #c43f0b 100%);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(217, 83, 30, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-nav-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(217, 83, 30, 0.45);
    background: linear-gradient(135deg, #e65d28 0%, #d9531e 100%);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-red);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 50px 20px 40px;
    background: radial-gradient(circle at 70% 30%, rgba(244, 232, 193, 0.4) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-gold);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-welcome-script {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -5px;
}

.hero-title-main {
    font-size: clamp(1.8rem, 6.5vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 8px;
    max-width: 100%;
    word-break: break-word;
}

.hero-title-year {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.hero-lead-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 500;
}

.hero-gurudev-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-red);
    font-weight: 800;
    margin: 10px 0 20px;
    letter-spacing: 0.5px;
}

.hero-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-badge {
    background: rgba(200, 145, 50, 0.12);
    border: 1px solid var(--accent-gold);
    color: var(--primary-red);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-cta {
    background: linear-gradient(135deg, var(--bg-maroon-dark) 0%, var(--primary-red) 100%);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(59, 6, 9, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 6, 9, 0.5);
    background: linear-gradient(135deg, var(--primary-red) 0%, #b01b24 100%);
}

.hero-subnote {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-media-wrap {
    position: relative;
    text-align: center;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

.hero-image-frame {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--accent-gold-light);
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.hero-image-frame:hover {
    transform: scale(1.01);
}

/* Countdown Bar */
.countdown-banner {
    background: linear-gradient(135deg, var(--bg-maroon-dark) 0%, var(--bg-maroon) 50%, var(--bg-maroon-dark) 100%);
    color: #ffffff;
    padding: 22px 20px;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.countdown-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    flex-wrap: wrap;
}

.countdown-title-wrap .feather-icon {
    font-size: 32px;
}

.countdown-title-wrap h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 3.5vw, 1.4rem);
    color: var(--accent-gold-light);
    font-weight: 700;
}

.countdown-timer-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 100%;
}

.timer-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(200, 145, 50, 0.3);
    padding: 8px 18px;
    border-radius: 12px;
    min-width: 75px;
}

.timer-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold-light);
    font-family: var(--font-heading);
    line-height: 1;
}

.timer-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4c5a0;
    margin-top: 3px;
}

.kalash-icon {
    font-size: 36px;
}

/* Welcome Section */
.welcome-section {
    padding: 70px 20px;
    background: var(--bg-cream);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.welcome-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--primary-red);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-know-more:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

.welcome-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--border-gold);
}

.welcome-img-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Highlights Section */
.highlights-section {
    padding: 60px 20px 70px;
    background: #f7f0e3;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.highlight-icon {
    font-size: 42px;
    margin-bottom: 12px;
    display: block;
    color: var(--accent-orange);
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.3;
}

/* Event Details Section */
.details-section {
    padding: 60px 20px;
    background: var(--bg-cream);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.detail-card {
    background: #fdfbf7;
    border: 1px dashed var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.detail-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    color: var(--accent-gold);
}

.detail-lbl {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.detail-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Reserve Your Place Banner */
.reserve-banner {
    background: linear-gradient(135deg, #d9531e 0%, #bd3d09 100%);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    margin: 40px auto 60px;
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(217, 83, 30, 0.35);
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.reserve-content-left {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 650px;
}

.reserve-pot-icon {
    font-size: 55px;
    flex-shrink: 0;
}

.reserve-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.reserve-desc {
    font-size: 0.95rem;
    color: #fce8db;
}

.btn-reserve-white {
    background: #ffffff;
    color: #d9531e;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-reserve-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background: #fff8f5;
}

.reserve-subnote {
    font-size: 0.8rem;
    color: #fce8db;
    text-align: center;
    margin-top: 6px;
}

/* Feature Strip */
.features-strip {
    padding: 30px 20px;
    background: #f5edd8;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-red);
    line-height: 1.2;
}

.feature-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Main Footer */
.main-footer {
    background: linear-gradient(135deg, var(--bg-maroon-dark) 0%, #290305 100%);
    color: #e2d2aa;
    padding: 50px 20px 30px;
    text-align: center;
    border-top: 3px solid var(--accent-gold);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-blessing-quote {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #f4e8c1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-link-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.social-link-btn:hover {
    transform: scale(1.1);
}

.social-fb {
    background: #3b5998;
}

.social-insta {
    background: #e1306c;
}

.social-yt {
    background: #ff0000;
}

.social-wa {
    background: #25d366;
}

.footer-bottom-copy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 210, 170, 0.15);
    font-size: 0.82rem;
    color: #a89476;
}

/* Modal Popup Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 28, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 15px;
    overflow-y: auto;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    color: #ffffff;
}

.modal-backdrop.active .modal-dialog {
    transform: scale(1);
}

.modal-header {
    padding: 20px 25px;
    background: rgba(15, 10, 28, 0.6);
    border-bottom: 1px solid var(--bg-card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin: 0;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-body {
    padding: 25px 25px 30px;
}

/* Form Styles inside Modal & form.php */
.form-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.instructions-box {
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 30px;
    font-size: 0.92rem;
    color: #fef08a;
}

.instructions-box h4 {
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.instructions-box ul {
    list-style-type: none;
    padding-left: 0;
}

.instructions-box li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 18px;
}

.instructions-box li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--primary);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.25s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
    background: rgba(15, 23, 42, 0.85);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.gender-options-grid {
    grid-template-columns: repeat(3, 1fr);
}

.option-card {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.option-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(30, 27, 75, 0.6);
}

.option-card input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.option-card.selected {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.15);
    color: #ffffff;
}

.other-input-wrap {
    margin-top: 10px;
    display: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f0a1c;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* Pass Card Styling */
.pass-card {
    background: #ffffff;
    color: #1e1b4b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    max-width: 550px;
    margin: 20px auto;
    position: relative;
    border: 3px solid #f59e0b;
}

.pass-header {
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 100%);
    color: #fef08a;
    padding: 22px 20px;
    text-align: center;
    border-bottom: 4px solid #d97706;
}

.pass-header h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #fef08a;
}

.pass-body {
    padding: 25px 20px;
    text-align: center;
}

.pass-qr-wrap {
    background: #fdfbf7;
    border: 2px dashed #d97706;
    padding: 16px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.pass-qr-wrap img {
    width: 180px;
    height: 180px;
    display: block;
}

.reg-id-display {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2e1065;
    font-family: monospace;
    margin-top: 8px;
}

.pass-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
    background: #f8fafc;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid #e2e8f0;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-print {
    background: #2e1065;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {

    .hero-grid,
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-media-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-frame {
        max-height: 420px;
        object-fit: cover;
    }

    .hero-meta-badges {
        justify-content: center;
    }

    .countdown-flex {
        justify-content: center;
        text-align: center;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .reserve-banner {
        text-align: center;
        justify-content: center;
    }

    .reserve-content-left {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Can be toggled on mobile */
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #faf5ed;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border-gold);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-row-grid {
        grid-template-columns: 1fr !important;
    }

    .options-grid {
        grid-template-columns: 1fr !important;
    }

    .gender-options-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .countdown-timer-grid {
        gap: 6px;
        justify-content: center;
    }

    .timer-box {
        min-width: 54px;
        padding: 5px 8px;
    }

    .timer-num {
        font-size: 1.3rem;
    }

    .flourish-heading::before,
    .flourish-heading::after {
        width: 15px;
    }

    .reserve-banner {
        padding: 24px 15px;
        width: 100%;
        margin: 30px auto;
    }

    .hero-meta-badges {
        gap: 8px;
    }

    .hero-media-wrap {
        max-width: 100%;
        border-radius: 16px;
    }

    .hero-image-frame {
        max-height: 300px;
        border-radius: 16px;
    }

    .meta-badge {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
}