/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: black;
    color: #333;
    line-height: 1.6;
  }
  
  /* ===== Header / Navbar ===== */
  /* ===== Header & Navigation ===== */
  header {
    width: 100%;
    padding: 20px 40px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
  }
  
  .logo span {
    color: goldenrod;
  }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: goldenrod;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
  
  /* ===== Hero Section ===== */
  .blog-hero {
    text-align: center;
    padding: 60px 20px 30px;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
  }
  
  .blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .blog-hero h1 span {
    color: goldenrod;
  }
  
  .blog-hero .subtitle {
    font-size: 1.1rem;
    font-weight: 300;
  }
  
  /* ===== Blog Section ===== */
  .blog-section {
    padding: 60px 10%;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
  }
  
  .blog-content p {
    font-size: 0.95rem;
    color: #555;
  }
  
  /* ===== Pagination ===== */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 10px;
  }
  
  .circle {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid goldenrod;
    color: goldenrod;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .circle:hover,
  .circle.active {
    background: goldenrod;
    color: #fff;
  }
  
  /* ===== Footer ===== */
  footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
  }
  
  /* ===== Responsive Navbar ===== */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #111;
      width: 200px;
      padding: 20px;
      border-radius: 0 0 10px 10px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  }
  