/*
Theme Name:   Русская Бизнес Тема (俄语商业主题)
Theme URI:    https://yourdomain.ru
Author:       Ваш Имя
Author URI:   https://yourdomain.ru
Description:  WordPress-тема для русскоязычного интернета, оптимизированная для Yandex, GEO и мобильных устройств.
Version:      1.0
Tested up to: 6.6
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  rus-theme
Tags:         block-styles, custom-colors, custom-menu, editor-style, flexible-header, full-site-editing, left-sidebar, localization, one-column, responsive-editable, russian, seo-friendly, translation-ready, two-columns, yandex
*/

/* ==============================================
   1. СБРОС СТИЛЕЙ (CSS Reset)
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--wp--preset--font-family--roboto);
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.6;
  color: var(--wp--preset--color--dark);
  background: var(--wp--preset--color--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==============================================
   2. ИЗОБРАЖЕНИЯ (адаптив)
   ============================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==============================================
   3. ССЫЛКИ
   ============================================== */
a {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--wp--preset--color--accent);
}

/* ==============================================
   4. ЗАГОЛОВКИ
   ============================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--secondary);
}

/* ==============================================
   5. КНОПКИ
   ============================================== */
button,
input[type="button"],
input[type="submit"],
.wp-block-button__link {
  background: var(--wp--preset--color--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover,
.wp-block-button__link:hover {
  background: var(--wp--preset--color--accent);
}

/* ==============================================
   6. КОНТЕЙНЕРЫ И ОБЕРТКИ
   ============================================== */
.wp-site-blocks {
  padding-left: 15px;
  padding-right: 15px;
}

/* ==============================================
   7. СТРАНИЦА КОНТАКТОВ / GEO-БЛОКИ
   ============================================== */
.geo-block {
  padding: 2rem;
  background: var(--wp--preset--color--light);
  border-radius: 8px;
  margin: 2rem 0;
}

.geo-address {
  font-size: 15px;
  line-height: 1.7;
}

.geo-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--primary);
}

/* ==============================================
   8. МОБИЛЬНАЯ АДАПТАЦИЯ (для Yandex SEO)
   ============================================== */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .wp-site-blocks {
    padding-left: 10px;
    padding-right: 10px;
  }
}