* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1b3b1b;
  background: #fafcfa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1b3b1b;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: #4a9b5e;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #2d5a3d;
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

code {
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 0.9em;
  background-color: #f1f8f1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

pre {
  font-family: "Fira Code", "Courier New", monospace;
  background-color: #f1f8f1;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1rem;
}
pre code {
  background: none;
  padding: 0;
}

blockquote {
  border-left: 4px solid #4a9b5e;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #4a5c4a;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e1e8ed;
  text-align: left;
}

th {
  font-weight: 600;
  background-color: #f1f8f1;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .wrapper {
    padding: 0 1.5rem;
  }
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #7a8a7a;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.bg-overlay {
  position: relative;
}
.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.content-overlay {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.site-header {
  background-color: #fafcfa;
  border-bottom: 1px solid #e1e8ed;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 70px;
}
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5a3d;
  text-decoration: none;
}
.nav-logo:hover {
  color: #4a9b5e;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #2d5a3d;
  margin: 3px 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fafcfa;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #1b3b1b;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #4a9b5e;
  background-color: #f1f8f1;
  text-decoration: none;
}
.nav-link.active {
  color: #4a9b5e;
  background-color: #f1f8f1;
}
.nav-link.btn-cta {
  background: linear-gradient(135deg, #4a9b5e, #7cb342);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(74, 155, 94, 0.3);
}
.nav-link.btn-cta:hover {
  background: linear-gradient(135deg, #2d5a3d, #4a9b5e);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 155, 94, 0.4);
}
.nav-link.btn-cta i {
  margin-right: 5px;
}

.page-content {
  min-height: calc(100vh - 70px - 200px);
  padding: 3rem 0;
  position: relative;
}
.page-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/backround.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: -2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .page-content::before {
    background-attachment: scroll;
    opacity: 0.08;
  }
}
.page-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(74, 155, 94, 0.04) 0%, transparent 25%), radial-gradient(circle at 75% 25%, rgba(124, 179, 66, 0.03) 0%, transparent 25%), radial-gradient(circle at 25% 75%, rgba(102, 187, 106, 0.02) 0%, transparent 25%), radial-gradient(circle at 75% 75%, rgba(45, 90, 61, 0.03) 0%, transparent 25%);
  background-size: 800px 800px, 600px 600px, 400px 400px, 500px 500px;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

.site-footer {
  background: linear-gradient(135deg, #2d5a3d 0%, rgb(28, 56, 37.9555555556) 100%);
  color: #fafcfa;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
}
.site-footer .footer-content {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fafcfa;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.footer-section p {
  color: #7a8a7a;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #7a8a7a;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #fafcfa;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fafcfa;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: #4a9b5e;
  transform: translateY(-2px);
}

.footer-logo {
  margin-top: 1rem;
}
.footer-logo .bvo-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
.footer-logo .bvo-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .footer-logo .bvo-logo {
    max-width: 100px;
  }
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7a8a7a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  color: #7a8a7a;
  margin-bottom: 0.5rem;
}
.footer-bottom p:last-child {
  margin-bottom: 0;
}
.footer-bottom a {
  color: #fafcfa;
}
.footer-bottom a:hover {
  color: #4a9b5e;
}

.blog-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-main {
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: calc(70px + 2rem);
  align-self: start;
  background: #fafcfa;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #e1e8ed;
}

.sidebar-section {
  margin-bottom: 3rem;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}
.sidebar-section h3 {
  color: #2d5a3d;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 2px solid #e1e8ed;
  padding-bottom: 0.5rem;
}

.sidebar-section ul.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-section ul.categories-list li {
  margin: 0;
}
.sidebar-section ul.categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #f1f8f1;
  border-radius: 8px;
  text-decoration: none;
  color: #1b3b1b;
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
}
.sidebar-section ul.categories-list li a:hover {
  background-color: #2d5a3d;
  color: #fafcfa;
  transform: translateX(4px);
}
.sidebar-section ul.categories-list li a .count {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags-list .tag {
  margin: 0;
}

.post-preview {
  margin-bottom: 4.5rem;
}
.post-preview:last-child {
  margin-bottom: 2rem;
}

.post-tags {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.post-tags .tag {
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

.post-meta {
  margin-bottom: 1.5rem;
}
.post-meta .category {
  margin-right: 0.5rem;
}

.post-excerpt {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 2px solid;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn i {
  margin-right: 0.5rem;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.categories-list .category-tag {
  display: inline-block;
  background-color: #f1f8f1;
  color: #4a5c4a;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.categories-list .category-tag:hover {
  background-color: #2d5a3d;
  color: #fafcfa;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}
.categories-list .category-tag:focus {
  outline: 2px solid #2d5a3d;
  outline-offset: 2px;
}
.categories-list .category-tag .count {
  font-size: 0.7875rem;
  opacity: 0.8;
  margin-left: 0.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4a9b5e 0%, #7cb342 100%);
  border-color: #4a9b5e;
  color: #fafcfa;
  box-shadow: 0 2px 8px rgba(74, 155, 94, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a9b5e 100%);
  border-color: #2d5a3d;
  color: #fafcfa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 155, 94, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: #4a9b5e;
  color: #4a9b5e;
}
.btn-outline:hover {
  background: linear-gradient(135deg, #4a9b5e 0%, #7cb342 100%);
  border-color: #7cb342;
  color: #fafcfa;
}

.home-hero .btn-outline {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fafcfa;
  color: #fafcfa;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.home-hero .btn-outline:hover {
  background: #fafcfa;
  border-color: #fafcfa;
  color: #2d5a3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.profile-picture {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fafcfa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.profile-picture:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .profile-picture {
    width: 150px;
    height: 150px;
  }
}

.hero {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a9b5e 50%, #7cb342 100%);
  color: #fafcfa;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fafcfa;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
.hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.125rem;
  }
}

.post-preview {
  background: #fafcfa;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(74, 155, 94, 0.15);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 155, 94, 0.1);
}
.post-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 155, 94, 0.25);
  border-color: rgba(74, 155, 94, 0.2);
}
.post-preview .post-preview-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.post-preview .post-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.post-preview .post-preview-image:hover img {
  transform: scale(1.05);
}
.post-preview .post-preview-content {
  padding: 1.5rem;
}

.post-header-image {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}
.post-header-image .post-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .post-header-image .post-hero-image {
    height: 250px;
    border-radius: 0;
  }
}
.post-header-image .post-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fafcfa;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
}
.post-header-image .post-image-caption span {
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .post-header-image .post-image-caption {
    padding: 1rem;
    border-radius: 0;
  }
  .post-header-image .post-image-caption span {
    font-size: 1rem;
  }
}

.post-title {
  margin-bottom: 0.5rem;
}
.post-title a {
  color: #1b3b1b;
  text-decoration: none;
}
.post-title a:hover {
  color: #4a9b5e;
  text-decoration: none;
}

.post-meta {
  color: #4a5c4a;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.post-meta .category {
  background-color: #f1f8f1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  color: #4a5c4a;
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-meta .category:hover {
  background-color: #2d5a3d;
  color: #fafcfa;
  text-decoration: none;
}

.tag {
  display: inline-block;
  background-color: #f1f8f1;
  color: #4a5c4a;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tag:hover {
  background-color: #4a9b5e;
  color: #fafcfa;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}
.tag:focus {
  outline: 2px solid #4a9b5e;
  outline-offset: 2px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1b3b1b;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #4a9b5e;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background: #fafcfa;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e1e8ed;
}
.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: #4a9b5e;
}
.contact-method .contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #4a9b5e, #7cb342);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafcfa;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.contact-method h3 {
  margin-bottom: 0.5rem;
  color: #2d5a3d;
}
.contact-method p {
  color: #4a5c4a;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.contact-method a {
  color: #4a9b5e;
  font-weight: 500;
  text-decoration: none;
}
.contact-method a:hover {
  color: #7cb342;
  text-decoration: underline;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}
.form-message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.form-message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.form-message.info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.post-share {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e8ed;
}
.post-share p {
  margin-bottom: 1rem;
  color: #4a5c4a;
  font-weight: 500;
}
.post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 0.5rem;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}
.post-share a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.post-share a[href*=twitter] {
  background-color: #1da1f2;
  color: white;
}
.post-share a[href*=twitter]:hover {
  background-color: #0d8bd9;
}
.post-share a[href*=linkedin] {
  background-color: #0077b5;
  color: white;
}
.post-share a[href*=linkedin]:hover {
  background-color: #005885;
}
.post-share a[href*="bsky.app"] {
  background-color: #00bcd4;
  color: white;
}
.post-share a[href*="bsky.app"]:hover {
  background-color: #00acc1;
}
.post-share a[href*=facebook] {
  background-color: #1877f2;
  color: white;
}
.post-share a[href*=facebook]:hover {
  background-color: #166fe5;
}
.post-share a[href*="plus.google"] {
  background-color: #dd4b39;
  color: white;
}
.post-share a[href*="plus.google"]:hover {
  background-color: #c23321;
}
@media (max-width: 768px) {
  .post-share a {
    width: 40px;
    height: 40px;
    margin: 0 0.25rem;
    font-size: 1rem;
  }
}

.home-hero {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a9b5e 50%, #7cb342 100%);
  color: #fafcfa;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%), radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}
.home-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.home-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fafcfa;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 2.5rem;
  }
}
.home-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .home-hero .hero-subtitle {
    font-size: 1.125rem;
  }
}
.home-hero .hero-cta {
  margin-top: 2rem;
}
.home-hero .hero-cta .btn {
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  .home-hero .hero-cta .btn {
    display: block;
    margin: 0.5rem 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}
.home-section {
  padding: 6rem 0;
  position: relative;
}
.home-section:nth-child(even) {
  background: #e8f5e8;
}
.home-section:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 15%, rgba(74, 155, 94, 0.04) 0%, transparent 40%), radial-gradient(circle at 85% 85%, rgba(124, 179, 66, 0.03) 0%, transparent 40%);
  z-index: 1;
}
.home-section:nth-child(even) .wrapper {
  position: relative;
  z-index: 2;
}
.home-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2d5a3d;
  position: relative;
}
.home-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a9b5e 0%, #7cb342 100%);
  border-radius: 2px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

.about-image {
  text-align: center;
}

.about-content h1 {
  margin-bottom: 1rem;
  color: #2d5a3d;
}
.about-content .about-subtitle {
  font-size: 1.25rem;
  color: #4a5c4a;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.about-content .about-bio {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-header h1 {
  margin-bottom: 1rem;
}
.blog-header .blog-description {
  font-size: 1.125rem;
  color: #4a5c4a;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page {
  max-width: 800px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-intro h1 {
  margin-bottom: 1rem;
}
.contact-intro .contact-description {
  font-size: 1.125rem;
  color: #4a5c4a;
  margin-bottom: 2rem;
}

.post-meta-tags {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}
.post-meta-tags .meta-label {
  font-weight: 600;
  color: #4a5c4a;
  white-space: nowrap;
  min-width: fit-content;
}
.post-meta-tags .meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.post-meta-tags .meta-tags .tag-link {
  display: inline-block;
  background-color: #f1f8f1;
  color: #4a5c4a;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.post-meta-tags .meta-tags .tag-link:hover {
  background-color: #4a9b5e;
  color: #fafcfa;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}
.post-meta-tags .meta-tags .tag-link:focus {
  outline: 2px solid #4a9b5e;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .post-meta-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .post-meta-tags .meta-label {
    min-width: auto;
  }
  .post-meta-tags .meta-tags {
    width: 100%;
  }
}

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