/**
 * Theme Name:  Theme
 * Author:      Дмитрий Кузьменко
 * Author URI:  https://t.me/plsooTeam
 * Description: Тема-фреймворк для быстрой разработки кастомных тем на wordpress.
 * License:     GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Version:     1.0
 */

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height));
  font-family: sans-serif;
  font-size: 1.6rem;
}

/* Section - demo */
.demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height));
  text-align: center;
  padding: 40px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.demo h1 {
  font-size: 80px;
  margin: 0;
  color: #007bff;
  font-weight: 700;
}

.demo-message {
  font-size: 28px;
  margin: 20px 0 10px;
  color: #333;
  font-weight: 600;
}

.demo-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Section demo-single */
.demo-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height));
  text-align: center;
  padding: 40px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.demo-single h1 {
  font-size: 70px;
  margin: 0;
  color: #007bff;
  font-weight: 700;
}

.demo-single-message {
  font-size: 26px;
  margin: 20px 0 10px;
  color: #333;
  font-weight: 600;
}

.demo-single-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.demo-single-note {
  font-size: 16px;
  color: #28a745;
  font-style: italic;
  max-width: 600px;
  margin-top: 10px;
  user-select: none;
}

/* Section - demo-page */
.demo-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height));
  text-align: center;
  padding: 40px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.demo-page h1 {
  font-size: 70px;
  margin: 0;
  color: #17a2b8; /* Голубой оттенок */
  font-weight: 700;
}

.demo-page-message {
  font-size: 26px;
  margin: 20px 0 10px;
  color: #333;
  font-weight: 600;
}

.demo-page-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.5;
}


/* Section - 404*/
.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height));
  text-align: center;
  padding: 40px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.error-404 h1 {
  font-size: 80px;
  margin: 0;
  color: #ff4c4c;
}

.error-404 .error-message {
  font-size: 28px;
  margin: 20px 0 10px;
  color: #333;
}

.error-404 .error-description {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin-bottom: 30px;
}

.error-404 .error-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.error-404 .error-button:hover {
  background-color: #0056b3;
}