/*
Theme Name: My Custom Theme
Theme URI: https://example.com/my-custom-theme
Author: Custom Theme Builder
Author URI: https://example.com
Description: একটি আধুনিক, হালকা এবং সম্পূর্ণ রেসপন্সিভ ওয়ার্ডপ্রেস থিম (Clean & Modern Responsive WordPress Theme).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom-menu, featured-images, responsive-layout, clean, modern, blog
*/

/* Reset & Basic Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'SolaimanLipi', 'Kalpurush';
    line-height: 1.6;
    background-color: #f4f6f9;
    color: #333333;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Header & Navigation */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.site-title a {
    color: inherit;
}

.site-description {
    font-size: 13px;
    color: #64748b;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: #475569;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
}

.main-navigation a:hover {
    background-color: #f1f5f9;
    color: #2563eb;
}

/* Main Layout */
.site-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.content-area {
    flex: 3;
    min-width: 0;
}

.sidebar-area {
    flex: 1;
    min-width: 280px;
}

/* Posts & Articles */
.post-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.post-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.post-meta span {
    margin-right: 15px;
}

.post-thumbnail {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-excerpt {
    color: #475569;
    font-size: 15px;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.read-more-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

/* Sidebar Widgets */
.widget {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
    color: #1e293b;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-widgets {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #334155;
}

.footer-widget-col {
    flex: 1;
    min-width: 250px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-content {
        flex-direction: column;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .main-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}
