/* style.css */

/* 🌀 Сброс базовых стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔷 Основной фон и шрифты */
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* 🏠 Хедер: большой фон и центрирование */
.hero {
  background: #0073e6;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero .logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* 🔘 Стили для кнопок */
.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  background: #005bb5;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover {
  background: #003f80;
}

/* 📝 Основной контент */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.section {
  margin-bottom: 60px;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* 📊 Структура Roadmap */
.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.columns h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.columns ul {
  list-style-type: disc;
  margin-left: 20px;
  text-align: left;
}

/* 📩 Формы */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

input, textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background: #005bb5;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #003f80;
}

/* 🎉 Сообщение после отправки */
.confirmation {
  margin-top: 15px;
  color: green;
  font-size: 16px;
  display: none; /* показывается после отправки */
}

/* 📄 Подвал сайта */
.footer {
  background: #eee;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* 📱 Адаптив */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .meta-button {
  background-color: #4b4be0;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-top: 16px;
  margin-bottom: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.meta-button:hover {
  background-color: #3737cc;
}

  .hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}


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