/* Custom styles for the Landing Page */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

/* Custom Hero Background */
.hero-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("assets/night-coding-workspace.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* Huge Bold Typography */
.text-huge {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 900;
}

/* Custom Scrollbar for modern look */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #0f172a;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Transitions for hover effects */
.transition-all {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Showcase Grid Improvements */
.showcase-item {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-item:hover {
  transform: translateY(-10px);
}

/* Extra Whitespace Utility */
.spacer-xl {
  height: clamp(100px, 15vh, 200px);
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
