/* Global Styles & Design Tokens */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #21c462;
  --primary-dark: #1aa552;
  --background-light: #f6f8f7;
  --background-dark: #122018;
  --text-dark: #121714;
  --text-light: #f0f4f2;
  --accent-green: #e6f8ec;
  --surface-light: #ffffff;
  --surface-dark: #1c2e24;
}

body {
  font-family: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #121714, #21c462);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes squeeze {

  0%,
  100% {
    transform: scaleX(0.33);
  }

  50% {
    transform: scaleX(1);
  }
}

.animate-squeeze {
  animation: squeeze 4s ease-in-out infinite;
}

/* Material Symbols */
.material-symbols-outlined,
.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Utility Classes */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--text-dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(33, 196, 98, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border-color: rgba(33, 196, 98, 0.2);
}

.breadcrumb-link {
  position: relative;
}

.breadcrumb-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
  width: 100%;
}

.pb-safe {
  padding-bottom: env(safe-area-inset-bottom, 20px);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: #21c462;
  color: white;
}

/* Ukrywanie scrollbara dla slidera, ale zachowanie funkcjonalności */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.highlight-placeholder {
  color: var(--primary);
  font-weight: 700;
}