/* Noor Digital — shared styles (extends the Tailwind design system) */

body {
  background-color: #FAF8F4; /* Warm Ivory Base */
  color: #251917;
  overflow-x: hidden;
}

/* Floating glassmorphic navigation */
.glass-nav {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating white surface card */
.luxury-card {
  background: #ffffff;
  border: 1px solid #F2EFE9;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(106, 1, 9, 0.08);
}

.premium-shadow {
  box-shadow: 0 4px 6px -1px rgba(106, 1, 9, 0.05), 0 2px 4px -1px rgba(106, 1, 9, 0.03);
}

.btn-gradient {
  background: linear-gradient(135deg, #6a0109 0%, #410003 100%);
}

/* Reveal-on-scroll animation */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

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

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Prose styling for article bodies */
.prose-noor h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: #6a0109;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.prose-noor h3 {
  font-size: 22px;
  font-weight: 600;
  color: #251917;
  margin: 2rem 0 0.75rem;
}
.prose-noor p {
  font-size: 18px;
  line-height: 1.8;
  color: #58413f;
  margin-bottom: 1.5rem;
}
.prose-noor ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #58413f;
  font-size: 18px;
  line-height: 1.8;
}
.prose-noor li { margin-bottom: 0.5rem; }
.prose-noor blockquote {
  border-left: 4px solid #e9c349;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-size: 20px;
  font-style: italic;
  color: #251917;
}
.prose-noor a { color: #6a0109; text-decoration: underline; }

/* Toast notification */
#noor-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: linear-gradient(135deg, #6a0109 0%, #410003 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 20px 40px rgba(106, 1, 9, 0.25);
  z-index: 100;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}
#noor-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Mobile menu panel */
.mobile-menu {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Line clamp helper (in case plugin absent) */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
