:root {
  /* Brand purple from the logo */
  --primary: 287 27% 41%;

  /* Clean white background */
  --background: 0 0% 100%;

  /* Dark text for readability */
  --foreground: 270 15% 15%;

  /* Soft lavender-muted surfaces */
  --muted: 280 20% 96%;
  --muted-foreground: 280 10% 45%;

  /* Light purple-tinted borders */
  --border: 280 15% 88%;

  /* Cards stay white for clarity */
  --card: 0 0% 100%;

  /* Rounded corners unchanged */
  --radius: 0.75rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  scroll-padding-top: 80px !important;
}

body {
  font-family: "Inter", sans-serif !important;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.7;
}

/* ================== LOGO ================== */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.logo-icon {
  width: 3.5rem;
  height: 3.5rem;
  /* background: hsl(var(--primary)); */
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 95px;
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Fraunces', serif !important;
}

.mono,
.font-mono {
  font-family: 'IBM Plex Mono', monospace !important;
}



/* FOOTER STYLES  */
/* .footer-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 1.5rem;
}
.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsla(var(--background) / 0.7);
  max-width: 22rem;
}

.footer h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  text-decoration: none;
  color: hsla(var(--background) / 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: hsl(var(--background));
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(var(--background) / 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsla(var(--background) / 0.7);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  text-decoration: none;
  color: hsla(var(--background) / 0.7);
}

.footer-legal a:hover {
  color: hsl(var(--background));
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.social-icons a {
  color: hsla(var(--background) / 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a:hover {
  color: hsl(var(--background));
  transform: translateY(-3px);
}  */

.badge {
  display: inline-block;
  background: hsl(var(--muted));
  color: hsl(var(--primary));
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Home page styles  */
.tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background: #f0efff;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2634;
}

@media screen and (max-width: 768px) {
  .tag {
    font-size: 0.875rem;
  }
}


h1 {
  font-size: 52px !important;
  font-weight: 700 !important;
}

h2 {
  font-size: 40px !important;
  font-weight: 600 !important;
}

h3 {
  font-size: 25px !important;
  font-weight: 700 !important;
}

body,
p,
li,
a,
label,
input,
textarea,
button,
em,
strong,
th,
td {
  font-size: 15px !important;
}

button,
[type='button'],
[type='reset'],
[type='submit'],
a {
  cursor: pointer;
}

@media (max-width:470px) {
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 20px !important;
  }
}

;