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

body {
  font-family: "Figtree", sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* Добавляю больше белого и серого цвета в градиент */
.background-container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.background-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 60% 20%, rgba(139, 92, 246, 0.5) 0%, transparent 35%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 70% 50%, rgba(180, 180, 180, 0.3) 0%, transparent 20%);
  animation: liquidFlow 20s ease-in-out infinite;
  filter: blur(40px);
}

.background-container::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(ellipse at 40% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 30%, rgba(220, 220, 220, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(76, 29, 149, 0.3) 0%, transparent 45%);
  animation: liquidFlow 25s ease-in-out infinite reverse;
  filter: blur(60px);
  opacity: 0.6;
}

@keyframes liquidFlow {
  0%,
  100% {
    transform: translate(0%, 0%) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-10%, 5%) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(5%, -8%) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(8%, 3%) rotate(270deg) scale(1.05);
  }
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 2rem 0;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

.logo img {
  height: 1px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Исправляю цвет навигационных ссылок на белый */
.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 300;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}



/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 20;
  max-width: 32rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  position: relative;
  filter: url(#glass-effect);
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  right: 4px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 9999px;
}

.badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 300;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
}

.title-beautiful {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.title-experiences {
  font-weight: 300;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Восстанавливаю анимацию кнопок как в React версии */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }

  .header-content {
    padding: 0 1rem;
  }

  .nav {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

  .hero-content {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}


  /* Перекрываем все оранжевые ссылки на странице */
  a, a * {
    color: #000000 !important;
  }

