body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
  }
  pre{
     height: 240px; 
  }
  .feature-framer{
      height: 250px;
  }
  .hero {
    background: linear-gradient(to right, #222831, #393e46);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    height: 500px;
  }
  .btn-primary {
    background-color: #00adb5;
    border-color: #00adb5;
  }
  .btn-primary:hover {
    background-color: #009097;
  }
  .footer {
    background-color: #222831;
    color: white;
    padding: 2rem 0;
  }
  .toggle-preview {
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 1rem;
    background: white;
    text-align: left;
  }
  #main-nav{
      background-color: black;
      color: white;
  }
  #main-nav .nav-link {
    color: #222831 !important;
  }

.subtext-highlight-light{
  color: white
}

/* Skeleton Loading for Images */
.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.image-wrapper {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.image-wrapper.skeleton-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.dbx-public-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.image-wrapper:not(.skeleton-loading) .dbx-public-gallery-image {
  opacity: 1;
}

/* section-background plugin */
.sbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sbg__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ensure text content in the section stays above the background */
.content-window > *:not(.sbg) {
  position: relative;
  z-index: 1;
}