/*
Theme Name: Pi-CNG
Description: Custom WordPress theme for Presidential CNG Initiative website
Author: Your Name
Version: 1.0
Text Domain: picng
*/

/* Import your existing CSS files */
@import url('assets/css/classic-themes.min.css');
@import url('assets/css/locomotive-scroll.css');
@import url('assets/css/reset.css');

/* Additional WordPress-specific styles */
body {
    margin: 0;
    padding: 0;
}

.wp-block-image {
    margin: 0 0 1em 0;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.5em;
}

.screen-reader-text {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* WordPress Gallery */
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

/* WordPress Comments */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-body {
    margin-bottom: 2em;
    padding: 1em;
    background: #f9f9f9;
}

/* WordPress Navigation */
.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Sticky Posts */
.sticky {
    display: block;
}

/* Post Navigation */
.post-navigation {
    margin: 2em 0;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
}

.search-field {
    flex: 1;
    margin-right: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-submit {
    background: #05aa4e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

/* WordPress Admin Bar */
.admin-bar #header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #header {
        top: 46px;
    }
}

/* WordPress Blocks */
.wp-block-group {
    margin: 1em 0;
}

.wp-block-cover {
    margin: 1em 0;
}

/* Theme-specific overrides */
.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

