/* Weddiiing Prototype - Editor-Style Layout */

:root {
  --bg-primary: #F5EDE8;
  --bg-secondary: #FFFFFF;
  --bg-preview: #FAF6F3;
  --color-primary: #0A4A4A;
  --color-primary-light: #0D6060;
  --color-text: #1A1A1A;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #E5DDD7;
  --color-border-light: #F0E8E3;
  --color-success: #2D8659;
  --color-warning: #E67E22;
  --color-danger: #C0392B;
  --color-gray: #95A5A6;
  --color-gold: #D4AF37;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 80%, rgba(10, 74, 74, 0.02) 0%, transparent 40%);
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Emphasis styling for headings */
h1 em, h2 em, h3 em {
  font-style: italic;
}

/* ============================================
   EDITOR LAYOUT - The main split-screen view
   ============================================ */

.editor-layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  min-height: 100vh;
  height: 100vh;
}

/* Left Panel - Editor/Workspace */
.editor-panel {
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.editor-panel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5%;
  bottom: 5%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--color-border-light) 20%, var(--color-border-light) 80%, transparent 100%);
}

.editor-header {
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.04em;
  font-style: italic;
}

.logo::before {
  content: '';
  display: inline-block;
}

.editor-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 2.5rem 2.5rem;
}

.editor-footer {
  padding: 1.75rem 2.5rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(245, 237, 232, 0.95) 100%);
  border-top: 1px solid var(--color-border-light);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.editor-footer .btn-primary {
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
}

.editor-footer .btn-primary::before {
  content: '+';
  font-size: 1.125rem;
  font-weight: 300;
  margin-right: 0.5rem;
}

/* Right Panel - Preview */
.preview-panel {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #FEFCFA 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.preview-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.preview-label-bar {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.preview-card {
  flex: 1;
  background: linear-gradient(180deg, #FFFDFB 0%, var(--bg-preview) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow-y: auto;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ============================================
   SECTION NAVIGATION - Within editor panel
   ============================================ */

.section-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.section-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
  transition: all 0.2s;
}

.section-nav-item:hover {
  color: var(--color-primary);
}

.section-nav-item.active {
  color: var(--color-primary);
  font-weight: 500;
}

.section-nav-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   PAGE HEADER - Title area in editor
   ============================================ */

.page-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 0.625rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.page-title em,
.page-title i {
  font-style: italic;
  color: var(--color-primary);
}

.page-subtitle {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 380px;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--bg-secondary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(10, 74, 74, 0.08);
  background: #FFFFFF;
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.form-input-with-check {
  position: relative;
}

.form-input-with-check .form-input {
  padding-right: 3rem;
}

.form-input-with-check .check-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-success);
  font-size: 1.125rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 0.375rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 74, 74, 0.25);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(10, 74, 74, 0.02);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-light);
  padding: 0.5rem 0.75rem;
}

.btn-ghost:hover {
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.action-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ============================================
   CARDS & SECTIONS
   ============================================ */

.card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
}

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-item:first-child {
  padding-top: 0;
}

.event-info h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.event-info p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   TAGS & BADGES
   ============================================ */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.875rem;
  margin: 0.25rem;
}

.tag-remove {
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 0.75rem;
}

.tag-remove:hover {
  color: var(--color-danger);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-success {
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.12) 0%, rgba(45, 134, 89, 0.08) 100%);
  color: var(--color-success);
}

.badge-success::before {
  background: var(--color-success);
  box-shadow: 0 0 6px rgba(45, 134, 89, 0.4);
}

.badge-danger {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.12) 0%, rgba(192, 57, 43, 0.08) 100%);
  color: var(--color-danger);
}

.badge-danger::before {
  background: var(--color-danger);
  box-shadow: 0 0 6px rgba(192, 57, 43, 0.4);
}

.badge-warning {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.12) 0%, rgba(230, 126, 34, 0.08) 100%);
  color: var(--color-warning);
}

.badge-warning::before {
  background: var(--color-warning);
  box-shadow: 0 0 6px rgba(230, 126, 34, 0.4);
}

.badge-gray {
  background: linear-gradient(135deg, rgba(149, 165, 166, 0.15) 0%, rgba(149, 165, 166, 0.08) 100%);
  color: var(--color-gray);
}

.badge-gray::before {
  background: var(--color-gray);
}

/* ============================================
   TABLE
   ============================================ */

.table-container {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table thead {
  background: var(--bg-primary);
}

.table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
}

.table td {
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}

.table tbody tr:hover {
  background: rgba(10, 74, 74, 0.02);
}

/* ============================================
   INVITATION PREVIEW STYLES
   ============================================ */

.invitation-preview {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.preview-rings {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(145deg, #E8D5A3 0%, #D4AF37 30%, #F4D03F 60%, #D4AF37 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25), inset 0 2px 8px rgba(255, 255, 255, 0.4);
  position: relative;
}

.preview-rings::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.preview-event-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.preview-names {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.preview-tagline {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.preview-events {
  margin: 2rem 0;
}

.preview-event {
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}

.preview-event:first-child {
  border-top: none;
}

.preview-event-date {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
  font-weight: 500;
}

.preview-event-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.preview-event-details {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.preview-rsvp {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}

.preview-rsvp-text {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.preview-rsvp-text u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-primary);
  font-weight: 600;
}

.preview-avatars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

.preview-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-preview) 100%);
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.preview-avatar:hover {
  transform: scale(1.1) translateY(-2px);
  z-index: 1;
}

/* ============================================
   FILTERS & SEARCH
   ============================================ */

.filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  background: var(--bg-secondary);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background: var(--bg-secondary);
  min-width: 150px;
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

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

.modal {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 400;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  padding: 0.25rem;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

/* ============================================
   STATS (for dashboard/overview)
   ============================================ */

.stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* ============================================
   ICON BUTTONS
   ============================================ */

.icon-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 1rem;
}

.icon-btn:hover {
  background: rgba(10, 74, 74, 0.08);
  color: var(--color-primary);
}

/* ============================================
   USER MENU (minimal in header)
   ============================================ */

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.user-names {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-text);
  font-size: 0.875rem;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(10, 74, 74, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.user-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(10, 74, 74, 0.3);
}

/* ============================================
   PROGRESS/STATUS
   ============================================ */

.progress-bar {
  height: 6px;
  background: var(--color-border-light);
  border-radius: 3px;
  overflow: hidden;
  margin: 0.75rem 0;
}

.progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 0.3s;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(10, 74, 74, 0.2);
  }
  50% {
    box-shadow: 0 4px 24px rgba(10, 74, 74, 0.35);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.preview-rsvp .btn-primary {
  animation: subtlePulse 3s ease-in-out infinite;
}

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

@media (max-width: 1024px) {
  .editor-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .editor-panel {
    height: auto;
    min-height: auto;
  }

  .preview-panel {
    height: auto;
    min-height: 60vh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .editor-header,
  .editor-content,
  .editor-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .preview-panel {
    padding: 1.5rem;
  }

  .form-row-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.75rem;
  }

  .preview-names {
    font-size: 1.5rem;
  }
}

/* ============================================
   LEGACY SUPPORT (for pages not yet converted)
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--color-text);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-item:hover {
  background: rgba(10, 74, 74, 0.1);
}

.nav-item.active {
  background: var(--color-primary);
  color: white;
}

.nav-icon {
  font-size: 1.2rem;
}

.section {
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
