/* Font Faces */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("images/fonts/PlusJakartaSans-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("images/fonts/Outfit-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

::selection {
  background-color: #f3e8ff;
  color: #6b21a8;
}

/* Scrollbar Hiding */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Strict visibility control */
.hidden-section {
  display: none !important;
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
}
[dir="rtl"] .text-left {
  text-align: right;
}
[dir="rtl"] .text-right {
  text-align: left;
}
[dir="rtl"] .flex-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .ml-auto {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .mr-auto {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .space-x-8 > * + * {
  margin-left: 0;
  margin-right: 2rem;
}
[dir="rtl"] .space-x-6 > * + * {
  margin-left: 0;
  margin-right: 1.5rem;
}
[dir="rtl"] .space-x-4 > * + * {
  margin-left: 0;
  margin-right: 1rem;
}
[dir="rtl"] .gap-8 {
  gap: 2rem;
}
[dir="rtl"] .gap-6 {
  gap: 1.5rem;
}
[dir="rtl"] .gap-4 {
  gap: 1rem;
}
[dir="rtl"] .gap-3 {
  gap: 0.75rem;
}
[dir="rtl"] .gap-2 {
  gap: 0.5rem;
}
