/* Import IBM Plex Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-dark: #2C2C2C;
  --primary-accent: #EB6110;

  --background-light: #F0F0F0;
  --background-white: #FFFFFF;
  --text-secondary: #6A6A6A;
  --border-subtle: #D9D9D9;
  --footer-background: #1A1A1A;
  --footer-text-light: #E0E0E0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif; /* using imported font */
  color: var(--primary-dark);
  background: var(--background-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


/* all css  */
/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}