/*
Theme Name: PeaceForEver
Theme URI: https://peacefe.com
Author: Jihadur Rahman Noyon
Author URI: https://jihadur.com
Description: A custom WordPress theme for PeaceFE.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, responsive, modern
Text Domain: lw-jihadur
*/
body {
    background-image: url('http://peacefe.com/wp-content/uploads/2025/03/leaves.webp');
    background-repeat: repeat; /* Ensures the pattern repeats */
    background-size: auto; /* Keeps original size */
    background-attachment: fixed; /* Makes the background fixed */
}
.main-menu ul li a {
	display: block;
	padding: 7px 10px;
	transition: .5s;
}
.main-menu ul li a:hover {
	background: #16a085;
  color: #FFF;
  border-radius: 5px;
}
.header-section {
	 background: rgb(22,160,133);
background: linear-gradient(90deg, rgba(22,160,133,1) 0%, rgba(26,188,156,1) 35%); 
	color: #FFF;
}
.mobile-menu ul li a {
	display: block;
	padding: 3px 5px;
	transition: .5s;
}
.mobile-menu ul li a:hover {
	background: #16a085;
  color: #FFF;
  border-radius: 5px;
}
.current_page_item {
  background: #16a085;
  color: #FFF;
  border-radius: 5px;
}

/* Initially hide the mobile menu */
#mobile-menu-container {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

/* When the menu is active, slide it in */
#mobile-menu-container.open {
    transform: translateX(0);
}
