/*
Theme Name: Kirmizi Video Temasi
Theme URI: https://example.com/
Author: Senin Adin
Description: Kirmizi, siyah ve beyaz tonlarinda, video odakli, SEO destekli gelismis WordPress temasi.
Version: 1.0
*/

/* ------------------ style.css ------------------ */

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  color: #e60000;
  margin-bottom: 10px;
}

a {
  color: #e60000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.video-item {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.video-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.video-item h3 {
  padding: 10px;
  font-size: 16px;
  color: #fff;
}

header {
  background: #000;
  padding: 20px 0;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 10px 0 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  padding: 8px 12px;
  background: #e60000;
  border-radius: 5px;
}
nav ul li a:hover {
  background: #fff;
  color: #e60000;
}

footer {
  background: #000;
  color: #fff;
  padding: 30px 0;
  margin-top: 40px;
}
footer .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
footer .tag-list a {
  background: #e60000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}
footer .tag-list a:hover {
  background: #fff;
  color: #e60000;
}
