/* Genel */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Header */
.site-header {
  background-color: rgba(83, 22, 29); /* kırmızı, %80 opaklık */
  color: white;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.site-title {
  flex: 1;
  margin-left: 10px;
  font-size: 1.5rem;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  font-family: "Arial", serif; /* örnek serif font */
}


nav a.active,
nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  margin-top: 0px; /* header yüksekliği kadar negatif boşluk */
  padding-top: 160px; /* metni biraz aşağı it */
  background: url('../images/space.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: left;
}

.hero h2 {
  font-size: 2rem;
  color: white;                  /* yazı rengi */
  -webkit-text-stroke: 0.5px rgb(0, 0, 0);  /* çerçeve rengi ve kalınlık */
}

.hero h3 {
  font-size: 42 px;
  color: white;                  /* yazı rengi */
  -webkit-text-stroke: 0.5px rgb(0, 0, 0);  /* çerçeve rengi ve kalınlık */
}

/* Postlar */
.post {
  background: #f9f9f9;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 5px solid #b30000;
  border-radius: 5px;
}

.post h3 {
  margin-bottom: 0.5rem;
}

/* Form */
form input,
form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  background: #b30000;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #800000;
}

/* Footer */
.site-footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

