@import url("/satoshi.css");

body {
  font-family: "Satoshi", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Navbar container */
nav {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #5c5c5c, #2f2f2f);
}

/* Logo */
nav a.text-white {
  font-size: 13px;
  text-decoration: none;
}

/* Navigation links */
nav .flex {
  display: flex;
  gap: 5px; /* spacing between Home, Blog, Contact */
}

/* Buttons */
nav .flex a {

  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 9999px; /* Tailwind rounded-full */
  background: rgba(255, 255, 255, 0.2); /* Tailwind bg-white/20 */
  backdrop-filter: blur(12px); /* Tailwind backdrop-blur-xl */
  color: #fff; /* Tailwind text-white */
  font-weight: 600; /* Tailwind font-semibold */
  font-size: 0.75rem; /* Tailwind text-xs */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Tailwind border-white/30 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25); /* Tailwind shadow-md */
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover effect to mimic Tailwind gradient slide */
nav .flex a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #3b82f6, #9333ea); /* Tailwind from-blue-500 to-purple-500 */
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
  z-index: 0;
}

nav .flex a:hover::after {
  transform: translateY(0);
}

nav .flex a span {
  position: relative;
  z-index: 1;
}


/* Hover effect */
nav .flex a:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
