/* wa-theme.css — тема, сгенерированная для восстановленного сайта (deepseek/deepseek-v4-pro, попытка 1). */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  background-color: #f4f7ec;
  color: #2e2e2e;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "Globe Gardens";
  display: block;
  background: linear-gradient(135deg, #1f4a1f, #2c5e2e);
  color: #f4f7ec;
  padding: 24px 20px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  background-image: none;
}

body::after {
  content: "© 2024 Globe Gardens. All rights reserved.";
  display: block;
  background: #1e2a1e;
  color: #9da89d;
  padding: 18px 20px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
  background-image: none;
}

a {
  color: #c56c39;
  text-decoration: none;
  transition: color 0.2s;
  background-image: none;
}

a:hover {
  color: #8c4525;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

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

th, td {
  padding: 12px 15px;
  border: 1px solid #d0d8c8;
  text-align: left;
}

th {
  background-color: #e6ecdf;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #f9fbf6;
}

form {
  margin: 1.5em 0;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #c2cabd;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2c5e2e;
  box-shadow: 0 0 0 3px rgba(44, 94, 46, 0.15);
}

button,
input[type="submit"],
input[type="button"] {
  background-color: #2c5e2e;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.25s, transform 0.1s;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #3d7a3d;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(1px);
}

nav {
  background-color: #2c5e2e;
  background-image: none;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  background-image: none;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  padding: 14px 20px;
  color: #f4f7ec;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  background-image: none;
}

nav a:hover,
nav li:hover > a {
  background-color: #3d7a3d;
  text-decoration: none;
  color: #ffffff;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1f3d1f;
  padding: 0;
  min-width: 200px;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

nav li:hover > ul {
  display: block;
}

nav ul ul li {
  display: block;
  width: 100%;
}

nav ul ul a {
  padding: 12px 20px;
}

.box {
  max-width: 650px;
  margin: 50px auto;
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
  flex: 0 1 auto;
}

.box h1 {
  color: #1f4a1f;
  font-size: 2.4rem;
  margin: 0 0 18px 0;
  font-weight: 700;
}

.box p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 28px 0;
}

.box a {
  display: inline-block;
  background-color: #c56c39;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transition: background-color 0.25s, transform 0.2s, box-shadow 0.25s;
  background-image: none;
  cursor: pointer;
}

.box a:hover {
  background-color: #a35329;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: #ffffff;
}

.box a:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12), inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  body::before {
    font-size: 1.4rem;
    padding: 18px 15px;
  }

  body::after {
    font-size: 0.8rem;
    padding: 14px 15px;
  }

  .box {
    margin: 25px 15px;
    padding: 35px 20px;
    border-radius: 8px;
  }

  .box h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }

  .box p {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .box a {
    padding: 12px 28px;
    font-size: 1rem;
  }

  nav ul {
    flex-direction: column;
  }

  nav li {
    display: block;
  }

  nav ul ul {
    position: static;
    box-shadow: none;
  }

  nav li:hover ul {
    display: block;
  }

  table {
    font-size: 0.9rem;
  }
}