@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Color variables */
:root {
  --blue: #64ddee;
  --green: #10b981;
  --dark: #121212;
  --darker: #1a1a1a;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --white: #ffffff;
  --black: #000000;
}

/* Text colors */
.text-blue {
  color: var(--blue);
}
.text-green {
  color: var(--green);
}

.text-white {
  color: var(--white);
}

.text-gray-300 {
  color: var(--gray-300);
}

.text-gray-400 {
  color: var(--gray-400);
}

/* Background colors */
.bg-blue {
  background-color: var(--blue);
}

.bg-green {
  background-color: var(--green);
}

.bg-darker {
  background-color: var(--darker);
}

.bg-dark {
  background-color: var(--dark);
}

/* Opacity variants */
[class*="bg-darker/80"] {
  background-color: rgba(26, 26, 26, 0.8);
}

[class*="bg-blue/10"] {
  background-color: rgba(57, 152, 211, 0.1);
}

[class*="bg-blue/20"] {
  background-color: rgba(57, 152, 211, 0.2);
}

[class*="bg-blue/30"] {
  background-color: rgba(57, 152, 211, 0.3);
}

[class*="bg-blue/90"] {
  background-color: rgba(57, 152, 211, 0.9);
}

[class*="bg-darker/50"] {
  background-color: rgba(26, 26, 26, 0.5);
}

[class*="text-blue/80"] {
  color: rgba(111, 106, 250, 0.8);
}

[class*="text-blue/10"] {
  color: rgba(34, 27, 255, 0.1);
}

[class*="border-blue/10"] {
  border-color: rgba(34, 27, 255, 0.1);
}

[class*="border-blue/20"] {
  border-color: rgba(34, 27, 255, 0.2);
}

[class*="border-blue/40"] {
  border-color: rgba(34, 27, 255, 0.4);
}

[class*="hover:bg-blue/10"]:hover {
  background-color: rgba(34, 27, 255, 0.1);
}

[class*="hover:bg-blue/90"]:hover {
  background-color: rgba(57, 152, 211, 0.9);
}

[class*="hover:text-blue"]:hover {
  color: var(--blue);
}

[class*="hover:text-blue/80"]:hover {
  color: rgba(34, 27, 255, 0.8);
}

[class*="hover:scale-105"]:hover {
  transform: scale(1.05);
}

.a:visited {
  color: var(--gray-300);
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark);
  color: var(--gray-300);
  scroll-behavior: smooth;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--green);
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff, #737373);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}

.skill-pill:hover {
  transform: scale(1.05);
}

.flex {
  display: flex;
  gap: 1rem;
}

.bg-darker {
  background-color: #1a1a1a;
}

.bg-darker {
  background-color: #1a1a1a;
}

/* Focus */
.focus\:outline-none:focus {
  outline: none;
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-start {
  align-items: flex-start;
}

.items-baseline {
  align-items: baseline;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 0.75rem;
}

.space-x-8>*+* {
  margin-left: 2rem;
}

.space-x-4>*+* {
  margin-left: 1rem;
}

.space-x-2>*+* {
  margin-left: 0.5rem;
}

.space-y-1>*+* {
  margin-top: 0.25rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

/* Sizing */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-64 {
  width: 16rem;
}

.h-64 {
  height: 16rem;
}

.w-80 {
  width: 20rem;
}

.h-80 {
  height: 20rem;
}

.w-56 {
  width: 14rem;
}

.h-56 {
  height: 14rem;
}

.w-72 {
  width: 18rem;
}

.h-72 {
  height: 18rem;
}

.w-48 {
  width: 12rem;
}

.h-48 {
  height: 12rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.h-16 {
  height: 4rem;
}

.h-48 {
  height: 12rem;
}

/* Spacing */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-3 {
  padding: 0.75rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Typography */
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-center {
  text-align: center;
}

/* Borders */
.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-2 {
  border-width: 2px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded {
  border-radius: 0.25rem;
}

/* Effects */
F .transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transform {
  transform: var(--tw-transform);
}

/* Positioning */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-50 {
  z-index: 50;
}

.-bottom-5 {
  bottom: -1.25rem;
}

.-right-5 {
  right: -1.25rem;
}

/* Display */
.block {
  display: block;
}

.hidden {
  display: none;
}

.inline-flex {
  display: inline-flex;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.object-center {
  object-position: center;
}

.min-h-screen {
  min-height: 100vh;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:w-80 {
    width: 20rem;
  }

  .md\:h-80 {
    height: 20rem;
  }

  .md\:w-72 {
    width: 18rem;
  }

  .md\:h-72 {
    height: 18rem;
  }

  .md\:w-64 {
    width: 12rem;
  }

  .md\:h-64 {
    height: 12rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.decoration-none {
  text-decoration: none;
}