/* Flawless Gift - Home Style Sheet 
    Premium Golden Identity for Landing Page
*/

:root {
  --primary-gold: #d4af37;
  --secondary-gold: #f0d06e;
  --dark-bg: #000000;
  --text-white: #ffffff;
  --trans-props: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------
      HERO SECTION & PARTICLES
---------------------------
*/
#home,
#particles-js {
  position: fixed; /* النجوم كخلفية ثابتة */
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  font-family: 'Tajawal', sans-serif;
  margin: 0;
  overflow: hidden; /* لمنع السكرول في الصفحة الرئيسية لضمان جمالية الـ Dock */
}

/* ---------------------------
      MAIN CONTENT WRAPPER
---------------------------
*/
.hero-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
}

/* ---------------------------
      TYPING EFFECT (TEXT)
---------------------------
*/
.animated-text {
  color: var(--primary-gold) !important;
  font-weight: bold;
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  display: inline-block;
  min-height: 1.2em;
}

/* الكورسر الوامض للنص */
.animated-text::after {
  content: "|";
  margin-left: 5px;
  color: var(--primary-gold);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

/* ---------------------------
      DOCK NAVIGATION (MODERN)
---------------------------
*/
.nav-dock-container {
  position: relative;
  z-index: 100;
}

.nav-item i {
  color: var(--primary-gold);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  transition: var(--trans-props);
}

.nav-item:hover i {
  color: #fff;
  filter: drop-shadow(0 0 10px var(--primary-gold));
  transform: scale(1.2);
}

/* ---------------------------
      PREMIUM LOGO TILT
---------------------------
*/
.premium-logo-box {
  background: #ffffff;
  border: 4px solid var(--primary-gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  transition: var(--trans-props);
}

.premium-logo-box:hover {
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

/* ---------------------------
      SOCIAL ICONS BOTTOM
---------------------------
*/
.social-glass-box {
  position: relative;
  z-index: 100;
}

.social-link-item i {
  transition: var(--trans-props);
}

/* ---------------------------
      RESPONSIVE FIXES
---------------------------
*/
@media (max-width: 768px) {
  .hero-center {
    justify-content: center;
    gap: 10px;
  }
  
  .brand-name {
    font-size: 2.2rem;
  }
  
  .animated-text {
    font-size: 1.1rem;
  }
}

/* لمنع تداخل العناصر في الجوالات الصغيرة جداً */
@media (max-height: 600px) {
  .premium-logo-box {
    width: 180px;
    height: 180px;
  }
  .brand-name {
    font-size: 1.8rem;
  }
}