@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: #333333;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

.promo-banner {
  display: block;
  background: linear-gradient(135deg, #1d8536 0%, rgb(19.8703703704, 91.1296296296, 37) 50%, #e18914 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}
.promo-banner:hover {
  text-decoration: none;
}
.promo-banner:hover .promo-cta {
  transform: translateX(4px);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-emoji {
  font-size: 1.3rem;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.promo-text {
  font-size: 0.95rem;
}
.promo-text strong {
  color: #f9db2b;
  font-weight: 800;
}

.promo-cta {
  background: #ffffff;
  color: #1d8536;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", "Nunito", sans-serif;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #e18914;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(178.1632653061, 108.4816326531, 15.8367346939);
  text-decoration: underline;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2c3e50;
  text-decoration: none;
}
.site-title:hover {
  text-decoration: none;
  color: #e18914;
}
.site-title .logo-text {
  background: linear-gradient(135deg, #e18914, #1d8536);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-title .emoji {
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-nav a {
  color: #2c3e50;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.site-nav a:hover {
  background: rgba(225, 137, 20, 0.1);
  color: #e18914;
  text-decoration: none;
}
.site-nav a.active {
  background: #e18914;
  color: #ffffff;
}
.site-nav a.nav-cta {
  background: linear-gradient(135deg, #e18914, #1d8536);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.site-nav a.nav-cta:hover {
  background: linear-gradient(135deg, rgb(201.5816326531, 122.7408163265, 17.9183673469), rgb(24.4351851852, 112.0648148148, 45.5));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero {
  background: linear-gradient(135deg, #e18914 0%, #f9db2b 100%);
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin-bottom: 3rem;
}
.hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .tagline {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}
.hero .emoji-row {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.post-card .post-card-content {
  padding: 1.5rem;
}
.post-card .post-category {
  display: inline-block;
  background: rgba(29, 133, 54, 0.1);
  color: #1d8536;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.post-card .post-title {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}
.post-card .post-title a {
  color: #2c3e50;
}
.post-card .post-title a:hover {
  color: #e18914;
  text-decoration: none;
}
.post-card .post-excerpt {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.post-card .post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6c757d;
  font-size: 0.85rem;
}
.post-card .post-meta .reading-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px dashed rgba(225, 137, 20, 0.3);
}
.post-header .post-category {
  display: inline-block;
  background: rgba(29, 133, 54, 0.1);
  color: #1d8536;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.post-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #2c3e50;
}
.post-header .post-meta {
  color: #6c757d;
  font-size: 0.95rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.post-content blockquote {
  border-left: 4px solid #e18914;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6c757d;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
}
.post-content code {
  background: rgba(225, 137, 20, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #e18914;
}
.post-content pre {
  background: #2c3e50;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
}
.post-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}
.post-content ul,
.post-content ol {
  padding-left: 2rem;
}
.post-content ul li,
.post-content ol li {
  margin-bottom: 0.5rem;
}
.post-content .callout {
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}
.post-content .callout.tip {
  background: rgba(29, 133, 54, 0.1);
  border-left: 4px solid #1d8536;
}
.post-content .callout.fun {
  background: rgba(249, 219, 43, 0.2);
  border-left: 4px solid #f9db2b;
}
.post-content .callout.important {
  background: rgba(225, 137, 20, 0.1);
  border-left: 4px solid #e18914;
}

.site-footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 3rem 0;
  margin-top: 3rem;
}
.site-footer .wrapper {
  text-align: center;
}
.site-footer .footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.site-footer .footer-logo .logo-text {
  background: linear-gradient(135deg, #e18914, #f9db2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-footer .footer-tagline {
  margin-bottom: 2rem;
  opacity: 0.8;
}
.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.site-footer .social-links a {
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.site-footer .social-links a:hover {
  opacity: 1;
  text-decoration: none;
}
.site-footer .copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}
.site-footer .footer-legal {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.site-footer .footer-legal a {
  color: #ffffff;
  opacity: 0.6;
  margin: 0 0.5rem;
}
.site-footer .footer-legal a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.search-box:focus-within {
  border-color: #e18914;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 4px rgba(225, 137, 20, 0.1);
}
.search-box .search-icon {
  font-size: 1.2rem;
  opacity: 0.6;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: "Outfit", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  color: #333333;
}
.search-box input::placeholder {
  color: #6c757d;
}
.search-box .clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: #f8f9fa;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  color: #6c757d;
  transition: all 0.2s ease;
}
.search-box .clear-btn:hover {
  background: rgba(225, 137, 20, 0.2);
  color: #e18914;
}

.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.categories-nav .category-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.5rem;
  background: #ffffff;
  border: 2px solid #f8f9fa;
  border-radius: 30px;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.2s ease;
}
.categories-nav .category-btn:hover, .categories-nav .category-btn.active {
  border-color: #e18914;
  background: rgba(225, 137, 20, 0.1);
  color: #e18914;
}
.categories-nav .category-btn .emoji {
  font-size: 1.2rem;
}

.about-content .highlight-box {
  background: linear-gradient(135deg, rgba(225, 137, 20, 0.1), rgba(249, 219, 43, 0.1));
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
}
.about-content .highlight-box h3 {
  color: #e18914;
  margin-top: 0;
}
.about-content .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.about-content .feature-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.about-content .feature-item .feature-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.about-content .feature-item h4 {
  margin: 0.5rem 0;
  color: #2c3e50;
}
.about-content .feature-item p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.pagination {
  margin: 3rem 0;
  text-align: center;
}
.pagination .pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pagination .pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 2px solid #f8f9fa;
  border-radius: 30px;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination .pagination-btn:hover:not(.disabled) {
  border-color: #e18914;
  background: rgba(225, 137, 20, 0.1);
  color: #e18914;
  text-decoration: none;
}
.pagination .pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination .pagination-btn .pagination-arrow {
  font-size: 1.1rem;
}
.pagination .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pagination .pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 1rem;
  background: #ffffff;
  border: 2px solid #f8f9fa;
  border-radius: 50%;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination .pagination-num:hover:not(.current) {
  border-color: #e18914;
  background: rgba(225, 137, 20, 0.1);
  color: #e18914;
  text-decoration: none;
}
.pagination .pagination-num.current {
  background: #e18914;
  border-color: #e18914;
  color: #ffffff;
}
.pagination .pagination-ellipsis {
  padding: 0 0.5rem;
  color: #6c757d;
}
.pagination .pagination-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .promo-banner {
    padding: 0.5rem 1rem;
  }
  .promo-banner-content {
    flex-direction: column;
    gap: 6px;
  }
  .promo-text {
    font-size: 0.85rem;
  }
  .promo-cta {
    padding: 4px 12px;
    font-size: 0.8rem;
  }
  .site-header .wrapper {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .site-title {
    font-size: 1.4rem;
  }
  .site-title .emoji {
    font-size: 1.2rem;
  }
  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    order: 3;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
  }
  .site-nav a {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  .site-nav a.nav-cta {
    padding: 6px 12px;
    font-size: 0.75rem;
    order: 1;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .tagline {
    font-size: 1.1rem;
  }
  .hero .emoji-row {
    font-size: 2rem;
  }
  .post-list {
    grid-template-columns: 1fr;
  }
  .post {
    padding: 1.5rem;
  }
  .post-header h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .site-nav a {
    padding: 5px 8px;
    font-size: 0.75rem;
  }
  .site-nav a.nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
  .promo-emoji {
    font-size: 1.1rem;
  }
  .promo-text {
    font-size: 0.8rem;
  }
}

/*# sourceMappingURL=style.css.map */