@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

:root {
  --green: #08a057;
  --blue: #3d61fd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PT Sans", sans-serif;
  color: #333;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.serif-font {
  font-family: 'PT Serif', serif;
}

main {
  min-height: 500px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  color: #000;
}

.start-header {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-out;
}

.start-header.scroll-on {
  box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.05);
}

.navigation-wrap {
  z-index: 9999;
  transition: all 0.3s ease-out;
}

.navbar-brand img {
  width: 50px;
  height: auto;
  max-height: 50px;
}

.featured-image {
  width: 100%;
  height: auto;
}

.app-logo {
  width: 100px;
  height: auto;
}

.app-gallery img {
  transition: transform 0.2s ease;
}

.app-gallery img:hover {
  transform: scale(1.05);
}

.card {
  background: linear-gradient(135deg, #fffef5 0%, #fff 100%);
}

.social-icon {
  display: inline-block !important;
  margin-left: 15px;
  color: #333;
  transition: color 0.2s;
}

.social-icon:hover {
  color: var(--blue);
}

.footer .social-icon {
  width: 24px;
  height: 24px;
}

.hero {
  background: linear-gradient(135deg, #fffef5 0%, #fff 100%);
  border: 1px solid #e8e8e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero h1 {
  font-size: 2.5em;
  color: #333;
}

.mainheading h1.posttitle {
  font-weight: 700;
  text-align: center;
}

.article-post {
  font-size: 1.18em;
  line-height: 1.64;
  color: rgba(0,0,0,.8);
}

.article-post a:not(.btn) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 229, 31, 1);
  text-underline-offset: 3px;
  transition: all .3s;
}

.article-post a:not(.btn):hover {
  background-color: rgba(255, 229, 31, 1);
  text-decoration: none;
}

.article-post pre {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 0.25rem;
}

.card {
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  height: 100%;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title a {
  color: #000;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--blue);
}

.metafooter {
  margin-top: 1rem;
}

.tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.tags li {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.tags li a {
  color: #333;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-weight: 500;
  background: #eee;
  text-transform: capitalize;
  text-decoration: none;
  transition: all .2s;
}

.tags li a:hover {
  background: rgba(0,0,0,.1);
  color: #333;
}

.after-post-tags {
  margin-bottom: 1rem;
}

.prevnextlinks {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.prevnextlinks .thepostlink {
  padding: 20px 0;
  font-size: 17px;
  display: block;
  color: #111;
  font-weight: 500;
  text-decoration: none;
}

.prevnextlinks .thepostlink:hover {
  color: var(--blue);
}

.pagination a {
  background: #fdd93d;
  color: #333;
  padding: 5px 15px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.pagination a:hover {
  background: #e6c735;
}

.footer {
  margin-top: 4rem;
}

.copyright {
  color: #666;
}

.credits a img {
  width: 120px;
}

code {
  font-size: 15px;
  background: #f5f5f5;
  padding: 2.4px 6px;
  border-radius: 3px;
}

pre code {
  background: none;
  padding: 0;
}

.alert-primary {
  background: #cfe2ff;
  border-color: #b6d4fe;
  color: #084298;
}

.alert-danger {
  background: #f8d7da;
  border-color: #f5c2c7;
  color: #842029;
}

.alert-success {
  background: #d1e7dd;
  border-color: #badbcc;
  color: #0f5132;
}

.alert-warning {
  background: #fff3cd;
  border-color: #ffecb5;
  color: #664d03;
}

hr {
  border: none;
  border-top: 1px solid #dee2e6;
}

.categories-header {
  margin-bottom: 2rem;
}

.store-badge {
  height: 60px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8em;
  }
  
  .navbar-nav {
    margin-top: 1rem;
  }
}
