/*
Theme Name: Bijnor Housing Theme
Theme URI: https://bijnorhousing.com
Author: BijnorHousing
Description: Premium glassmorphism real estate theme for BijnorHousing.com - Buy | Sell | Rent. Brand colors Navy #003C90 and Sky #00B0F0.
Version: 2.0.5
License: GPL2
Text Domain: bijnor-housing-theme
*/

:root {
    --bh-primary: #003C90;
    --bh-accent:  #00B0F0;
    --bh-agri:    #34A853;
    --bh-text:    #1a1a2e;
    --bh-bg:      #f6f8fb;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, -apple-system, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    color: var(--bh-text);
    background: var(--bh-bg);
    line-height: 1.6;
}
a { color: var(--bh-accent); text-decoration: none; }
a:hover { color: var(--bh-primary); }
h1, h2, h3 { color: var(--bh-primary); line-height: 1.25; }

.bh-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.bh-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,60,144,0.08);
}
.bh-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; max-width: 1200px; margin: 0 auto; }
.bh-header .bh-logo img, .bh-header .custom-logo { height: 76px; width: auto; display: block; }
.bh-nav a { margin-left: 24px; font-weight: 600; color: var(--bh-primary); }
.bh-nav a:hover { color: var(--bh-accent); }

/* Hero */
.bh-hero {
    min-height: 70vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 64px 24px;
    background: linear-gradient(175deg, #f6f8fb 0%, #e3eefc 55%, #cfe4fb 100%);
    color: var(--bh-text);
}
.bh-hero .hero-logo img, .bh-hero .custom-logo { height: 230px; width: auto; margin-bottom: 20px; }
.bh-hero .hero-title { color: var(--bh-primary); font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 8px; }
.bh-hero .hero-subtitle { color: #3b5b8c; font-size: 1.15rem; margin: 0 0 32px; }

/* Footer */
.bh-footer { background: #e9f1fb; color: var(--bh-primary); padding: 40px 24px; margin-top: 64px; text-align: center; border-top: 1px solid rgba(0,60,144,0.10); }
.bh-footer img, .bh-footer .custom-logo { height: 120px; width: auto; margin-bottom: 12px; }
.bh-footer .tagline { color: var(--bh-accent); font-weight: 700; letter-spacing: 1px; }
.bh-footer p { color: #3b5b8c; }

/* Property grid */
.bh-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; padding: 40px 0; }
.bh-price { color: var(--bh-primary); font-size: 1.3rem; font-weight: 800; }
.bh-meta { color: #5a6a85; font-size: 0.9rem; }
.bh-badge { display: inline-block; background: var(--bh-accent); color: #fff; border-radius: 999px; padding: 2px 12px; font-size: 0.78rem; font-weight: 700; }
.bh-badge.agri { background: var(--bh-agri); }
