:root {
    --dark-green: #1a3c34;
    --light-green: #4a7043;
    --white: #ffffff;
}

/* blog.css */

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
	font-family: 'Roboto', sans-serif;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    height: 200px;
    object-fit: cover;
}
.blog-post h1 {
    font-weight: 600;
}

.blog-card .btn {
	background-color: #2e7d32;
	color: white;
}

.blog-card .btn-outline-primary {
  color: white;
  border-color: var(--dark-green);
  font-family: 'Roboto', sans-serif; /* match site font */
}

.blog-card .btn-outline-primary:hover {
  background-color: #27642a;
  color: var(--white);
  border-color: #27642a;
  transition: background-color 0.3s ease;
}

.bgdull {
	background: rgba(255,255,255,0.85)
}

.post-content {
    line-height: 1.7;
}

.sidebar {
  
  top: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* same shadow style as your .card-style */
  font-family: 'Roboto', sans-serif;
  color: var(--dark-green);
}

.sidebar a {
	text-decoration: none !important;
	color: var(--dark-green);
}

.sidebar h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--light-green);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-green);
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.sidebar ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
  font-size: 0.95rem;
  color: var(--dark-green);
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li:hover {
  color: var(--light-green);
  background-color: rgba(74, 112, 67, 0.15); /* light green transparent */
  border-radius: 4px;
  padding-left: 0.5rem;
}

.sidebar ul li:before {
  content: "•";
  color: var(--light-green);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bold;
}

/* blog.css */

.blog-post img,
.card-img-top {
    border-radius: 0.5rem;
    object-fit: cover;
    max-height: 400px;
    width: 100%;
}

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

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-outline-secondary {
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background-color: #343a40;
    color: #fff;
}



.main_content a{
	text-decoration: none !important;
	color: black;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-green);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

  

  @media (max-width: 768px) {
	  
 .imagetext {
	font-size: 0.9rem !important;
}
 .imagetexth {
  font-size: 1.1rem !important;
}
	  
	  .sidebar {
		  width: 93% !important;
		  margin-left: 15px !important;
	  }
	  
  }

.bg-dark-green {
    background-color: var(--dark-green);
}

.bg-light-green {
    background-color: var(--light-green);
}

.section {
    padding: 60px 0;
}

.page-item a {
	text-decoration: none;
	color: var(--dark-green);
}

.page-item a:hover {
	color: darkolivegreen;
}

.page-item a:focus {
	color: darkgreen;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 400;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4a373;
}

.nav-link.active {
  color: #a66e39 !important;
}

.text-white a {
    text-decoration: none;
    color: var(--white);
}

.text-white a:hover {
    color: var(--white);
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out;
}

.animate-slide-up {
    animation: slideInUp 1s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 767px) {
    .navbar-nav {
        background-color: var(--dark-green);
        padding: 10px;
    }
    .section {
        padding: 30px 0px;
    }
}

/* Slide up */
.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
