/* Core styles for the website */

:root {
  --background: 60 7.5% 5.85%;
  --foreground: 60 100% 95%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 60 6% 50%;
  --card: 60 7.5% 5.2%;
  --card-foreground: 60 100% 95%;
  --primary: 60 100% 95%;
  --accent-foreground: 173 80% 40%;
  --radius: .5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: hsl(60, 7.5%, 5.85%);
  color: hsl(60, 100%, 95%);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

.bg-background {
  background-color: hsl(60, 7.5%, 5.85%);
}

.text-foreground {
  color: hsl(60, 100%, 95%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

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

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.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-4xl {
  font-size: 2.25rem;
}

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

.font-extrabold {
  font-weight: 800;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.p-16 {
  padding: 4rem;
}

.m-4 {
  margin: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.border-element {
  background-image: radial-gradient(transparent 1px, #10100e 1px);
  background-size: 4px 4px;
  z-index: 40;
  background-color: transparent;
  backdrop-filter: blur(4px);
}

.inset-x-0 {
  left: 0;
  right: 0;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:text-lg {
    font-size: 1.125rem;
  }
  
  .sm\:text-justify {
    text-align: justify;
  }
  
  .sm\:top-16 {
    top: 4rem;
  }
}

@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
  }
  
  .lg\:text-xl {
    font-size: 1.25rem;
  }
}