/* 
  Wedding Check-In & Welcome App CSS Design System
  Theme: Fairus & Fitri Wedding
  Palette: Warm Ivory, Botanical Olive Green, Burnished Gold, Warm Taupe
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,500;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-ivory: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-accent-soft: #F2EBE1;
  --primary-olive: #3D4A3E;
  --primary-olive-dark: #2A342B;
  --primary-olive-light: #5A695B;
  --gold-accent: #B58E58;
  --gold-light: #D4AF77;
  --gold-gradient: linear-gradient(135deg, #B58E58 0%, #D4AF77 100%);
  --text-main: #2C2C2C;
  --text-muted: #6B6862;
  --text-light: #8E8A82;
  --border-gold: rgba(181, 142, 88, 0.25);
  --border-soft: #E8E2D9;
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(42, 52, 43, 0.05);
  --shadow-md: 0 8px 24px rgba(42, 52, 43, 0.08);
  --shadow-lg: 0 16px 38px rgba(42, 52, 43, 0.12);
  --shadow-gold: 0 8px 20px rgba(181, 142, 88, 0.25);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-ivory);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Botanical Background Decor */
.bg-botanical-top {
  position: fixed;
  top: -20px;
  right: -20px;
  width: 260px;
  height: 260px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%233D4A3E' fill-opacity='0.06' d='M100 10 C120 40 180 30 190 70 C200 110 160 160 120 180 C80 200 30 170 10 130 C-10 90 20 40 50 20 C80 0 80 -20 100 10 Z'/%3E%3Cpath fill='none' stroke='%23B58E58' stroke-opacity='0.2' stroke-width='1.5' d='M140,20 Q160,80 120,140 Q80,200 20,160 M120,60 Q180,100 150,170'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.bg-botanical-bottom {
  position: fixed;
  bottom: -20px;
  left: -20px;
  width: 280px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%233D4A3E' fill-opacity='0.05' d='M20 100 C10 40 60 10 110 20 C160 30 190 80 180 130 C170 180 110 200 60 180 C10 160 30 160 20 100 Z'/%3E%3Cpath fill='none' stroke='%23B58E58' stroke-opacity='0.18' stroke-width='1.5' d='M20,160 Q80,120 140,160 M60,180 Q100,100 180,120'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.app-container {
  max-width: 540px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 1.5rem 1.25rem 6.5rem 1.25rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .app-container {
    max-width: 680px;
    padding: 2.5rem 2rem 7rem 2rem;
  }
}

/* Header & Banner */
.hero-header {
  text-align: center;
  padding: 2rem 1rem 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.floral-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary-olive);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 85%;
  margin: 0 auto 1rem auto;
}

.couple-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--primary-olive);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px stroke var(--border-soft);
}

.couple-names span.amp {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-accent);
  font-size: 1.5rem;
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Flow Overview Stepper Header */
.flow-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  position: sticky;
  top: 1rem;
  z-index: 100;
}

.flow-step-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 0.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.flow-step-btn .step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-accent-soft);
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.flow-step-btn .step-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flow-step-btn.active {
  background: var(--primary-olive);
  color: #FFFFFF;
}

.flow-step-btn.active .step-num {
  background: var(--gold-accent);
  color: #FFFFFF;
}

/* Step Card Component */
.step-section {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.step-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border-soft);
}

.step-header-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-olive);
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-header-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-olive);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.step-header-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Search & Seat Finder Styles */
.search-box-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-ivory);
  color: var(--text-main);
  transition: var(--transition-fast);
  outline: none;
}

.search-input:focus {
  border-color: var(--gold-accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(181, 142, 88, 0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-accent);
  pointer-events: none;
}

.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 0.4rem;
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.suggestions-list.show {
  display: block;
}

.suggestion-item {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bg-ivory);
  transition: var(--transition-fast);
}

.suggestion-item:hover {
  background: var(--bg-accent-soft);
}

.suggestion-item .guest-name {
  font-weight: 600;
  color: var(--primary-olive);
}

.suggestion-item .guest-table-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: rgba(181, 142, 88, 0.15);
  color: var(--gold-accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Guest Result Ticket Card */
.seat-ticket-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF7F2 100%);
  border: 2px solid var(--gold-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: none;
  animation: ticketPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes ticketPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.seat-ticket-card.show {
  display: block;
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--border-gold);
}

.ticket-guest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-olive);
}

.ticket-badge {
  background: var(--primary-olive);
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.detail-box {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.detail-box label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.detail-box span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-olive);
}

.favour-notice {
  background: rgba(181, 142, 88, 0.12);
  border-left: 3px solid var(--gold-accent);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--primary-olive-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.btn-checkin {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--primary-olive);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-checkin:hover {
  background: var(--primary-olive-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-checkin.checked-in {
  background: #2E7D32;
  cursor: default;
}

/* Treats & Schedule Items */
.treats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .treats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.treat-item-card {
  background: var(--bg-ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: var(--transition-fast);
}

.treat-item-card:hover {
  border-color: var(--gold-accent);
  transform: translateY(-2px);
}

.treat-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(181, 142, 88, 0.15);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treat-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-olive);
  margin-bottom: 0.2rem;
}

.treat-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline-list {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 1.25rem;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border-gold);
}

.timeline-event {
  position: relative;
  margin-bottom: 1.25rem;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-accent);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 1px var(--gold-accent);
}

.timeline-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-accent);
  line-height: 1;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-olive);
  margin: 0.2rem 0 0.1rem 0;
}

.timeline-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gift Corner Cards */
.gift-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gift-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF7F2 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition-fast);
}

.gift-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-olive);
  margin-bottom: 0.5rem;
}

.qr-frame {
  width: 180px;
  height: 180px;
  margin: 0.75rem auto;
  padding: 0.5rem;
  background: #FFFFFF;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-olive);
}

.btn-copy {
  background: var(--bg-accent-soft);
  border: none;
  color: var(--gold-accent);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy:hover {
  background: var(--gold-accent);
  color: #FFFFFF;
}

/* Blessing Form & Wall */
.blessing-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-olive);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-ivory);
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-accent);
  background: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit-blessing {
  padding: 0.85rem 1.5rem;
  background: var(--gold-gradient);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.btn-submit-blessing:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Blessing Wall Cards */
.blessings-wall {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blessing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.blessing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.blessing-author {
  font-weight: 700;
  color: var(--primary-olive);
  font-size: 0.95rem;
}

.blessing-tag {
  font-size: 0.7rem;
  background: var(--bg-accent-soft);
  color: var(--gold-accent);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.blessing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.blessing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
}

.like-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.like-btn.liked {
  color: #E53935;
}

/* Admin Drawer Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 52, 43, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-soft);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-olive);
}

.btn-close-modal {
  background: var(--bg-ivory);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Admin Dashboard Elements */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: var(--bg-ivory);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border-soft);
}

.stat-box h3 {
  font-size: 1.35rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary-olive);
  font-weight: 700;
}

.stat-box p {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.admin-table th, .admin-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
}

.admin-table th {
  background: var(--bg-ivory);
  color: var(--primary-olive);
  font-weight: 700;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary-olive);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 300;
  white-space: nowrap;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer & Sign off */
.app-footer {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.footer-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-couple {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary-olive);
  margin-top: 0.25rem;
}

.admin-trigger-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
}

/* Fullscreen Projector Slideshow Mode Styles */
.projector-overlay {
  position: fixed;
  inset: 0;
  background-color: #1E251E; /* Dark luxurious olive */
  color: #F2EBE1;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  overflow: hidden;
}

.projector-overlay.show {
  display: flex;
}

.projector-exit-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(181, 142, 88, 0.4);
  color: #F2EBE1;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 510;
  transition: var(--transition-fast);
}

.projector-exit-btn:hover {
  background: var(--gold-accent);
  color: #FFFFFF;
}

.projector-botanical-decor {
  position: absolute;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0.08;
  background-size: contain;
  background-repeat: no-repeat;
}

.projector-botanical-decor.top-right {
  top: -40px; right: -40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%23D4AF77' d='M140,20 Q160,80 120,140 Q80,200 20,160 M120,60 Q180,100 150,170'/%3E%3C/svg%3E");
}

.projector-botanical-decor.bottom-left {
  bottom: -40px; left: -40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%23D4AF77' d='M20,160 Q80,120 140,160 M60,180 Q100,100 180,120'/%3E%3C/svg%3E");
}

.projector-container {
  width: 90%;
  max-width: 960px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  z-index: 505;
}

.projector-header h2 {
  font-size: 3rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.5rem;
  font-weight: 700;
}

.projector-badge {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.projector-divider {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1.5rem auto 0 auto;
}

.projector-card {
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
  padding: 1.5rem;
}

.projector-card.fade-out {
  opacity: 0;
}

.projector-text {
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-weight: 500;
}

.projector-author {
  font-size: 1.35rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
