/*
Theme Name: My Simple Theme
Author: Your Name
Version: 1.0
Description: Ultra simple custom theme
*/

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: #333;
}

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

.site-header {
  background: #f5f5f5;
  padding: 20px;
}

.site-header a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 20px;
}

.site-footer {
  background: #222;
  color: #fff;
  padding: 20px;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
}

h1, h2, h3 {
  margin-top: 1.5em;
}

a {
  color: #0073aa;
}

a:hover {
  opacity: 0.7;
}

.main-navigation {
  margin-top: 15px;
}

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

.nav-menu li {
  display: inline-block;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: #f0f4f8;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.latest-posts {
  padding: 40px 20px;
}

.latest-posts ul {
  list-style: none;
  padding: 0;
}

.latest-posts li {
  margin-bottom: 10px;
}

.hero {
  background: url('/wp-content/uploads/hero.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.news {
  padding: 60px 20px;
}

.news-list {
  list-style: none;
  padding: 0;
}

.news-list li {
  margin-bottom: 12px;
}

.news-date {
  margin-right: 10px;
  color: #888;
  font-size: 14px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}