/*
Theme Name: Cleaning
Theme URI: https://kru-web.ru
Author: kru-web.ru
Author URI: https://kru-web.ru
Description: Кастомная тема для клининговой компании
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleaning
*/

/* ============================================================
   ROOT — Design Tokens (из Figma)
   ============================================================ */
:root {
  /* --- Colors --- */
  --main:    #2a3a81;
  --white:   #ffffff;
  --text2:   #8b8b8b;
  --fon:     #f0f0f0;
  --dark:    #0e0e0e;

  /* --- Typography --- */
  --font-base: "Manrope", sans-serif;

  /* text */
  --text-size:        22px;
  --text-line-height: 130%;
  --text-weight:      400;

  /* h1 */
  --h1-size:        64px;
  --h1-line-height: 110%;
  --h1-weight:      600;

  /* h2 */
  --h2-size:        50px;
  --h2-line-height: 110%;
  --h2-weight:      600;

  /* --- Effects --- */
  --shadow-card: 4px 4px 17px 0px rgba(38, 59, 128, 0.25);
  --shadow-btn:  0px 4px 6.8px 0px rgba(38, 59, 128, 0.19);

  /* --- Layout --- */
  --container-padding: 40px;
  --container-max:     1720px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  font-weight: var(--text-weight);
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: circle;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-weight);
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-weight);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.88;
}

.btn-primary {
  background: var(--main);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 20px 12px 20px;
  width: 240px;
  box-shadow: var(--shadow-btn);
}
