/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./templates/routes/main/home/home.css ***!
  \*******************************************************************************************************************/
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 4.5rem);
}

/* Hero content */
#home_hero {
  padding: 2rem 1rem;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

#home_title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.home-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* CTA buttons */
.home-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-cta-group .btn {
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cta-group .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.home-cta-group .btn-primary {
  box-shadow: 0 4px 16px rgba(44, 123, 229, 0.45);
}

/* Footer links */
.home-footer {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 1.25rem;
  pointer-events: none;
  z-index: 10;
}

.home-footer-link {
  pointer-events: all;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.home-footer-link:hover {
  opacity: 1;
  text-decoration: none !important;
}

@media (max-width: 575.98px) {
  .home-cta-group .btn {
    width: 100%;
  }
}

