/*
Theme Name: Shova-Paramesh Foundation Theme
Author: Shova.org
Description: Responsive WordPress theme with vertical sidebar and mobile toggle.
Version: 1.7
*/

/* Reset & Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #01022b !important;
}

/* Global Header (Memorial Section) */
.site-header {
 background: #fffbeb;
    color: blue;
    text-align: center;
    padding: 10px;
}

.bengali-head { margin: 0; font-size: 2.2em; }
.foundation-name { font-size: 1.2em; margin: 5px 0; }
.site-logo img {     width: auto;
    /* padding-top: 10px; */
    /* margin: 10px 0; */
    max-height: 90px;}
.site-title a { color: #27ae60; text-decoration: none; }
.site-description { font-style: italic; color: #bdc3c7; }

/* Full Width Featured Image */
.featured-banner-container {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff;
    border-bottom: 4px solid #27ae60;
	max-width: 1200px;
    margin: 0 auto;
}

.full-width-featured {
    width: 100%;
	
    height: auto;
    max-height: 380px; 
    object-fit: cover;
    display: block;
}

/* Main Layout Wrapper */
#page-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Navigation */
#left-sidebar {
    flex: 0 0 320px;
    background: #fff;
    min-height: 100vh;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.menu-toggle-btn {
    display: none; /* Desktop hidden */
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* --- Vertical Menu Flat Button Style --- */
#vertical-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#vertical-menu li {
    margin-bottom: 8px; /* Spacing between "buttons" */
}

#vertical-menu li a {
    display: flex;
    justify-content: space-between; /* Pushes arrow to the right */
    align-items: center;
    padding: 14px 18px;
    background: #f8f9fa; /* Light flat background */
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

/* Arrow Sign using Pseudo-element */
#vertical-menu li a::after {
    content: '\276F'; /* Unicode for chevron arrow › */
    font-size: 0.9em;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* Hover States */
#vertical-menu li a:hover {
    background: #eef2f3;
    color: #27ae60;
    border-left-color: #27ae60;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#vertical-menu li a:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

/* Active Page State */
#vertical-menu li.current-menu-item a {
    background: #27ae60;
    color: #fff;
    border-left-color: #1e8449;
}

#vertical-menu li.current-menu-item a::after {
    color: #fff;
    opacity: 1;
}

/* Content Area */
#main-content {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #page-container {
        flex-direction: column;
    }

    #left-sidebar {
        width: 100%;
    min-height: auto;
    padding: 15px;
    flex: 0 0 5px;
    }

    .menu-toggle-btn {
        display: block;
    }

    #vertical-menu {
        display: none; /* Hidden on mobile by default */
    }

    #vertical-menu.is-active {
        display: block; /* Visible when toggled */
    }
}
/* Footer Styling */
.site-footer {

    color: #fff;
    padding: 20px 20px 20px;
    margin-top: 10px;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 10px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    /* border: 2px dashed #dc950f; */
    padding: 5px 5px;
    background-color: #3e4954;
    color: #fff;
}

.widget-title {
    color: #27ae60;
    border-bottom: 2px solid #34495e;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-nav a:hover {
    color: #27ae60;
}

.copyright p {
    font-size: 0.85em;
	text-decoration: none;
    color: #7f8c8d;
    margin: 0;
}
.copyright p a {

	text-decoration: none;
    color: #7f8c8d;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-widgets { flex-direction: column; text-align: center; }
    .footer-nav ul { flex-direction: column; gap: 10px; }
}