body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #555;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: #333;
}

header {
  display: flex;
justify-content: space-between;
align-items: center;
padding: 0 auto;
width: 100%;
height: 75px;
background-color: #fff;
  margin-bottom: 25px;
  position: relative;
}

footer {
  margin-top: 25px;
  left: 0;
  position: relative;
  text-align: center;
  padding: 25px 0;
  display: flex;
  align-content: center;
  width: 100%;
  justify-content: center;
  background-color: #fff;
  border-top: 2px solid #eee;
  flex-direction: column;
}

footer a{
  text-align: center;
}

.cta-button {
  background: #9040ff;
  border-radius: 10px;
  padding: 12px 20px;
  margin-top: 15px;
  margin-bottom: 50px;
  color: #fff;
}

.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.twitter { background: #000000; } /* For X (formerly Twitter) */
.pinterest { background: #E60023; }

.container {
  display: flex;
  flex-direction: row;
}

/* Sidebar on the right */
.content {
  flex: 1;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar {
  width: 300px;
}

.post-card {
  border-radius: 5px;
  flex: 1 1 calc(33.333% - 10px);
  background: #fff;
  padding: 15px;
  box-sizing: border-box;
}

.post-card img {
  border-radius: 10px;
  height: 200px;
}

@media (min-width: 768px) {
  .content {
    max-width: 1200px;
  }
  
  .sidebar {
    width: 350px;
  }
  
  .post-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: 10px;
    margin-top: 25px;
  }
    
  .post-card {
    margin: 15px;
    max-width: 500px;
  }

  .post-card img {
  border-radius: 10px;
  height: 150px;
  }
  
  .hamburger {
  display: none;
  cursor: pointer;
  }

 .menu {
    display: flex;
    list-style: none;
 }

  .menu-item a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

.menu-item a:hover {
    background-color: #9040ff;
    border-radius: 4px;
}

}

@media (max-width: 768px) {
  .post-card {
    margin: 25px auto;
    flex: 1 1 100%;
    max-width: 350px;
  }

  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    flex-direction: column;
  }

    .hamburger {
        display: block;
        background: linear-gradient(90deg, #ff2d95 0%, #4a6eff 50%, #ff7a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
        margin-right: 25px;
        font-size: 22px;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 350px;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
      position: absolute;
      border: 3px solid #888;
      border-radius: 10px;
      z-index: 1001;
    }

  .menu li {
  list-style-type: none;
  padding-left: 0; /* Optional: Removes default left padding */
  }
    
    .menu.visible {
        display: block;
        top: 75px;
      right: 40px;
    }
    
    .menu-item {
        margin: 1rem 0;
    }

    .menu-item a:hover {
    background-color: #9040ff;
    border-radius: 4px;
  }
}

.post-page {
  margin: 10px 25px;
}

.post-page a{
  color: #9040ff;
}

.site-name {
  margin-left: 25px;
  background: linear-gradient(90deg, #ff2d95 0%, #4a6eff 50%, #ff7a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

      blockquote {
  border-left: 4px solid #0077b6; /* Customize color */
  padding: 10px 20px;
  margin: 20px 5px;
  background: #f9f9f9;
  font-style: italic;
  color: #333;
  line-height: 1.6;
}

blockquote p {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 500;
  color: #333;
}

blockquote a {
  color: #0077b6;
  text-decoration: none;
}

blockquote a:hover {
  text-decoration: underline;
}

.widget {
  margin: 50px 25px;
}

  .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.widget li a {
  color: #b00020; /* red tone like your image */
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  flex-grow: 1;
}

.widget li span {
  background-color: #ccc;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 3px;
  margin-left: 10px;
}

/* pagination*/
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.pagination a.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination a:hover:not(.active) {
    background: #ddd;
}

.latest-posts {
  margin: 20px 0;
}

.post-item {
  align-items: flex-start;
}

.not-found {
  margin: 25px;
    }

/* Post navigation (for single posts) */
.post-navigation {
  margin-top: 50px;
  text-align: center;
}

.post-nav-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  
}

.post-nav-container a{
  color: #333;
}

.post-nav {
  flex: 1;
  padding: 15px;
  border: 1px solid #000;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  transition: background 0.3s ease;
}

.post-nav:hover {
  background-color: #f0f0f0;
}

.post-nav.empty {
  visibility: hidden;
}

  .social-links a{
    display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s;
  }

  .social-links i{
    font-size: 20px;
  }

  .share-buttons {
  display: flex;
  gap: 10px;
  margin: 10px 0 15px 0;
}

.share-buttons a {
  text-decoration: none;
   display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s;
}

.share-buttons a:hover {
  transform: scale(1.2);
}


