/* ====== Font Imports ====== */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ====== Custom Styles from <style> blocks ====== */
.bg-color { 
  /* Note: Using the linear gradient from the main style block. */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}
.bg-color3 { 
  background-color: #f8f9fa; 
}
.font-Libre_Baskerville { 
  font-family: 'Libre Baskerville', serif; 
}
.font-lora { 
  font-family: 'Lora', serif; 
}
.font-Inter { 
  font-family: 'Inter', sans-serif; 
}
.animated-text { 
  opacity: 0; 
  animation: fadeIn 2s ease-in-out forwards; 
}
@keyframes fadeIn { 
  to { opacity: 1; } 
}
.rotate-180 { 
  transform: rotate(180deg); 
}

/* Footer Custom Style */
.bg-color-footer { 
  background: radial-gradient(circle, #503577, #250a50); 
}

/* ====== Tailwind Class Replications ====== */

/* General */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  line-height: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

img, video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Base */
.min-h-screen { min-height: 100vh; }
.min-h-\[700px\] { min-height: 700px; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-14 { top: 3.5rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.block { display: block; }
.flex { display: flex; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-full { width: 100%; }
.w-\[30px\] { width: 30px; }
.w-\[90\%\] { width: 90%; }
.w-\[130px\] { width: 130px; }
.w-\[150px\] { width: 150px; }
.h-3 { height: 0.75rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-12 { height: 3rem; }
.h-28 { height: 7rem; }
.h-\[50px\] { height: 50px; }
.h-full { height: 100%; }
.min-h-\[50px\] { min-height: 50px; }
.min-h-\[400px\] { min-height: 400px; }
.max-h-0 { max-height: 0; }
.min-h-fit { min-height: fit-content; }

/* Margins & Paddings */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.ml-10 { margin-left: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-auto { margin-bottom: auto; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-10 { padding-top: 2.5rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-\[10\%\] { padding-left: 10%; }

/* Sizing & Borders */
.border-2 { border-width: 2px; }
.border-black { border-color: #000; }
.divide-y-2 > :not([hidden]) ~ :not([hidden]) {
  border-top-width: 2px;
  border-bottom-width: 0px;
}
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Lists */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* Colors & Backgrounds */
.bg-white { background-color: #fff; }
.bg-white\/85 { background-color: rgba(255, 255, 255, 0.85); }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-\[\#250a50\] { background-color: #250a50; }
.text-black { color: #000; }
.text-white { color: #fff; }

/* Typography */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-md { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-\[12px\] { font-size: 12px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[34px\] { font-size: 34px; }
.italic { font-style: italic; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.underline { text-decoration-line: underline; }
.underline-offset-2 { text-underline-offset: 2px; }
.hover\:underline:hover { text-decoration-line: underline; }

/* Effects & Transitions */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Responsive (lg: 1024px) */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:w-\[5\%\] { width: 5%; }
  .lg\:w-\[20\%\] { width: 20%; }
  .lg\:w-\[30\%\] { width: 30%; }
  .lg\:w-\[40\%\] { width: 40%; }
  .lg\:w-\[65\%\] { width: 65%; }
  .lg\:h-\[60px\] { height: 60px; }
  .lg\:w-\[60px\] { width: 60px; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:text-\[18px\] { font-size: 18px; }
  .lg\:text-\[34px\] { font-size: 34px; }
}