/* Base Styles - Portfolio Site */

/* =====================
   Base Reset & Defaults
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.5;
}

/* =====================
   Typography Utilities
   ===================== */
.font-medium {
  font-weight: 500;
}

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

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

.text-xs {
  font-size: 0.75rem;
}

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

/* =====================
   Display Utilities
   ===================== */
.hidden {
  display: none;
}

/* =====================
   Responsive Utilities
   ===================== */
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
}
