/* Devine Jewels and Diamonds - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #C5A059;
  --dark-gold: #997A21;
  --black-bg: #0a0a0a;
  --dark-gray: #1a1a1a;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --text-main: #333333;
  --text-light: #cccccc;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(212, 175, 55, 0.2);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: var(--font-heading);
}

.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background-color: var(--primary-gold) !important; }
.bg-black { background-color: var(--black-bg) !important; }
.bg-dark-gray { background-color: var(--dark-gray) !important; }
.text-muted{color: var(--primary-gold) !important;}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  padding: 10px 24px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Navbar */
.navbar-luxury {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  transition: all 0.4s ease;
}
.navbar-luxury .navbar-brand {
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.navbar-luxury .nav-link {
  color: var(--white) !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}
.navbar-luxury .nav-link:hover, .navbar-luxury .nav-link.active {
  color: var(--primary-gold) !important;
}
.navbar-luxury .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-luxury .nav-link:hover::after, .navbar-luxury .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-content {
  text-align: center;
  color: var(--white);
  animation: fadeIn 1.5s ease;
}
.hero-subtitle {
  font-family: var(--font-body);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 15px;
}
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 30px;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--primary-gold);
}

/* Product Cards */
.product-card {
  background: var(--white);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: bottom 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
}
.product-card:hover .product-actions {
  bottom: 0;
}
.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.2s ease;
  text-decoration: none;
}
.action-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-gold);
}

/* Footer */
.footer-luxury {
  background-color: var(--black-bg);
  color: var(--text-light);
  padding: 60px 0 20px;
  border-top: 1px solid var(--glass-border);
}
.footer-luxury h5 {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-gold);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dashboard Styles */
.dashboard-sidebar {
  background-color: var(--black-bg);
  min-height: calc(100vh - 76px);
  border-right: 1px solid #222;
}
.dashboard-nav .nav-link {
  color: var(--text-light);
  padding: 12px 20px;
  border-bottom: 1px solid #222;
  transition: all 0.3s;
}
.dashboard-nav .nav-link:hover, .dashboard-nav .nav-link.active {
  background-color: #1a1a1a;
  color: var(--primary-gold);
  border-left: 3px solid var(--primary-gold);
}
.stat-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary-gold);
}

/* MLM / Business Plan */
.matrix-tree {
  text-align: center;
}
.matrix-node {
  background: linear-gradient(135deg, #222, #111);
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  border-radius: 8px;
  padding: 15px 30px;
  display: inline-block;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--primary-gold);
}
.timeline-item {
  margin-bottom: 40px;
  position: relative;
  padding-left: 40px;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

/* Loader */
#loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--black-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-gold);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Other Utilities */
.section-padding {
  padding: 80px 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--black-bg);
}
.section-subtitle {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 40px;
  display: block;
}
.form-control-luxury {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px 15px;
}
.form-control-luxury:focus {
  border-color: var(--primary-gold);
  box-shadow: none;
}
