/* BenTovim Capital Analytics - Landing Page Styles */

:root {
  --primary-navy: #0A2647;
  --primary-gold: #D4AF37;
  --accent-blue: #2E5CFF;
  --pearl-white: #F8F9FA;
  --dark-blue: #144272;
  --light-gold: #F4E4C1;
}

/* Landing Page Background Animation */
.landing-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-blue) 50%, #1a5490 100%);
  overflow: hidden;
  z-index: -1;
}

/* Animated Grid Lines */
.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

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

/* Floating Chart Elements */
.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.chart-1 {
  top: 10%;
  left: 5%;
  font-size: 4rem;
  animation-delay: 0s;
  color: var(--primary-gold);
}

.chart-2 {
  top: 60%;
  right: 8%;
  font-size: 5rem;
  animation-delay: 2s;
  color: var(--accent-blue);
}

.chart-3 {
  bottom: 15%;
  left: 10%;
  font-size: 3.5rem;
  animation-delay: 4s;
  color: var(--primary-gold);
}

.chart-4 {
  top: 30%;
  right: 15%;
  font-size: 4.5rem;
  animation-delay: 1s;
  color: rgba(255, 255, 255, 0.15);
}

/* Pulse Animation for Numbers */
.pulse-number {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  opacity: 0.08;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(1.1); }
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

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

.brand-name {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
}

.brand-first {
  font-size: 2.5rem;
  color: white;
  letter-spacing: 0.05em;
}

.brand-second {
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Tagline */
.tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-button {
  position: relative;
  padding: 1.25rem 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

/* Stats Counter Animation */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-gold), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-first {
    font-size: 2rem;
  }
  
  .brand-second {
    font-size: 1.25rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.25rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Fade In Animation */
.fade-in {
  animation: fadeIn 1s ease-in;
}

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

.fade-in-delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}
