/* ===================================
   INDEX PAGE - HOME
   =================================== */

/* HERO SECTION - FULL HEIGHT */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Animated background particles effect - Enhanced */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 1;
}

/* Geometric Overlay for "More Graphical" look */
.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent 70%);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease;
  letter-spacing: 1px;
  font-size: 4rem; /* Larger for impact */
}

/* Gold Text Highlight */
.hero-section h1 span.gold-text {
    color: var(--accent-gold);
    display: block; /* Make it stand out on new line if needed, or inline */
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease;
  font-weight: 400; /* Times New Roman looks better with normal weight here */
  letter-spacing: 0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic; /* Elegant touch */
}

.hero-section .btn {
  animation: fadeInUp 1.2s ease;
}

/* Floating animation for hero button */
.hero-section .btn:hover {
  animation: float 2s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes float {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(-8px); }
}

/* FOOTER PREMIUM */
.footer {
  background: var(--dark-blue);
  padding: 2rem 0;
  font-size: 1rem;
  box-shadow: 0 -4px 16px rgba(10, 36, 99, 0.3);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.75rem;
  }
  
  .hero-section .lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 100px;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
}
