/*
Theme Name: 2ndhomz Luxury Real Estate
Author: 2ndhomz
Description: All-in-one luxury theme for Land & Farmhouses in Morni Hills & Thapali.
Version: 1.1
*/

:root {
  --lux-dark: #0E1A1B;
  --lux-gold: #C9A227;
  --lux-cream: #F7F3EC;
  --lux-stone: #8A8276;
  --lux-forest: #1F3A2E;
  --lux-white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--lux-cream); color: #333; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--lux-dark); }
a { text-decoration: none; color: var(--lux-gold); }

.site-header { background: var(--lux-dark); padding: 15px 0; position: sticky; top: 0; z-index: 999; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo a { font-family: 'Cinzel', serif; font-size: 28px; color: var(--lux-gold); font-weight: 700; letter-spacing: 2px; }
.main-menu ul { list-style: none; display: flex; gap: 30px; }
.main-menu a { color: var(--lux-white); text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }
.main-menu a:hover { color: var(--lux-gold); }

.hero-section { position: relative; height: 90vh; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(14, 26, 27, 0.5); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 800px; padding: 20px; }
.hero-content h1 { color: var(--lux-white); font-size: 56px; margin-bottom: 20px; }
.hero-content p { color: var(--lux-cream); font-size: 20px; margin-bottom: 30px; }
.btn { display: inline-block; padding: 15px 35px; text-transform: uppercase; font-weight: 600; letter-spacing: 1.5px; border-radius: 2px; transition: 0.3s; }
.btn-gold { background: var(--lux-gold); color: var(--lux-dark); }
.btn-gold:hover { background: var(--lux-white); }
.btn-outline { border: 1px solid var(--lux-white); color: var(--lux-white); margin-left: 15px; }
.btn-outline:hover { background: var(--lux-white); color: var(--lux-dark); }

.section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 36px; margin-bottom: 50px; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--lux-gold); margin: 15px auto 0; }

.listings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.listing-card { background: var(--lux-white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; }
.listing-card img { width: 100%; height: 220px; object-fit: cover; }
.listing-info { padding: 20px; }
.listing-info h3 { font-size: 22px; margin-bottom: 10px; }
.listing-meta { display: flex; justify-content: space-between; color: var(--lux-stone); font-size: 14px; margin-bottom: 15px; }
.price { color: var(--lux-forest); font-weight: 700; font-size: 18px; }

.insta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.insta-item { position: relative; padding-top: 100%; overflow: hidden; border-radius: 8px; }
.insta-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.insta-item:hover img { transform: scale(1.05); transition: 0.3s; }

.contact-section { background: var(--lux-dark); color: var(--lux-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { color: var(--lux-gold); margin-bottom: 20px; }
.contact-info p { margin-bottom: 15px; }
.site-footer { background: #050d0e; padding: 30px 0; text-align: center; color: var(--lux-stone); font-size: 14px; }