/* Shared styles for superc0de site */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");

/* Base styles */
body {
  font-family: "Source Code Pro", monospace;
  margin: 0;
  padding: 0;
}

/* Utility classes for consistent styling */
.supercode-container {
  min-height: 100vh;
}

.supercode-main-content {
  padding-top: 2rem;
}

/* Navigation specific styles */
.supercode-nav {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Override for pages that need special layout */
.supercode-home-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 150px); /* Account for nav height */
}

/* Content sections styling */
.supercode-content-section {
  background-color: rgb(17, 24, 39); /* gray-900 */
  border-bottom: 4px solid rgb(153, 246, 228); /* teal-200 */
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.supercode-content-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .supercode-nav .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .supercode-nav .flex.space-x-6 {
    gap: 1rem;
  }
}
