/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}


a, a:visited, a:hover, a:active {
  text-decoration: none;
}

/* Base styles */
:root {
  /* Original color scheme from the preview */
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 240 5.9% 10%; /* Blue color */
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 100%;
  --secondary-foreground:240 10% 3.9%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 221.2 83.2% 53.3%;
  --radius: 0.5rem;
}

.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;
  --popover: 222.2 84% 4.9%;
  --popover-foreground: 210 40% 98%;
  --primary: 217.2 91.2% 59.8%;
  --primary-foreground: 222.2 47.4% 11.2%;
  --secondary: 217.2 32.6% 17.5%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;
  --accent: 217.2 32.6% 17.5%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --border: 217.2 32.6% 17.5%;
  --input: 217.2 32.6% 17.5%;
  --ring: 224.3 76.3% 48%;
}

/* Global styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

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

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

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

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

.flex-1 {
  flex: 1 1 0%;
}

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

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

/* Spacing */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

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

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

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

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.m-2 {
  margin: 0.5rem;
}

.m-4 {
  margin: 1rem;
}

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

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

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

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

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

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

.mt-2 {
  margin-top: 0.5rem;
}

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

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* Typography */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

/* Colors */
.bg-background {
  background-color: hsl(var(--background));
}

.bg-primary {
  background-color: hsl(var(--primary));
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

}

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

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

.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

/* Borders */
.border {
  border-width: 1px;
  border-style: solid;
  border-color: hsl(var(--border));
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(var(--border));
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: hsl(var(--border));
}

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

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

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

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .sm\:space-y-0 > * + * {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {


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

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

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

}

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

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

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

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

.block {
  display: block;
}

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

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

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

  .md\:hidden {
    display: none;
  }

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

/* Images */
.object-cover {
  object-fit: cover;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.h-10 {
  height: 2.5rem;
}

.w-10 {
  width: 2.5rem;
}

.h-20 {
  height: 5rem;
}

.w-20 {
  width: 5rem;
}

.h-48 {
  height: 12rem;
}

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

.w-full {
  width: 100%;
}

/* Shadows */
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

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

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Transitions */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

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

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:bg-primary\/90:hover {
  background-color: hsla(var(--primary), 0.9);
}

.hover\:bg-secondary\/80:hover {
  background-color: hsla(var(--secondary), 0.8);
}

.hover\:text-foreground:hover {
  color: hsl(var(--foreground));
}

.hover\:underline:hover {
  text-decoration: underline;
}

/* Ghost-specific styles */
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-bookmark-card {
  width: 100%;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
}

.kg-bookmark-container {
  display: flex;
  color: hsl(var(--card-foreground));
  text-decoration: none;
}

@media (max-width: 640px) {
  .kg-bookmark-container {
    flex-direction: column;
  }
}

.kg-bookmark-content {
  flex-grow: 1;
  padding: 1rem;
}

.kg-bookmark-title {
  font-weight: 600;
}

.kg-bookmark-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kg-bookmark-thumbnail {
  position: relative;
  min-width: 30%;
  max-height: 100%;
}

.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Ghost width classes */
.kg-width-wide {
  position: relative;
  width: 85vw;
  max-width: 1200px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-width-full img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .kg-width-wide {
    width: 100%;
  }

  .kg-width-full {
    width: 100vw;
  }
}

/* Ghost card styles */
.kg-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.kg-image-card img {
  border-radius: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.kg-embed-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.kg-embed-card iframe {
  width: 100%;
  border-radius: 0.5rem;
}

.kg-code-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.kg-code-card pre {
  background-color: hsl(var(--muted));
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
}

.kg-header-card {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.kg-header-card h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .kg-header-card h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.kg-button-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.kg-button-card a {
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: hsl(var(--primary));
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  text-decoration: none;
}

.kg-button-card a:hover {
  background-color: hsla(var(--primary), 0.9);
}

.kg-audio-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.kg-audio-card audio {
  width: 100%;
}

.kg-file-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
}

.kg-file-card-icon {
  margin-right: 1rem;
  color: hsl(var(--primary));
}

.kg-file-card-contents {
  flex: 1 1 0%;
}

.kg-file-card-title {
  font-weight: 500;
}

.kg-file-card-caption {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.kg-file-card-filesize {
  font-size: 0.75rem;
  line-height: 1rem;
  color: hsl(var(--muted-foreground));
}

.kg-file-card-link {
  margin-left: 1rem;
  display: inline-flex;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: hsl(var(--primary));
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  text-decoration: none;
}

.kg-file-card-link:hover {
  background-color: hsla(var(--primary), 0.9);
}

/* Comments styling */
.comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 1.5rem;
}

.comment:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 500;
}

.comment-date {
  font-size: 0.75rem;
  line-height: 1rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.5rem;
}

.comment-content {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.comment-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.comment-reply {
  font-size: 0.75rem;
  line-height: 1rem;
  color: hsl(var(--primary));
}

.comment-reply:hover {
  text-decoration: underline;
}

/* Blog post content styling */
.prose {
  color: hsl(var(--foreground));
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.prose h2 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.prose h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.prose h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.prose p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: hsla(var(--primary), 0.8);
}

.prose ul,
.prose ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: hsla(var(--primary), 0.2);
  padding-left: 1rem;
  font-style: italic;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose img {
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.prose pre {
  background-color: hsl(var(--muted));
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose code {
  background-color: hsl(var(--muted));
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.prose pre code {
  background-color: transparent;
  padding: 0;
}

.prose table {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}

.prose thead {
  background-color: hsl(var(--muted));
}

.prose th {
  padding: 0.5rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid hsl(var(--border));
}

.prose td {
  padding: 0.5rem;
  border: 1px solid hsl(var(--border));
}

.prose hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: hsl(var(--border));
}

.prose figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.prose figcaption {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sticky header */
.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

/* Backdrop blur */
.backdrop-blur {
  backdrop-filter: blur(8px);
}

/* Brightness */
.brightness-\[0\.7\] {
  filter: brightness(0.7);
}

/* Background opacity */
.bg-background\/95 {
  background-color: hsla(var(--background), 0.95);
}

.bg-background\/20 {
  background-color: hsla(var(--background), 0.2);
}

.bg-background-20 {
  background-color: hsla(var(--background), 0.2);
}


.bg-background-30 {
  background-color: hsla(var(--background), 0.3);
}


.bg-primary\/10 {
  background-color: hsla(var(--primary), 0.1);
}

/* Gradient */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black\/70 {
  --tw-gradient-from: rgba(0, 0, 0, 0.7);
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* Negative margins */
.-mt-32 {
  margin-top: -8rem;
}

@media (min-width: 768px) {
  .md\:-mt-40 {
    margin-top: -10rem;
  }
}

/* Height utilities */
.h-\[40vh\] {
  height: 40vh;
}

.h-\[400px\] {
  height: 400px;
}

@media (min-width: 768px) {
  .md\:h-\[50vh\] {
    height: 50vh;
  }
}

@media (min-width: 1024px) {
  .lg\:h-\[60vh\] {
    height: 60vh;
  }
}

@media (min-width: 640px) {
  .sm\:h-\[500px\] {
    height: 500px;
  }
}

/* Aspect ratio */
.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* Opacity */
.opacity-90 {
  opacity: 0.9;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Tracking */
.tracking-tight {
  letter-spacing: -0.025em;
}

/* Tabular nums */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}

/* Group hover */
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:inline-block {
    display: inline-block;
  }

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

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

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

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

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

  .md\:inline {
    display: inline;
  }
}

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

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:order-last {
    order: 9999;
  }
}

/* Navigation styles */
.nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  position: relative;
}

.nav-item:hover {
  color: hsl(var(--foreground));
}

.nav-item.active {
  color: hsl(var(--foreground));
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: hsl(var(--primary));
  border-radius: 2px;
}

/* Fix for Ghost navigation */
.nav li {
  list-style-type: none;
}

.nav li a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  position: relative;
}

.nav li a:hover {
  color: hsl(var(--foreground));
}

.nav li a.active {
  color: hsl(var(--foreground));
}

.nav li a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: hsl(var(--primary));
  border-radius: 2px;
}

/* Mobile menu styles */
#mobile-menu {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
}

#mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

#mobile-menu a:hover {
  color: hsl(var(--foreground));
}

#mobile-menu a.active {
  color: hsl(var(--foreground));
}

/* Footer styles */
footer {
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

footer a:hover {
  color: hsl(var(--foreground));
}

footer .social-icons {
  display: flex;
  gap: 1rem;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

footer .social-icons a:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

footer .copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--muted-foreground));
}


.bg-card{
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.card-image{
  border-top-right-radius: var(--radius);
  border-top-left-radius: var(--radius);
}


.main-banner{
  color: hsl(var(--secondary));
}

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

.basic-button{
  color: hsl(var(--primary));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  border: 1px solid hsl(var(--border));
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
  transition: border-color 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: transform 0.3s ease;
  
}