/* Global Merriweather readability */
body {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.015em;
  font-weight: 400;
}

/* Devanagari script adjustments */
.font-devanagari {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Line clamp utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Custom scrollbar for admin sidebar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #800020;
  border-radius: 3px;
}

/* Focus ring consistent with maroon theme */
*:focus-visible {
  outline: 2px solid #800020;
  outline-offset: 2px;
}

/* Form select arrow color */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
}

/* Backdrop blur for blurred profile images */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Hero gradient text for large screens */
@media (min-width: 1024px) {
  .hero-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fce7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Transition for Alpine.js x-show */
[x-cloak] {
  display: none !important;
}

/* Step form textarea */
textarea {
  font-family: inherit;
}

/* Admin table compact */
.admin-table th,
.admin-table td {
  white-space: nowrap;
}
