/* Palette: Gold (#D4AF37), Black (#111111), Light Cream (#FAF7F2), White (#FFFFFF) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #D4AF37;
  --dark-gold: #AA820A;
  --light-gold: #F3E5AB;
  --bg-black: #111111;
  --bg-card-dark: #1A1A1A;
  --bg-cream: #FAF7F2;
  --text-dark: #222222;
  --text-muted: #666666;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, .font-heading {
  font-family: var(--font-heading);
}

.text-gold { color: var(--primary-gold) !important; }
.bg-black-custom { background-color: var(--bg-black) !important; }
.bg-cream { background-color: var(--bg-cream) !important; }

/* Custom Buttons */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
  color: #111;
  font-weight: 600;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #AA820A 0%, #D4AF37 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 10px 28px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: #111;
}

/* Header & Topbar */
.topbar {
  background-color: #000;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-custom {
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.navbar-custom .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 100%;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary-gold);
}

/* Cards & Components */
.luxury-card {
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--primary-gold);
}

.service-card-img {
  height: 240px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s ease;
}

.luxury-card:hover .service-card-img {
  transform: scale(1.08);
}

/* Floating Actions */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Section Decorator */
.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-title::after {
  content: '◆';
  color: var(--primary-gold);
  font-size: 18px;
  display: block;
  margin-top: 10px;
}

/* Admin Styling */
.admin-sidebar {
  min-height: 100vh;
  background-color: var(--bg-black);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-sidebar .nav-link {
  color: #ccc;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background-color: var(--primary-gold);
  color: #111;
  font-weight: 600;
}
/* Fixed Clean Sidebar */
.admin-sidebar {
  min-height: 100vh;
  background-color: #111111 !important;
  border-right: 1px solid rgba(212, 175, 55, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-sidebar .nav-link {
  color: #CCCCCC !important;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%) !important;
  color: #111111 !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}
/* Fix Counter Section Text Contrast */
#counter-section {
  background-color: #111111 !important;
}

#counter-section p,
#counter-section .text-muted {
  color: #E0E0E0 !important; /* डार्क ग्रे से बदलकर ब्राइट लाइट वाइट किया */
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  font-size: 0.9rem !important;
}

#counter-section h2 {
  color: #D4AF37 !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}