/*
Theme Name: Greater Noida Plots
Theme URI: https://greaternoidaplots.com/
Author: Rahul Aggarwal - Square Meters Realtors Pvt. Ltd.
Author URI: https://greaternoidaplots.com/
Description: Custom WordPress theme for Greater Noida Plots property listings. Features 3-column layout with left/right sidebars, SEO-optimized with JSON-LD schema, Open Graph, and FAQ markup.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greaternoida-plots
Tags: three-columns, left-sidebar, right-sidebar, real-estate, custom-menu
*/

/* ===== RESET & BASE ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* ===== WRAPPER ===== */
.wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    background-color: #21874b;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 26px;
    font-weight: bold;
}

.header a {
    color: #ffffff;
    text-decoration: none;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
    line-height: 1.5;
}

.title-red {
    color: #d11212;
    font-weight: bold;
    font-size: 14px;
}

.title-blue {
    color: #0000ff;
    font-weight: bold;
    font-size: 18px;
}

/* ===== 3-COLUMN LAYOUT ===== */
/* .layout {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
} */

.left-sidebar, .right-sidebar {
    width: 240px;
    padding: 0 10px;
    flex-shrink: 0;
}

.content {
    flex: 1;
    padding: 0 20px;
    border-left: 1px dotted #ccc;
    border-right: 1px dotted #ccc;
	text-align:center;
}

/* ===== SIDEBAR STYLING ===== */
.sidebar-box {
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.sidebar-box-title {
    background-color: #f1f1f1;
    color: #d11212;
    font-size: 13px;
    font-weight: bold;
    padding: 6px;
    border-bottom: 1px solid #ddd;
}

.sidebar-box-title.black-text { color: #000; }

.sidebar-box-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-box-links li { border-bottom: 1px solid #f1f1f1; }

.sidebar-box-links li a {
    display: block;
    padding: 6px;
    color: #d11212;
    font-size: 12px;
    text-decoration: none;
}

.sidebar-box-links li a:hover { text-decoration: underline; }

.sidebar-nav {
    list-style-type: square;
    padding-left: 15px;
    margin: 10px 0 20px 0;
}

.sidebar-nav li {
    font-size: 13px;
    margin-bottom: 12px;
    color: #0000bd;
}

.sidebar-nav li a {
    color: #0000bd;
    text-decoration: none;
    font-weight: bold;
}

/* ===== CONTENT TYPOGRAPHY ===== */
h1 { font-size: 20px; color: #d11212; border-bottom: 1px solid #ccc; padding-bottom: 5px; }
h2 { font-size: 18px; color: #d11212; margin-top: 20px; }
p { font-size: 13px; line-height: 1.5; }
a { color: #0000ff; }

.call-green {
    color: #008000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.inventory-heading {
    color: #d11212;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

.inventory-section-title {
    font-weight: bold;
    color: #000;
    font-size: 14px;
    margin-top: 15px;
}

.inventory-item {
    margin: 5px 0;
    font-size: 13px;
}

/* ===== TABLES ===== */
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { border: 1px solid #ccc; padding: 10px; text-align: center; font-size: 13px; }
th { background-color: #f1f1f1; font-weight: bold; }

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    border-top: 1px solid #ccc;
    background-color: #f9f9f9;
    margin-top: 20px;
}

/* ===== UTILITIES ===== */
.mt-20 { margin-top: 20px; }

/* ===== BANNER ===== */
.banner-placeholder {
    border: 1px solid #ccc;
    background: #e9ecef;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 20px;
}

.banner-placeholder span {
    color: #666;
    font-size: 18px;
}

/* ===== CHAMAK ANIMATION ===== */
@keyframes chamak {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chamak-banner {
    animation: chamak 1.5s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }

    .left-sidebar, .right-sidebar {
        width: 100%;
        padding: 10px;
        order: 2;
    }

    .content {
        border-left: none;
        border-right: none;
        padding: 10px;
        order: 1;
    }

    .left-sidebar { order: 0; }

    .header { font-size: 20px; padding: 10px 0; }

    .title-blue { font-size: 14px; }

    table { font-size: 11px; }
    th, td { padding: 5px; }
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-caption { max-width: 100%; }
.wp-caption img { width: 100%; height: auto; }
.wp-caption-text { font-size: 12px; color: #666; text-align: center; }
.alignleft { float: left; margin: 0 15px 15px 0; }
.alignright { float: right; margin: 0 0 15px 15px; }
.aligncenter { display: block; margin: 0 auto 15px; }
img.alignnone { margin: 5px 0; }
.gallery { margin: 0 auto; }
.gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; }
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
