@tailwind base;
@tailwind components;
@tailwind utilities;

/* ============================================
   THE QUIET PLACE - DAWN TO DUSK SPIRITUALITY
   A Design System for Deep Contemplation
   ============================================ */

/* CSS Variables - Color Philosophy */
:root {
  /* Main Brand Colors - Soft, Contemplative */
  --sanctuary-cream: #FAF8F5;      /* Warm off-white, like candlelight on pages */
  --prayer-stone: #4A5568;         /* Deep gray-blue, grounding like ancient stone */
  --grace-slate: #2D3748;          /* Rich charcoal for text, easy on eyes */

  /* Spiritual Accents - Gentle, Not Overwhelming */
  --dawn-lavender: #E9D8FD;        /* Soft purple, early morning peace */
  --morning-mist: #CBD5E0;         /* Cool gray-blue, clarity of thought */
  --peaceful-sage: #9AE6B4;        /* Gentle green, growth and hope */
  --sunset-amber: #FAF089;         /* Warm yellow, God's faithfulness */
  --evening-rose: #FBB6CE;         /* Soft pink, divine love */

  /* Depth & Shadows */
  --shadow-soft: rgba(45, 55, 72, 0.08);
  --shadow-medium: rgba(45, 55, 72, 0.15);
  --shadow-strong: rgba(45, 55, 72, 0.25);

  /* Interactive States */
  --hover-lift: #F7FAFC;           /* Subtle highlight on hover */
  --focus-ring: rgba(139, 92, 246, 0.3);  /* Gentle purple glow */
  --success-meadow: #68D391;       /* Encouraging green */
  --warning-sunset: #F6AD55;       /* Gentle orange */

  /* Spiritual Gradients - Use Sparingly */
  --gradient-dawn: linear-gradient(135deg, #E9D8FD 0%, #FAF089 100%);
  --gradient-sanctuary: linear-gradient(180deg, #FAF8F5 0%, #F7FAFC 100%);
  --gradient-reflection: linear-gradient(135deg, #CBD5E0 0%, #9AE6B4 50%, #E9D8FD 100%);
  --gradient-evening: linear-gradient(135deg, #FBB6CE 0%, #FAF089 100%);

  /* Typography - Readable Contemplation */
  --font-reading: 'Literata', 'Georgia', serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-scripture: 'Crimson Pro', 'Merriweather', serif;

  /* Font Sizes - Deep Thought Hierarchy */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */

  /* Line Heights for Readability */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;  /* Use for journal text */
  --leading-loose: 2;

  /* Font Weights - Subtle Hierarchy */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
    #e0f2fe 100%
  );
  --gradient-heaven: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-grace: linear-gradient(135deg, #4a5eb5 0%, #7c3aed 100%);
  --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

/* ============================================
   GLOBAL TYPOGRAPHY & BASE STYLES
   ============================================ */

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

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-reading);
  color: var(--grace-slate);
  background-color: var(--sanctuary-cream);
  line-height: var(--leading-relaxed);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Fix text selection color - make it more visible */
::selection {
  background-color: rgba(139, 92, 246, 0.3);
  color: var(--grace-slate);
}

::-moz-selection {
  background-color: rgba(139, 92, 246, 0.3);
  color: var(--grace-slate);
}

/* Darker selection for textareas and inputs for better visibility */
textarea::selection,
input[type="text"]::selection,
input[type="email"]::selection {
  background-color: rgba(139, 92, 246, 0.5);
  color: #1e293b;
}

textarea::-moz-selection,
input[type="text"]::-moz-selection,
input[type="email"]::-moz-selection {
  background-color: rgba(139, 92, 246, 0.5);
  color: #1e293b;
}

main {
  flex: 1;
  width: 100%;
}

/* Font Family Classes */
.font-reading {
  font-family: var(--font-reading);
}

.font-display {
  font-family: var(--font-display);
}

.font-ui {
  font-family: var(--font-ui);
}

.font-scripture {
  font-family: var(--font-scripture);
}

/* ============================================
   COLOR UTILITY CLASSES
   ============================================ */

/* Text Colors */
.text-sanctuary-cream { color: var(--sanctuary-cream); }
.text-prayer-stone { color: var(--prayer-stone); }
.text-grace-slate { color: var(--grace-slate); }
.text-dawn-lavender { color: var(--dawn-lavender); }
.text-morning-mist { color: var(--morning-mist); }
.text-peaceful-sage { color: var(--peaceful-sage); }
.text-sunset-amber { color: var(--sunset-amber); }
.text-evening-rose { color: var(--evening-rose); }
.text-success-meadow { color: var(--success-meadow); }
.text-warning-sunset { color: var(--warning-sunset); }

/* Background Colors */
.bg-sanctuary-cream { background-color: var(--sanctuary-cream); }
.bg-prayer-stone { background-color: var(--prayer-stone); }
.bg-grace-slate { background-color: var(--grace-slate); }
.bg-dawn-lavender { background-color: var(--dawn-lavender); }
.bg-morning-mist { background-color: var(--morning-mist); }
.bg-peaceful-sage { background-color: var(--peaceful-sage); }
.bg-sunset-amber { background-color: var(--sunset-amber); }
.bg-evening-rose { background-color: var(--evening-rose); }
.bg-hover-lift { background-color: var(--hover-lift); }

/* Gradients */
.gradient-dawn { background: var(--gradient-dawn); }
.gradient-sanctuary { background: var(--gradient-sanctuary); }
.gradient-reflection { background: var(--gradient-reflection); }
.gradient-evening { background: var(--gradient-evening); }

/* Border Colors */
.border-morning-mist { border-color: var(--morning-mist); }
.border-dawn-lavender { border-color: var(--dawn-lavender); }
.border-prayer-stone { border-color: var(--prayer-stone); }
.border-peaceful-sage { border-color: var(--peaceful-sage); }

/* ============================================
   PREMIUM COMPONENT STYLES
   Design Principles: Whitespace = Peace,
   Soft Corners = Welcome, Slow Transitions = Calm
   ============================================ */

/* Sanctuary Button - Primary CTA */
.btn-sanctuary {
  background: var(--gradient-dawn);
  color: var(--prayer-stone);
  font-family: var(--font-ui);
  font-weight: var(--font-medium);
  padding: 14px 32px;
  border-radius: 16px;
  box-shadow:
    0 4px 12px var(--shadow-soft),
    0 1px 3px var(--shadow-medium);
  transition: all 300ms ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-base);
}

.btn-sanctuary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px var(--shadow-medium),
    0 2px 6px var(--shadow-strong);
}

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

/* Secondary Button - Gentle Alternative */
.btn-gentle {
  background: var(--sanctuary-cream);
  color: var(--prayer-stone);
  font-family: var(--font-ui);
  font-weight: var(--font-medium);
  padding: 14px 32px;
  border-radius: 16px;
  border: 1px solid var(--morning-mist);
  transition: all 300ms ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gentle:hover {
  background: var(--hover-lift);
  border-color: var(--dawn-lavender);
  transform: translateY(-1px);
}

/* Journal Entry Card - Content First */
.journal-card {
  background: var(--sanctuary-cream);
  border: 1px solid var(--morning-mist);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.journal-card:hover {
  box-shadow: 0 8px 24px var(--shadow-medium);
  transform: translateY(-4px);
  border-color: var(--dawn-lavender);
}

/* Verse of the Day Display - Sacred Moment */
.verse-display {
  font-family: var(--font-scripture);
  font-size: var(--text-3xl);
  line-height: var(--leading-relaxed);
  color: var(--prayer-stone);
  text-align: center;
  padding: 48px 32px;
  background: var(--gradient-sanctuary);
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--shadow-soft);
}

/* Premium Input Fields - Gentle Focus */
.input-sanctuary {
  background: white;
  border: 1px solid var(--morning-mist);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-reading);
  font-size: var(--text-base);
  color: var(--grace-slate);
  transition: all 250ms ease;
  width: 100%;
  line-height: var(--leading-normal);
}

.input-sanctuary:focus {
  outline: none;
  border-color: var(--dawn-lavender);
  box-shadow: 0 0 0 4px var(--focus-ring);
  background: var(--hover-lift);
}

.input-sanctuary::placeholder {
  color: var(--prayer-stone);
  opacity: 0.5;
}

/* Textarea for Journal Entries - Deep Thought */
.textarea-reflection {
  background: white;
  border: 1px solid var(--morning-mist);
  border-radius: 16px;
  padding: 20px 24px;
  font-family: var(--font-reading);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--grace-slate);
  transition: all 250ms ease;
  width: 100%;
  min-height: 280px;
  resize: vertical;
}

.textarea-reflection:focus {
  outline: none;
  border-color: var(--dawn-lavender);
  box-shadow: 0 0 0 4px var(--focus-ring);
  background: var(--hover-lift);
}

/* Card Styles - Depth Through Shadow */
.card-sanctuary {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  border: 1px solid var(--morning-mist);
  transition: all 300ms ease;
}

.card-sanctuary:hover {
  box-shadow: 0 8px 28px var(--shadow-medium);
}

/* Typography Hierarchy */
.heading-sanctuary {
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  color: var(--grace-slate);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.heading-scripture {
  font-family: var(--font-scripture);
  font-weight: var(--font-semibold);
  color: var(--prayer-stone);
  line-height: var(--leading-snug);
}

.text-reading {
  font-family: var(--font-reading);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--grace-slate);
}

/* ============================================
   SHADOW UTILITIES
   ============================================ */

.shadow-soft {
  box-shadow: 0 4px 12px var(--shadow-soft), 0 1px 3px var(--shadow-medium);
}

.shadow-medium {
  box-shadow: 0 8px 20px var(--shadow-medium), 0 2px 6px var(--shadow-strong);
}

.shadow-strong {
  box-shadow: 0 12px 32px var(--shadow-strong);
}

/* ============================================
   ANIMATIONS - Gentle and Calming
   ============================================ */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentle-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-slide-down {
  animation: slide-down 0.5s ease-out;
}

.animate-gentle-pulse {
  animation: gentle-pulse 4s ease-in-out infinite;
}

/* Backdrop Effects */
.backdrop-blur-xl {
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

/* Premium shadows with custom colors */
.shadow-premium {
  box-shadow: 0 10px 40px rgba(30, 41, 59, 0.08);
}

.shadow-premium-lg {
  box-shadow: 0 20px 60px rgba(30, 41, 59, 0.12);
}

.shadow-glow-heaven {
  box-shadow: 0 10px 40px rgba(74, 94, 181, 0.25);
}

.shadow-glow-grace {
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.25);
}

/* Smooth transitions for all elements */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility with custom colors */
*:focus {
  outline: 2px solid var(--color-heaven-blue);
  outline-offset: 2px;
}

.focus-ring-heaven:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(74, 94, 181, 0.15);
}

.focus-ring-grace:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

/* Selection Colors */
::selection {
  background-color: var(--color-heaven-blue);
  color: white;
}

::-moz-selection {
  background-color: var(--color-heaven-blue);
  color: white;
}

/* Text shadow for depth */
.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ═══════════════════════════════════════════════════════════
   AUTHENTICATION PAGES - SPLIT SCREEN IMMERSIVE DESIGN
   Premium glassmorphic experience with spiritual elegance
   ═══════════════════════════════════════════════════════════ */

/* Main Container - Split Screen Layout */
.auth-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

/* LEFT PANEL - Immersive Hero with Verse */
.auth-hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: linear-gradient(
    135deg,
    rgba(233, 216, 253, 0.12) 0%,
    rgba(203, 213, 224, 0.08) 25%,
    rgba(154, 230, 180, 0.1) 50%,
    rgba(250, 240, 137, 0.12) 75%,
    rgba(251, 182, 206, 0.08) 100%
  );
  overflow: hidden;
}

/* Animated Gradient Background */
.auth-hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(233, 216, 253, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(154, 230, 180, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(251, 182, 206, 0.12) 0%, transparent 50%);
  animation: gradientShift 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1.08) rotate(2deg); }
}

/* Floating Spiritual Particles */
.auth-hero-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    radial-gradient(circle, rgba(233, 216, 253, 0.3) 1.5px, transparent 1.5px);
  background-size: 100px 100px, 150px 150px;
  background-position: 0 0, 50px 50px;
  animation: particleFloat 40s linear infinite;
  opacity: 0.5;
  z-index: 1;
}

@keyframes particleFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-150px); }
}

/* Hero Content Wrapper */
.auth-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

/* Glassmorphic Verse Card */
.auth-verse-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 64px 56px;
  box-shadow:
    0 24px 48px rgba(45, 55, 72, 0.12),
    0 8px 16px rgba(45, 55, 72, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-verse-card:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Verse Text Styling */
.auth-verse-text {
  font-family: var(--font-scripture);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--grace-slate);
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.02em;
}

.auth-verse-reference {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--prayer-stone);
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.auth-verse-icon {
  font-size: 56px;
  margin-bottom: 28px;
  display: inline-block;
  animation: gentlePulse 5s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.05); }
}

.auth-hero-tagline {
  margin-top: 40px;
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--prayer-stone);
  opacity: 0.8;
  font-weight: 400;
}

/* RIGHT PANEL - Form Area */
.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--sanctuary-cream);
  position: relative;
}

.auth-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(233, 216, 253, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Glassmorphic Form Card */
.auth-form-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow:
    0 20px 50px rgba(45, 55, 72, 0.08),
    0 6px 16px rgba(45, 55, 72, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  position: relative;
  z-index: 2;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form Header */
.auth-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.auth-form-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--grace-slate);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.auth-form-subtitle {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--prayer-stone);
  font-weight: 400;
  opacity: 0.85;
}

.auth-form-verse-mini {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1.5px solid rgba(203, 213, 224, 0.4);
  font-family: var(--font-scripture);
  font-size: 14px;
  font-style: italic;
  color: var(--prayer-stone);
  line-height: 1.75;
  opacity: 0.8;
}

/* Premium Form Elements */
.auth-form-group {
  margin-bottom: 28px;
}

.auth-form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--grace-slate);
  margin-bottom: 10px;
}

.auth-form-label-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-form-label-icon {
  width: 18px;
  height: 18px;
  color: rgba(233, 216, 253, 1);
  opacity: 0.9;
}

/* Premium Input Styling */
.auth-input {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 16px;
  padding: 16px 20px;
  border: 2px solid rgba(203, 213, 224, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--grace-slate);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.05),
    0 0 0 0 transparent;
}

.auth-input::placeholder {
  color: rgba(74, 85, 104, 0.4);
  font-weight: 400;
}

.auth-input:hover {
  border-color: rgba(203, 213, 224, 0.8);
  background: rgba(255, 255, 255, 1);
}

.auth-input:focus {
  border-color: rgba(233, 216, 253, 1);
  background: rgba(255, 255, 255, 1);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.05),
    0 0 0 4px rgba(233, 216, 253, 0.25);
  transform: translateY(-1px);
}

/* Forgot Password Link */
.auth-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: rgba(139, 92, 246, 0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.auth-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(233, 216, 253, 1), rgba(154, 230, 180, 0.8));
  transition: width 0.3s ease;
}

.auth-link:hover {
  color: rgba(139, 92, 246, 1);
}

.auth-link:hover::after {
  width: 100%;
}

/* Remember Me Checkbox */
.auth-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.auth-checkbox {
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(203, 213, 224, 0.6);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.auth-checkbox:hover {
  border-color: rgba(233, 216, 253, 1);
  background: rgba(247, 250, 252, 1);
  transform: scale(1.05);
}

.auth-checkbox:checked {
  background: linear-gradient(135deg, rgba(233, 216, 253, 1), rgba(154, 230, 180, 0.9));
  border-color: rgba(233, 216, 253, 1);
  animation: checkPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.auth-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--grace-slate);
  font-size: 14px;
  font-weight: 700;
}

.auth-checkbox-label {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--prayer-stone);
  cursor: pointer;
  user-select: none;
}

/* Premium Button */
.auth-btn {
  position: relative;
  width: 100%;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  outline: none;
  background: linear-gradient(135deg, rgba(233, 216, 253, 1) 0%, rgba(154, 230, 180, 0.85) 100%);
  color: var(--grace-slate);
  box-shadow:
    0 6px 18px rgba(233, 216, 253, 0.4),
    0 2px 6px rgba(233, 216, 253, 0.25);
}

/* Shimmer Effect */
.auth-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: left 700ms;
}

.auth-btn:hover::before {
  left: 100%;
}

.auth-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 12px 28px rgba(233, 216, 253, 0.5),
    0 4px 10px rgba(233, 216, 253, 0.35);
}

.auth-btn:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 6px 16px rgba(233, 216, 253, 0.4),
    0 2px 6px rgba(233, 216, 253, 0.25);
}

.auth-btn:focus {
  box-shadow:
    0 6px 18px rgba(233, 216, 253, 0.4),
    0 0 0 4px rgba(233, 216, 253, 0.25);
}

/* Submit Button (for forms like password reset) */
.auth-submit-btn {
  position: relative;
  width: 100%;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  outline: none;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(167, 139, 250, 1) 100%);
  color: white;
  box-shadow:
    0 6px 18px rgba(139, 92, 246, 0.4),
    0 2px 6px rgba(139, 92, 246, 0.25);
}

.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 700ms;
}

.auth-submit-btn:hover::before {
  left: 100%;
}

.auth-submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 12px 28px rgba(139, 92, 246, 0.5),
    0 4px 10px rgba(139, 92, 246, 0.35);
}

.auth-submit-btn:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 6px 16px rgba(139, 92, 246, 0.4),
    0 2px 6px rgba(139, 92, 246, 0.25);
}

.auth-submit-btn:focus {
  box-shadow:
    0 6px 18px rgba(139, 92, 246, 0.4),
    0 0 0 4px rgba(167, 139, 250, 0.25);
}

/* Form Footer */
.auth-form-footer {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1.5px solid rgba(203, 213, 224, 0.3);
  text-align: center;
}

.auth-footer-text {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--prayer-stone);
  margin-bottom: 8px;
  opacity: 0.85;
}

.auth-footer-tagline {
  font-family: var(--font-scripture);
  font-size: 14px;
  font-style: italic;
  color: var(--prayer-stone);
  margin-top: 24px;
  opacity: 0.65;
}

/* Helper Text */
.auth-helper-text {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--prayer-stone);
  margin-top: 8px;
  opacity: 0.75;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auth-split-container {
    grid-template-columns: 1fr;
  }

  .auth-hero-panel {
    display: none;
  }

  .auth-form-panel {
    min-height: 100vh;
  }
}

@media (max-width: 640px) {
  .auth-form-card {
    padding: 40px 32px;
    border-radius: 24px;
  }

  .auth-form-title {
    font-size: 28px;
  }

  .auth-verse-card {
    padding: 48px 40px;
    border-radius: 24px;
  }

  .auth-verse-text {
    font-size: 24px;
  }

  .auth-hero-panel {
    padding: 60px 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM DASHBOARD - MORNING LIGHT SANCTUARY
   Peaceful, warm, immersive dashboard experience
   ═══════════════════════════════════════════════════════════ */

/* Main Dashboard Container */
.sanctuary-dashboard {
  min-height: calc(100vh - 5rem);
  position: relative;
  background: var(--sanctuary-cream);
  overflow: visible;
}

/* Atmospheric Background - Morning Light */
.sanctuary-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(233, 216, 253, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(251, 182, 206, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(250, 240, 137, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 75%, rgba(154, 230, 180, 0.08) 0%, transparent 45%);
  z-index: 0;
  pointer-events: none;
}

/* Subtle Texture Overlay */
.sanctuary-dashboard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(233, 216, 253, 0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  animation: textureFloat 60s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes textureFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-80px); }
}

/* Content Wrapper */
.sanctuary-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Personal Greeting Card */
.greeting-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 32px 40px;
  margin-bottom: 32px;
  box-shadow:
    0 8px 24px rgba(45, 55, 72, 0.06),
    0 2px 8px rgba(45, 55, 72, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.greeting-time {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: #4B5563;  /* --gray-600 for better contrast */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.greeting-message {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;  /* Increased from 600 for stronger presence */
  color: var(--grace-slate);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.greeting-username {
  color: #8B5CF6;  /* --primary-purple for better readability */
  font-weight: 700;
}

.greeting-quote {
  font-family: var(--font-scripture);
  font-size: 16px;  /* Increased from 14px for better readability */
  font-style: italic;
  color: #374151;  /* --gray-700 for stronger contrast */
  margin-top: 12px;
  line-height: 1.6;
}

/* Premium Scripture Card */
.scripture-sanctuary {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 56px 48px;
  margin-bottom: 48px;
  position: relative;
  box-shadow:
    0 16px 40px rgba(45, 55, 72, 0.08),
    0 4px 12px rgba(45, 55, 72, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scripture-sanctuary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 56px rgba(45, 55, 72, 0.12),
    0 8px 20px rgba(45, 55, 72, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Golden Glow Effect */
.scripture-sanctuary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg,
    rgba(250, 240, 137, 0.3),
    rgba(233, 216, 253, 0.2),
    rgba(251, 182, 206, 0.2)
  );
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(12px);
}

.scripture-sanctuary:hover::before {
  opacity: 1;
}

.scripture-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: inline-block;
  animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scripture-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--prayer-stone);
  opacity: 0.7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.scripture-reference {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--grace-slate);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.scripture-instruction {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--prayer-stone);
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.85;
}

/* Mark as Read Button - Outline to Filled */
.btn-mark-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--grace-slate);
  background: transparent;
  border: 2px solid rgba(233, 216, 253, 0.6);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.btn-mark-read:hover {
  background: linear-gradient(135deg, rgba(233, 216, 253, 1), rgba(154, 230, 180, 0.8));
  border-color: transparent;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(233, 216, 253, 0.35);
}

.btn-mark-read:active {
  transform: translateY(0) scale(0.98);
}

/* Success Message */
.scripture-success {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--success-meadow);
  margin-top: 16px;
  opacity: 0;
  animation: fadeInScale 0.5s ease 0.2s forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Journal Section Header */
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.journal-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--grace-slate);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.journal-subtitle {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--prayer-stone);
  opacity: 0.75;
}

/* Magnetic New Entry Button */
.btn-new-entry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--grace-slate);
  background: linear-gradient(135deg, rgba(233, 216, 253, 1), rgba(154, 230, 180, 0.85));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 8px 20px rgba(233, 216, 253, 0.4),
    0 2px 8px rgba(233, 216, 253, 0.25);
  animation: gentlePulse 3s ease-in-out infinite;
}

/* Shimmer Effect */
.btn-new-entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: left 700ms;
}

.btn-new-entry:hover::before {
  left: 100%;
}

.btn-new-entry:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 16px 32px rgba(233, 216, 253, 0.5),
    0 4px 12px rgba(233, 216, 253, 0.35);
  animation: none;
}

.btn-new-entry:active {
  transform: translateY(-1px) scale(1.01);
}

/* Premium Journal Card */
.journal-entry-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow:
    0 12px 32px rgba(45, 55, 72, 0.07),
    0 3px 10px rgba(45, 55, 72, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.journal-entry-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(45, 55, 72, 0.1),
    0 6px 16px rgba(45, 55, 72, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.journal-entry-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--grace-slate);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.journal-entry-content {
  font-family: var(--font-reading);
  font-size: 17px;
  line-height: 1.75;
  color: var(--prayer-stone);
  margin-bottom: 24px;
  opacity: 0.9;
}

.journal-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.journal-action-link {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.journal-action-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.journal-action-read {
  color: #8B5CF6;
}

.journal-action-read:hover {
  color: #7C3AED;
}

.journal-action-read::after {
  background: #8B5CF6;
}

.journal-action-edit {
  color: #F59E0B;
}

.journal-action-edit:hover {
  color: #D97706;
}

.journal-action-edit::after {
  background: #F59E0B;
}

.journal-action-delete {
  color: #EF4444;
}

.journal-action-delete:hover {
  color: #DC2626;
}

.journal-action-delete::after {
  background: #EF4444;
}

.journal-action-link:hover::after {
  width: 100%;
}

.journal-entry-time {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--prayer-stone);
  opacity: 0.6;
}

/* Beautiful Empty State */
.empty-state-sanctuary {
  text-align: center;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  box-shadow:
    0 16px 40px rgba(45, 55, 72, 0.06),
    0 4px 12px rgba(45, 55, 72, 0.03);
  animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.empty-state-icon {
  font-size: 80px;
  margin-bottom: 32px;
  display: inline-block;
  animation: gentleFloat 4s ease-in-out infinite;
}

.empty-state-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--grace-slate);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.empty-state-message {
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.7;
  color: var(--prayer-stone);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

/* Spiritual Summary Box */
.spiritual-summary-box {
  background: rgba(250, 240, 137, 0.15);
  border-left: 4px solid rgba(250, 240, 137, 1);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: 0 8px 20px rgba(45, 55, 72, 0.05);
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.spiritual-summary-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--prayer-stone);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.spiritual-summary-text {
  font-family: var(--font-reading);
  font-size: 16px;
  line-height: 1.8;
  color: var(--grace-slate);
  white-space: pre-line;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sanctuary-content {
    padding: 32px 20px 60px;
  }

  .greeting-card {
    padding: 24px 28px;
  }

  .greeting-message {
    font-size: 24px;
  }

  .scripture-sanctuary {
    padding: 40px 32px;
    border-radius: 24px;
  }

  .scripture-reference {
    font-size: 26px;
  }

  .journal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .journal-title {
    font-size: 28px;
  }

  .journal-entry-card {
    padding: 32px 28px;
  }

  .journal-entry-title {
    font-size: 22px;
  }

  .empty-state-sanctuary {
    padding: 60px 32px;
  }

  .empty-state-icon {
    font-size: 64px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MINIMAL NAVBAR - Temkoid Style
   Clean, sticky navigation with glassmorphic effect
   ═══════════════════════════════════════════════════════════ */

.navbar-glass {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 250ms ease;
}

.navbar-glass.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(229, 231, 235, 0.5);
  box-shadow: 0 4px 12px rgba(45, 55, 72, 0.04);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 250ms ease;
  z-index: 2;
  flex-shrink: 0;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.logo-emoji {
  font-size: 24px;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--grace-slate);
  letter-spacing: -0.02em;
}

/* Center Navigation */
.navbar-center {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 250ms ease;
}

.nav-link:hover {
  color: #8B5CF6;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B5CF6;
  transition: width 250ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* User Menu */
.navbar-right {
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 250ms ease;
}

.user-trigger:hover {
  background: rgba(139, 92, 246, 0.05);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chevron {
  color: #6B7280;
  transition: transform 200ms ease;
}

/* Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45, 55, 72, 0.12);
  border: 1px solid #E5E7EB;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 200ms ease-out;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  margin-bottom: 12px;
}

.dropdown-name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--grace-slate);
}

.dropdown-email {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #6B7280;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 12px 0;
}

.dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  transition: background 200ms ease;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(139, 92, 246, 0.08);
  color: #8B5CF6;
}

.dropdown-item span:first-child {
  font-size: 16px;
  line-height: 1;
}

.dropdown-item.premium-upgrade {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  color: #8B5CF6;
  font-weight: 600;
}

.dropdown-item.premium-upgrade:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.dropdown-item.premium-badge {
  background: rgba(251, 191, 36, 0.1);
  color: #F59E0B;
  cursor: default;
}

.dropdown-item.signout {
  color: #EF4444;
}

.dropdown-item.signout:hover {
  background: rgba(239, 68, 68, 0.08);
}

/* Mobile Button */
.mobile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #4B5563;
  cursor: pointer;
  border-radius: 10px;
  transition: background 200ms ease;
}

.mobile-btn:hover {
  background: rgba(139, 92, 246, 0.08);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90%;
  background: white;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 250ms ease;
}

.mobile-overlay.show .mobile-content {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.mobile-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #6B7280;
  cursor: pointer;
  border-radius: 8px;
  transition: background 200ms ease;
}

.mobile-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-items {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  transition: background 200ms ease;
}

.mobile-item:hover {
  background: rgba(139, 92, 246, 0.08);
  color: #8B5CF6;
}

.mobile-item span:first-child {
  font-size: 18px;
}

.mobile-item.premium-upgrade {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  color: #8B5CF6;
  font-weight: 600;
}

.mobile-item.signout {
  color: #EF4444;
}

/* Auth Links (Not Signed In) */
.navbar-auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

.auth-signin {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  transition: color 200ms ease;
}

.auth-signin:hover {
  color: #8B5CF6;
}

.auth-signup {
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.auth-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   MINIMAL FOOTER - Slothui/The Quiet Place Style
   Centered, peaceful, with generous spacing
   ═══════════════════════════════════════════════════════════ */

.footer-minimal {
  width: 100%;
  background: linear-gradient(to bottom, transparent, rgba(249, 250, 251, 0.5));
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  padding: 80px 40px 40px 40px;
  margin-top: auto;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-branding {
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-emoji {
  font-size: 32px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--grace-slate);
}

.footer-tagline {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: 16px;
  color: #6B7280;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.footer-links span {
  color: #9CA3AF;
  user-select: none;
}

.footer-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-link:hover {
  color: #8B5CF6;
}

.footer-link.unashamed {
  color: #FB7185;
}

.footer-link.unashamed:hover {
  color: #F43F5E;
}

/* Mission link - purple with dove animation */
.footer-link-mission {
  color: #8B5CF6;
  font-weight: 600;
}

.footer-link-mission:hover {
  color: #7C3AED;
  transform: translateY(-2px);
}

.footer-dove {
  display: inline-block;
  animation: dovefloat 3s ease-in-out infinite;
}

@keyframes dovefloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.footer-copyright {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.footer-verse {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: 13px;
  color: #9CA3AF;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-center {
    display: none;
  }

  .navbar-right {
    display: none;
  }

  .mobile-btn {
    display: flex;
  }

  .footer-minimal {
    padding: 60px 24px 32px 24px;
    margin-top: 80px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   PROFILE PAGE - CIRCULAR CHECKBOXES
   ============================================ */

/* Make all checkboxes circular with proper spacing */
input[type="checkbox"].rounded-full {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #CBD5E0;
  border-radius: 9999px;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-right: 1rem;
}

input[type="checkbox"].rounded-full:hover {
  border-color: #8B5CF6;
}

input[type="checkbox"].rounded-full:checked {
  background-color: #8B5CF6;
  border-color: #8B5CF6;
}

input[type="checkbox"].rounded-full:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

input[type="checkbox"].rounded-full:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* Radio buttons - ensure they're circular */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #CBD5E0;
  border-radius: 9999px;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-right: 1rem;
}

input[type="radio"]:hover {
  border-color: #8B5CF6;
}

input[type="radio"]:checked {
  border-color: #8B5CF6;
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background-color: #8B5CF6;
}

input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}
