/*!
Theme Name: kids-infrastructure
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kids-infrastructure
*/

/* Theme: Kids Infrastructure - Front Page Styles */

/* Общий контейнер */
.responsive-table-wrapper td {
  color: #000 !important;   /* основной текст черный */
}
.kinder-table  {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  color: #333;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Заголовки */
.kinder-table  thead th {
  background: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  border: none;
}

/* Чередование строк */
.kinder-table  tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Ячейки */
.kinder-table  td {
  padding: 10px 12px;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}

/* Картинка */
.kinder-table  td img {
  border-radius: 6px;
  max-width: 70px;
  height: auto;
  display: block;
  margin-bottom: 5px;
}

/* Ссылки */
.kinder-table  a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}
.kinder-table  a:hover {
  text-decoration: underline;
}

/* Теги особенностей */
.peculiarities-wrap .tag {
  background: #e9f5e9;
  color: #2e7d32;
  padding: 4px 8px;
  border-radius: 16px;
  margin: 3px;
  display: inline-block;
  font-size: 13px;
  border: 1px solid #c8e6c9;
  transition: background 0.3s;
}
.peculiarities-wrap .tag:hover {
  background: #c8e6c9;
}

/* Рейтинг */
.kinder-table .rating {
  font-weight: bold;
  color: #ff9800;
  font-size: 15px;
}

@media (max-width: 768px) {
  .kinder-table thead {
    display: none; /* скрываем заголовки таблицы */
  }

  .kinder-table  tbody tr {
    display: block;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    padding: 12px;
  }

  .kinder-table  td {
    display: block;
    margin: 6px 0;
    font-size: 14px;
    border-bottom: 0px solid #e0e0e0;
  }

  .kinder-table  td:nth-child(1)::before { content: "Детский сад: "; font-weight: bold; }
  .kinder-table  td:nth-child(2)::before { content: "Адрес: "; font-weight: bold; }
  .kinder-table  td:nth-child(3)::before { content: "Тип: "; font-weight: bold; }
  .kinder-table  td:nth-child(4)::before { content: "Статус: "; font-weight: bold; }
  .kinder-table  td:nth-child(5)::before { content: "Территория: "; font-weight: bold; }
  .kinder-table  td:nth-child(6)::before { content: "Особенности: "; font-weight: bold; }
  .kinder-table  td:nth-child(7)::before { content: "Рейтинг: "; font-weight: bold; }

  /* Подписи для ячеек */
  .kinder-table  td::before {
    content: attr(data-label) ": ";
    font-weight: bold;
    color: #333;
    display: inline-block;
    margin-right: 6px;
  }

  /* Фото и название в центре */
  .kinder-table  td[data-label="Детский сад"] {
    text-align: center;
  }

  .kinder-table  td[data-label="Детский сад"] img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .kinder-table  td[data-label="Детский сад"] a:first-of-type {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #6a0dad;
    text-decoration: none;
    margin-bottom: 8px;
  }

  /* Особенности — теги */
  .peculiarities-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }

  .peculiarities-wrap .tag {
    background: #f4fff4;
    border: 1px solid #6abf69;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    color: #2e7d32;
  }

  /* Рейтинг и "Подробнее" внизу */
  .kinder-table  td[data-label="Рейтинг"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
  }

  .kinder-table  td[data-label="Рейтинг"] .details-link {
    background: #6a0dad;
    color: #fff !important;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    transition: 0.2s;
  }

  .kinder-table  td[data-label="Рейтинг"] .details-link:hover {
    background: #570c9c;
  }
}




.burger {
  display: none;
}

.responsive-table-wrapper th {
    background:#25b625;
    color:#fff;
}

@media (max-width: 768px) {
  .burger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .main-nav {
    display: none; /* по умолчанию скрыто */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }


    .responsive-table-wrapper {
    overflow-x: hidden;
  }

  .responsive-table-wrapper table {
    width: 100% !important;
    table-layout: fixed; /* Равномерное распределение колонок */
  }

  .responsive-table-wrapper th,
  .responsive-table-wrapper td {
    padding: 2px;
    font-size: 10px;
    word-break: break-word;
    vertical-align: top;
  }

  .responsive-table-wrapper td img {
    width: 60px !important;
    height: 45px !important;
  }

  .feature-tag {
    font-size: 10px;
    padding: 0px 0px;
    margin: 1px 2px;
  }

  .responsive-table-wrapper .show-on-map {
    font-size: 11px;
  }

  .responsive-table-wrapper td div {
    font-size: 10px !important;
  }

  .responsive-table-wrapper .star-rating {
    font-size: 10px !important;
  }
}



.menu-section {
  padding: 50px 20px;
  text-align: center;
}

.menu-section h2 {
  font-size: 2em;
  margin-bottom: 8px;
}

.menu-section p {
  color: #666;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.menu-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 24px;
  text-align: left;
  transition: all 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.menu-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: block;
}

.menu-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 15px;
}

.menu-card a {
  color: #00a000;
  font-weight: bold;
  text-decoration: none;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.hero .container {
  max-width: none;
  padding: 0 40px;
}

.hero {
  background: url('/wp-content/uploads/playground-bg.jpg') center/cover no-repeat;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 90, 0, 0.65); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background-color: #fff;
  color: #0a5f0a;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.hero-btn:hover {
  background-color: #e0f0e0;
}

.hero-btn.outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: 'Exo', sans-serif;
	margin: 0;
	padding: 0;
	position: relative;
	overflow-x: hidden;
}


.context {
    width: 100%;
    position: absolute;
    top:50vh;
    
}

.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}

body::before,
body::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.5;
}

body::before {
	width: 350px;
    height: 300px;
    background: #a8c6cd;
    top: -100px;
    left: -150px;
}

body::after {
    width: 296px;
    height: 240px;
    background: #ffd3f0;
    bottom: 2px;
    right: -79px;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(52, 221, 22);
    animation: animate 15s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 10px;
    height: 10px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 50px;
    height: 50px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 25s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}







.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Theme: Kids Infrastructure - Front Page Styles */

body {
  background-color: #fffdf8;
  font-family: 'Inter', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
width: 100%;
height:100vh;
}




main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}


.main-nav .main-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .main-menu li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav .main-menu li a:hover {
  color: #fc7e59;
}



.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #ffffff;
}

.search-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 20px;
}

.search-bar select,
.search-bar input {
  padding: 10px 14px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  min-width: 180px;
}

.search-bar button {
  background-color: #fc7e59;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.map-container {
  margin: 0 auto 50px;
  max-width: 1200px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#homepage-map {
  width: 100%;
  height: 400px;
}

section.featured {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section.featured h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 16px;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  color: #fc7e59;
  text-decoration: none;
  font-weight: 500;
}

/* --- Kids Infrastructure: Single Igraonica Card Styles --- */
.igraonica-card {
    max-width: 960px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 2rem;
    font-family: "Segoe UI", system-ui, sans-serif;
}
.igraonica-card h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}
.igraonica-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.igraonica-meta .block {
    flex: 1 1 200px;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}
.igraonica-meta .block p {
    margin: 0;
    font-size: 1.1rem;
}
.igraonica-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}
.igraonica-gallery a img {
    height: 120px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.igraonica-gallery a:hover img {
    transform: scale(1.05);
}
.igraonica-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
}

/* --- Kids Infrastructure: Front Page Carousel Styles --- */
.carousel-wrap {
  margin: 4px 0;
  position: relative;
  width: 220px;
}
.carousel-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.carousel-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  border: 2px solid #fff;
  transition: border-color 0.2s;
}
.carousel-thumb.selected {
  border-color: #2196f3;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  opacity: 0.92;
  transition: background 0.2s, box-shadow 0.2s;
}
.carousel-arrow:hover {
  background: #e3f2fd;
  box-shadow: 0 4px 12px #2196f355;
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: #2196f3;
}

/* --- Kids Infrastructure: Front Page Search Bar Geo Button --- */
#geo-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}
#geo-btn img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

/* --- Kids Infrastructure: Map Container Height Override --- */
#playgrounds-map {
  height: 600px;
}

/* --- End of custom styles ---



html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* --- Footer Styles (modern, always centered) --- */
.site-footer {
  background: linear-gradient(90deg, #8fdd81 0%, #f7fdf2 100%);
  border-top: 1px solid #c3e6cb;
  margin-top: 0 !important;
  box-shadow: 0 -2px 12px #0001;
  text-align: center;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.01em;
  position: relative;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.footer-team {
  margin-top: 12px;
  font-size: 15px;
  color: #333;
}

.footer-bottom, .site-footer .footer-bottom {
  margin-top: 18px;
  text-align: center;
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  
}

.site-footer a {
  color: #25b625;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover,
.site-footer a:focus {
  color: #1a8c1a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  body::before,
  body::after {
    display: none !important;
  }

  /* Общие размеры шрифта */
  body {
    font-size: 14px;
    line-height: 1.5;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  span,
  button,
  select,
  label,
  input {
    font-size: 14px;
  }

  /* Контейнеры */
  .container {
    padding: 0 16px;
    max-width: 100%;
  }

  /* Hero-секция */
  .hero-content {
    text-align: center;
    padding: 24px 16px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  /* Меню */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    padding: 20px;
    text-align: center;
  }

  .menu-card img.menu-icon {
    width: 48px;
    margin-bottom: 12px;
  }

  /* Карта и фильтры */
  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar select,
  .search-bar button {
    width: 100%;
    margin-bottom: 8px;
  }

  .map-container {
    margin-top: 16px;
  }

  #playgrounds-map {
    height: 400px;
  }

  /* Снижение отступов */
  .menu-section,
  .search-map-section {
    padding: 24px 0;
  }

   .circles {
    overflow: hidden;
    pointer-events: none;
    width: 50%;
  }

  .circles li {
    max-width: 40px;
    max-height: 40px;
    opacity: 0.5;
  }

  .circles li:nth-child(1),
  .circles li:nth-child(4),
  .circles li:nth-child(7),
  .circles li:nth-child(10) {
    width: 40px !important;
    height: 40px !important;
  }

  .circles li:nth-child(2),
  .circles li:nth-child(3),
  .circles li:nth-child(5),
  .circles li:nth-child(6),
  .circles li:nth-child(8),
  .circles li:nth-child(9) {
    width: 15px !important;
    height: 15px !important;
  }

  /* Можно подвинуть левый край внутрь */
  .circles li {
    left: clamp(5%, 85vw, 90%);
  }
}
}