@charset "UTF-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

html, body {
  height: 100%;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212;
  color: #fff;
}

a {
  color: #FFD700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Меню */
.header {
  background: #1a1a1a;
  padding: 15px 20px;
}

.nav-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.nav-link {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-link:hover {
  background: #e6c200;
}

@media (max-width: 768px) {
  .nav-link {
    font-size: 14px;
    padding: 8px 16px;
  }
}
/* Контейнер для всего содержимого */
.main-content {
  min-height: calc(100vh - 120px); /* Меню + футер */
  padding: 50px 20px;
}

/* Hero */
.hero {
  background: url('../img/background.png') no-repeat center center/cover;
  width: 100%;
  height: 801px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 20px;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-button {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta-button:hover {
  background: #e6c200;
}

/* Section */
.section {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.section h1,
.section h2,
.section h3,
.section h4 {
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.section p,
.section li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

ul, ol {
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
}

/* FAQ */
.faq {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #FFD700;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  background: #333;
  color: #FFD700;
  padding: 15px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: left;
}

.faq-icon {
  margin-right: 10px;
  font-size: 18px;
  min-width: 20px;
  text-align: center;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-question span + span {
  flex: 1;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #222;
  border-radius: 5px;
  margin-top: 5px;
  text-align: left;
}

/* Футер фикс снизу */
.footer {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.footer-content p {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  display: inline-block;
  margin: 0 10px;
}

.footer-links a {
  color: #FFD700;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-button {
    padding: 10px 20px;
  }

  .nav-link {
    font-size: 14px;
  }
}
