/*
Theme Name: Vandana Sharma Industries Theme
Theme URI: https://vandanasharmaindustries.com
Description: Custom Premium WordPress Theme designed for Vandana Sharma Industries™ to preserve all SVGs, animations, and high-end design aesthetics exactly.
Version: 1.0.0
Author: Vandana Sharma Industries
Author URI: https://vandanasharmaindustries.com
Text Domain: vsi-theme
*/

/* Reset & Global styles to match original structure */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  background: #0a0a0a;
  color: #e8dcc4;
  font-family: 'Garamond', 'Georgia', serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.main-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, #0a0a0a 50%);
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, #d4af37, transparent);
  animation: orbMove1 28s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  top: 50%;
  right: -15%;
  background: radial-gradient(circle, #d4af37, transparent);
  animation: orbMove2 32s ease-in-out infinite;
}

.orb-3 {
  width: 550px;
  height: 550px;
  bottom: -10%;
  left: 30%;
  background: radial-gradient(circle, #d4af37, transparent);
  animation: orbMove3 30s ease-in-out infinite;
}

@keyframes orbMove1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(120px, 100px); }
}

@keyframes orbMove2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-140px, -120px); }
}

@keyframes orbMove3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(160px, 140px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes subtleGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25)); }
  50% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5)); }
}

@keyframes pathDraw {
  0% { stroke-dasharray: 0, 1000; }
  100% { stroke-dasharray: 1000, 1000; }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
  0%, 100% { r: 45; opacity: 0.6; }
  50% { r: 60; opacity: 0.2; }
}

@keyframes shimmerText {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes flowDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Global Navigation Menu styling inside WP */
header.vsi-header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.vsi-header .logo a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

header.vsi-header .logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

header.vsi-header .custom-logo-link {
  display: inline-block;
}

header.vsi-header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

header.vsi-header nav a {
  color: #e8dcc4;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

header.vsi-header nav a:hover,
header.vsi-header nav li.current-menu-item a {
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  header.vsi-header {
    flex-direction: column;
    gap: 15px;
    padding: 0 35px;
  }
  header.vsi-header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
