/* Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  position: relative;
  text-align: left;
  color: white;
}

.header-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.site-title {
  position: absolute;
  top: 70%;
  left: 15%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 2rem;
}

.site-description {
  position: absolute;
  top: 85%;
  left: 20%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
}

/* Navigation */
.navbar {
  background: #333;
  padding: 0.5rem 0;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar li {
  margin: 0 1rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Layout */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Blog posts */
.blog .post {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.blog .date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

input, textarea, button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  margin-top: 1rem;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-top: 1px solid #ddd;
  font-size: 0.85rem;
  margin-top: 3rem;
}