/*
Theme Name: My Custom Theme
Author: आपका नाम
Description: एक सिंपल और रेस्पॉन्सिव थीम बिना साइडबार के।
Version: 1.0
Text Domain: mytheme
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

.navbar {
  background: #b10000;
  padding: 10px;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.navbar div {
  margin: 5px 10px;
  font-weight: bold;
  cursor: pointer;
}

.section-title {
  background: #b10000;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
  font-weight: bold;
}

.filters {
  text-align: center;
  margin: 15px;
}

.filters h4 {
  text-align: center;
  margin: 10px 0 5px;
  color: #b10000;
}

.filters a {
  text-align: center;
  margin: 0 10px;
  color: blue;
  text-decoration: none;
}

.center-content {
  text-align: center;
}

.trending-link {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.trending-box {
  padding: 10px;
  border-radius: 5px;
  background-color: #007BFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}




/* Single Post Headings Center */
.single-post h1, .single-post h2, .single-post h3, .single-post h4, .single-post h5, .single-post h6 {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
}
