/* ===== MEHTA ROYAL HOMEPAGE CSS ===== */

:root {
  --dark-green-1: #0a1f0f;
  --dark-green-2: #0d2b14;
  --dark-green-3: #122e18;
  --dark-green-4: #1a3d22;
  --mid-green: #1f4d2a;
  --light-green: #2a6b38;
  --gold-1: #c9a84c;
  --gold-2: #d4af37;
  --gold-3: #e8c84a;
  --gold-4: #f5d76e;
  --gold-light: #fef0a0;
  --cream: #fdf6e3;
  --white: #ffffff;
  --text-muted: #a8b8a0;
}

/* ===== GLOBAL STYLES ===== */
.mehta-royal-wrapper {
  background: var(--dark-green-1);
  color: var(--cream);
  font-family: 'Noto Sans Devanagari', 'Cinzel', sans-serif;
}

/* ===== HEADINGS ===== */
.mehta-royal-wrapper h1,
.mehta-royal-wrapper h2,
.mehta-royal-wrapper h3 {
  color: var(--gold-2);
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
}

.mehta-royal-wrapper h1 {
  font-size: 72px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-4), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.mehta-royal-btn {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3), var(--gold-2));
  color: var(--dark-green-1);
  border: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 0;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  cursor: pointer;
}

.mehta-royal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.mehta-royal-btn.secondary {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--gold-1);
}

.mehta-royal-btn.secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-3);
}

/* ===== CARDS ===== */
.mehta-royal-card {
  background: linear-gradient(135deg, rgba(26, 61, 34, 0.6), rgba(13, 43, 20, 0.8));
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 36px 28px;
  border-radius: 0;
  transition: all 0.4s;
}

.mehta-royal-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.1);
}

/* ===== SECTIONS ===== */
.mehta-royal-section {
  background: var(--dark-green-1);
  padding: 60px 24px;
}

.mehta-royal-section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(42, 107, 56, 0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, var(--dark-green-1) 0%, var(--dark-green-2) 50%, var(--dark-green-1) 100%);
}

/* ===== BADGES ===== */
.mehta-royal-badge {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: var(--dark-green-1);
  border: 1px solid var(--gold-1);
  padding: 4px 10px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0;
}

/* ===== BORDERS ===== */
.mehta-royal-border-top {
  border-top: 2px solid var(--gold-1);
}

.mehta-royal-border-bottom {
  border-bottom: 2px solid var(--gold-1);
}

.mehta-royal-border-all {
  border: 1px solid rgba(201, 168, 76, 0.25);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mehta-royal-animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===== SPARKLES CANVAS ===== */
#mehta-sparkles-canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mehta-royal-wrapper h1 {
    font-size: 48px;
  }
  
  .mehta-royal-wrapper h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .mehta-royal-wrapper h1 {
    font-size: 32px;
  }
  
  .mehta-royal-wrapper h2 {
    font-size: 24px;
  }
  
  .mehta-royal-section {
    padding: 30px 12px;
  }
  
  .mehta-royal-btn {
    padding: 10px 20px;
    font-size: 11px;
  }
}
