/* Import TT Norms Pro font */
@import url("https://fonts.cdnfonts.com/css/tt-norms-pro");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "TT Norms Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f8f8;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
}

/* Language Switcher */
.language-switcher {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f5f5f5;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: "TT Norms Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #636d7e;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.lang-btn:hover {
  color: #1a1a1a;
}

.lang-btn.active {
  color: #039635;
}

.lang-divider {
  color: #d1d5db;
  font-size: 14px;
}

/* Container */
.container {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Background Pattern */
.background-pattern {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  /* overflow: hidden; */
  z-index: 0;
  width: 100%;
}

.background-pattern img {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  object-fit: contain;
  margin: auto;
}

/* Main Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 1;
  position: absolute;
  width: 100%;
  top: 11em;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) -10.56%,
    #ffffff 24.86%
  );

  @media (min-width: 1441px) {
    top: 18em;
  }

  @media (max-width: 950px) {
    top: 7em;
  }

  @media (max-width: 650px) {
    top: 5em;
  }
}

/* Badge */
.badge {
  display: inline-block;
  background-color: #f5f5f5;
  color: #636d7e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-top: 8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

/* Hero Title */
.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000;
}

.hero-title .highlight {
  color: #039635;
}

/* Description */
.description {
  font-size: 18px;
  color: #636d7e;
  max-width: 650px;
  line-height: 24px;
  font-weight: 200;
}

/* CTA Button */
.cta-button {
  background-color: #000000;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "TT Norms Pro", sans-serif;
}

.cta-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  transform: translateY(0);
}

/* Footer */
.footer {
  padding: 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.875rem;
  color: #636d7e;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icon {
  color: #636d7e;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #039635;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .hero-title {
    font-size: 3rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 1rem;
  }
}
