/* Global styles and simple reset */
:root {
  --bg: #e6d25c;
  --text: #1b2218;
  --muted-text: #e0ea9b;
  --accent: #1f281d;
  --border: rgba(23, 30, 20, 0.3);
  --container-width: 1020px;
}

* { box-sizing: border-box; }
html { height: 100%;}
body { min-height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: transparent;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 0;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/bg11.bmp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.1rem 1.15rem;
}

a { 
  color: var(--accent); 
  text-decoration: none; 
}

h1, h2, h3 { margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }

main { 
  padding: 1.75rem 0 2.3rem;
  margin-left: 0;
  margin-right: 0;
}
.site-header { 
  background: linear-gradient(160deg, rgba(40, 49, 47, 0.94), rgba(43, 56, 44, 0.96));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(17, 24, 14, 0.22);
  padding: 1.1rem 0; 
}
.site-footer { 
  padding: 1rem 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  border-top: 1px solid var(--border); 
  font-size: .9rem;
  color: var(--muted-text);
  background: rgba(90, 86, 56, 0.9);
}

@media (max-width: 640px) {
  .container {
    padding: 0.85rem 0.8rem;
  }

  main {
    padding: 1.2rem 0 1.6rem;
  }

  .site-header {
    padding: 0.9rem 0;
  }

  .site-footer {
    padding: 0.8rem 0;
  }
}
