|
407 | 407 | grid-template-columns: 1fr; |
408 | 408 | } |
409 | 409 | } |
| 410 | + /* Контактная секция */ |
| 411 | +#contact { |
| 412 | + background: var(--bg-dark); /* общий тёмный фон */ |
| 413 | + padding: 60px 20px; |
| 414 | + text-align: center; |
| 415 | + border-top: 2px solid var(--primary); /* синий акцент сверху */ |
| 416 | +} |
| 417 | + |
| 418 | +#contact .container { |
| 419 | + max-width: 800px; |
| 420 | + margin: 0 auto; |
| 421 | +} |
| 422 | + |
| 423 | +#contact .section-title { |
| 424 | + font-size: 28px; |
| 425 | + font-weight: 700; |
| 426 | + margin-bottom: 20px; |
| 427 | + background: linear-gradient(45deg, var(--primary), var(--secondary)); |
| 428 | + -webkit-background-clip: text; |
| 429 | + background-clip: text; |
| 430 | + color: transparent; /* градиентный текст */ |
| 431 | + text-transform: uppercase; |
| 432 | + letter-spacing: 1px; |
| 433 | +} |
| 434 | + |
| 435 | +#contact .contact-content p { |
| 436 | + font-size: 18px; |
| 437 | + margin-bottom: 15px; |
| 438 | + color: var(--text-secondary); /* мягкий серый текст */ |
| 439 | +} |
| 440 | + |
| 441 | +/* Кнопка */ |
| 442 | +#contact .btn { |
| 443 | + display: inline-block; |
| 444 | + background: var(--primary); |
| 445 | + color: #fff; |
| 446 | + padding: 12px 24px; |
| 447 | + border-radius: var(--radius); |
| 448 | + text-decoration: none; |
| 449 | + font-weight: 600; |
| 450 | + box-shadow: var(--shadow); |
| 451 | + transition: var(--transition); |
| 452 | +} |
| 453 | + |
| 454 | +#contact .btn:hover { |
| 455 | + background: var(--secondary); |
| 456 | + transform: translateY(-3px); |
| 457 | + box-shadow: 0 6px 16px rgba(0,0,0,0.4); |
| 458 | +} |
| 459 | + |
410 | 460 | </style> |
411 | 461 | </head> |
412 | 462 | <body> |
@@ -589,6 +639,14 @@ <h2 class="section-title">Сообщество</h2> |
589 | 639 | </div> |
590 | 640 | </div> |
591 | 641 | </section> |
| 642 | + <section id="contact" class="contact"> |
| 643 | + <div class="container"> |
| 644 | + <h2 class="section-title">Стань нашим разработчиком!</h2> |
| 645 | + <div class="contact-content"> |
| 646 | + <p>Свяжитесь с нами для того чтобы стать нашим разработчиком.</p> |
| 647 | + <p>Заполнить анкету: <a href="https://become.nuros.org/" class="btn">Анкета</a></p> |
| 648 | + |
| 649 | + </section> |
592 | 650 |
|
593 | 651 | <footer> |
594 | 652 | <div class="container"> |
|
0 commit comments