
/* Base styles */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-zinc-950: #09090b;
  --color-zinc-900: #18181b;
  --color-zinc-800: #27272a;
  --color-zinc-700: #3f3f46;
  --color-zinc-600: #52525b;
  --color-zinc-500: #71717a;
  --color-zinc-400: #a1a1aa;
  --color-zinc-300: #d4d4d8;
  --color-zinc-200: #e4e4e7;
  --color-zinc-100: #f4f4f5;
  --color-zinc-50: #fafafa;
  
  --color-indigo-900: #312e81;
  --color-indigo-800: #3730a3;
  --color-indigo-700: #4338ca;
  --color-indigo-600: #4f46e5;
  --color-indigo-500: #6366f1;
  --color-indigo-400: #818cf8;
  --color-indigo-300: #a5b4fc;
  --color-indigo-200: #c7d2fe;
  --color-indigo-100: #e0e7ff;
  --color-indigo-50: #eef2ff;
  
  --color-purple-500: #a855f7;
  --color-pink-500: #ec4899;
  --color-green-500: #22c55e;
  
  --shadow-soft: 0 8px 30px rgba(0,0,0,0.06);
}
/* Global styles */
body {
  min-height: 100vh;
  background-color: var(--color-white);
  color: var(--color-zinc-900);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--color-zinc-950);
    color: var(--color-white);
  }
}
/* Route transitions */
.route {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.route.active {
  display: block;
  opacity: 1;
  transform: none;
}

.main-logo {
  width: 50px;
  background-color: white;
  border-radius: 25%;
}

.title {
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-left: -200px;
}

/* Layout */
.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-2xl {
  max-width: 42rem;
}
/* Margins */
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
/* Padding */
.p-2 {
  padding: 0.5rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-10 {
  padding: 2.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}

/*Profile Picture Styles*/
.johnpfp {
  border-radius: 50%;
}

.wafipfp {
  border-radius: 50%;
}

.maminpfp {
  border-radius: 50%;
}

.alirpfp {
  border-radius: 50%;
}

.walipfp {
  border-radius: 50%;
}

/* Flexbox & Grid */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-10 {
  gap: 2.5rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
@media (prefers-color-scheme: dark) {
  header {
    background-color: rgba(9, 9, 11, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
}
/* Dimensions */
.h-1\.5 {
  height: 0.375rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-9 {
  height: 2.25rem;
}
.h-16 {
  height: 4rem;
}
.h-20 {
  height: 5rem;
}
.h-72 {
  height: 18rem;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-9 {
  width: 2.25rem;
}
.w-20 {
  width: 5rem;
}
.w-72 {
  width: 18rem;
}
.w-full {
  width: 100%;
}
.min-h-\[70vh\] {
  min-height: 70vh;
}
/* Typography */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
/* Colors */
.text-white {
  color: var(--color-white);
}
.text-zinc-300 {
  color: var(--color-zinc-300);
}
.text-zinc-400 {
  color: var(--color-zinc-400);
}
.text-zinc-600 {
  color: var(--color-zinc-600);
}
.text-zinc-700 {
  color: var(--color-zinc-700);
}
.text-indigo-600 {
  color: var(--color-indigo-600);
}
.bg-white {
  background-color: var(--color-white);
}
.bg-white\/70 {
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-black\/5 {
  background-color: rgba(0, 0, 0, 0.05);
}
.bg-zinc-900 {
  background-color: var(--color-zinc-900);
}
.bg-zinc-900\/60 {
  background-color: rgba(24, 24, 27, 0.6);
}
.bg-green-500 {
  background-color: var(--color-green-500);
}
.bg-indigo-500\/10 {
  background-color: rgba(99, 102, 241, 0.1);
}
.bg-indigo-500\/20 {
  background-color: rgba(99, 102, 241, 0.2);
}
.bg-pink-500\/20 {
  background-color: rgba(236, 72, 153, 0.2);
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--color-indigo-500), var(--color-purple-500), var(--color-pink-500));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
}
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--color-indigo-500), var(--color-purple-500), var(--color-pink-500));
}
/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  .dark\:bg-zinc-950 {
    background-color: var(--color-zinc-950);
  }
  
  .dark\:bg-zinc-900\/60 {
    background-color: rgba(24, 24, 27, 0.6);
  }
  
  .dark\:bg-transparent {
    background-color: transparent;
  }
  
  .dark\:text-white {
    color: var(--color-white);
  }
  
  .dark\:text-zinc-300 {
    color: var(--color-zinc-300);
  }
  
  .dark\:text-zinc-400 {
    color: var(--color-zinc-400);
  }
  
  .dark\:bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
/* Positioning */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: sticky;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-10 {
  z-index: 10;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.-top-24 {
  top: -6rem;
}
.-left-24 {
  left: -6rem;
}
.-bottom-24 {
  bottom: -6rem;
}
.-right-24 {
  right: -6rem;
}
/* Borders & Shadows */
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-black\/5 {
  border-color: rgba(0, 0, 0, 0.05);
}
.border-black\/10 {
  border-color: rgba(0, 0, 0, 0.1);
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shadow-soft {
  box-shadow: var(--shadow-soft);
}
.ring-1 {
  box-shadow: 0 0 0 1px;
}
.ring-zinc-900\/5 {
  box-shadow-color: rgba(24, 24, 27, 0.05);
}
.ring-zinc-900\/10 {
  box-shadow-color: rgba(24, 24, 27, 0.1);
}
/* Utilities */
.hidden {
  display: none;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.blur-3xl {
  filter: blur(4rem);
}
.hover\:bg-black\/5:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.hover\:underline:hover {
  text-decoration: underline;
}
/* Form elements */
input, textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
  outline: none;
}
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
/* Team profile images */
.team-profile {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.team-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Media queries */
@media (min-width: 640px) {
  .sm\:text-xl {
    font-size: 1.25rem;
  }
  
  .sm\:text-4xl {
    font-size: 2.25rem;
  }
  
  .sm\:text-5xl {
    font-size: 3rem;
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:inline {
    display: inline;
  }
  
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:items-center {
    align-items: center;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/* Search overlay */
#searchResults {
  list-style: none;
  padding: 0;
  margin: 0;
}
#searchInput {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
}
/* Mobile menu */
#mobileMenu {
  display: none;
}
#mobileMenu.active {
  display: block;
}
