/* Custom Parchment Styling for Midad */
:root {
  --color-parchment: #F8F4EB;
  --color-surface: #FFFDF9;
  --color-ink: #2D241E;
  --color-gold: #C89D52;
  --color-gold-dark: #8C6228;
}

body {
  background-color: var(--color-parchment);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Parchment texture subtle box shadow */
.parchment-box {
  background-image: radial-gradient(#F0E9D8 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Tabs active / inactive style */
.nav-tab.active-tab {
  background-color: #FFFDF9;
  color: #2D241E;
  box-shadow: 0 1px 3px rgba(45, 36, 30, 0.08);
}

.nav-tab:not(.active-tab):hover {
  background-color: rgba(255, 253, 249, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #F1EADC;
}
::-webkit-scrollbar-thumb {
  background: #D8CEB7;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C4B698;
}

/* Classical Verse Presentation (Shatr 1 & Shatr 2) */
.classical-bayt {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  font-family: 'Amiri', serif;
}

@media (min-width: 640px) {
  .classical-bayt {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .classical-bayt .shatr-1 {
    text-align: left;
    flex: 1;
  }
  .classical-bayt .shatr-separator {
    color: #C89D52;
    font-size: 0.85rem;
  }
  .classical-bayt .shatr-2 {
    text-align: right;
    flex: 1;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-pane:not(.hidden) {
  animation: fadeIn 0.25s ease-out;
}

/* Disabled touch callouts */
button, a {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}