/*
Theme Name: Astra Child
Template: astra
Version: 2.0
*/

/* ===============================
   ROOT COLORS - PREMIUM LIGHT
================================ */
:root {
  --gold: #d4af37;
  --soft-gold: #f9e7b2;
  --white-bg: #fdfcf8;
  --light-bg: #f8f5f0;
  --text-dark: #1e1e1e;
  --text-muted: #555;
  --footer-bg: #fff9f0;
}

/* ===============================
   GOOGLE FONTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Hind+Siliguri:wght@400;500;600&display=swap');

/* ===============================
   GLOBAL
================================ */
body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--white-bg);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.9;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--text-dark);
}

/* ===============================
   HEADER
================================ */
.site-header,
.emaar-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(212,175,55,.25);
}

.emaar-header-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emaar-site-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.emaar-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.emaar-menu li a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

.emaar-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

.emaar-menu li a:hover::after {
  width: 100%;
}

.emaar-header-right,
.emaar-contact {
  display: flex;
  gap: 22px;
}

.emaar-contact-item {
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .3s;
}

.emaar-contact-item:hover {
  color: var(--text-dark);
}

.emaar-mobile-toggle {
  display: none;
  color: var(--gold);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .emaar-header-container { flex-wrap: wrap; }
  .emaar-header-center { display: none; width: 100%; }
  .emaar-header-center.active { display: block; margin-top: 20px; }
  .emaar-menu { flex-direction: column; align-items: center; gap: 18px; }
  .emaar-header-right { display: none; }
  .emaar-mobile-toggle { display: block; }
}

/* ===============================
   HERO
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: auto;
  padding: 80px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 22px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
  color: var(--text-muted);
}

/* ===============================
   SECTION
================================ */
.lux-section {
  padding: 160px 8%;
  max-width: 1200px;
  margin: auto;
  background: var(--light-bg);
  border-radius: 16px;
}

.lux-section h2 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 30px;
}

.lux-section p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* ===============================
   BUTTON
================================ */
.lux-btn {
  display: inline-block;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: #111;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.lux-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ===============================
   GRID & CARDS
================================ */
.lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 60px;
}

.lux-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all 0.3s ease;
}

.lux-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.lux-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.lux-card h3 {
  margin-top: 25px;
}

.lux-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: 0.3s;
}

.lux-card:hover h3 a {
  color: var(--gold);
}

/* ===============================
   FOOTER
================================ */
.lux-footer {
  background: linear-gradient(135deg, #fff9f0, #fef6e8);
  padding: 120px 10%;
  text-align: center;
  color: var(--text-dark);
  border-top: 1px solid rgba(212,175,55,0.3);
}

.lux-footer h3 {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}

.lux-footer p {
  max-width: 700px;
  margin: 0 auto 20px auto;
  color: var(--text-muted);
}

.footer-copy {
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:768px){
  body{font-size:16px;}
  .hero-content{padding:40px;}
  .lux-section{padding:100px 6%;}
  .emaar-menu{gap:18px;flex-direction:column;}
}