body {
  background-color: #000;
  color: #d4af37;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
.site-header {
  background-color: #000;
  border-bottom: 1px solid #d4af37;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo {
  width: 45px;
  height: 45px;
}

.logo-title {
  text-decoration: none;
  color: #d4af37;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Navbar */
.primary-navbar {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.primary-navbar a {
  color: #d4af37;
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.primary-navbar a:hover,
.primary-navbar a.active {
  color: #fff;
}

/* Hamburger button */
.menu-toggle {
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1.8rem;
  display: none;
  cursor: pointer;
}

/* Hero Section */
.page-hero {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #111;
  border-bottom: 1px solid #d4af37;
}

.page-hero h2 {
  color: #d4af37;
  font-size: 2rem;
}

.page-hero p {
  color: #c5a533;
}

/* Posts Grid */
.posts-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.post-card {
  background-color: #111;
  border: 1px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 1.2rem;
}

.post-content h3 a {
  color: #d4af37;
  text-decoration: none;
}

.post-content p {
  margin: 0.8rem 0 1rem;
}

.read-more-btn {
  color: #000;
  background-color: #d4af37;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #fff;
  color: #000;
}

/* =========================================
   FOOTER (UNIFORM ON ALL DEVICES)
========================================= */
.site-footer {
  background-color: #000;
  color: #d4af37;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #d4af37;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #d4af37;
  margin: 0 0.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* --- Social Icons: Stay Horizontal and Centered --- */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.social-links a {
  color: #d4af37;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #d4af37;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
  color: #000;
  background: #d4af37;
  transform: scale(1.15);
}

.highlight {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .primary-navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    border-top: 1px solid #d4af37;
  }

  .primary-navbar.active {
    display: flex;
  }

  .primary-navbar a {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #222;
  }

  .primary-navbar a:last-child {
    border-bottom: none;
  }

  /* Footer stays consistent on mobile */
  .social-links {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}
