/* Hero section styles and animations */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 3rem;
    background: 
      radial-gradient(ellipse at 20% 50%, rgba(108, 171, 221, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 50%, rgba(28, 44, 91, 0.2) 0%, transparent 50%),
      var(--darker);
  }
  
  .hero-content {
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10rem, 25vw, 20rem);
    line-height: 0.85;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
  }
  
  .hero-image {
    position: absolute;
    right: -6%;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    animation: heroImageReveal 1.2s ease-out 0.3s both;
  }
  
  .hero-image img {
    max-height: 85vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(108, 171, 221, 0.3));
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
  
  @keyframes heroImageReveal {
    from {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 8px;
    line-height: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
  }
  
  .hero-title span {
    display: block;
  }
  
  .hero-title .first-name {
    color: var(--light);
    animation: slideInLeft 0.8s ease-out 0.2s both;
  }
  
  .hero-title .last-name {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease-out 0.4s both;
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--sky-blue);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.8s both;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 244, 248, 0.6);
    margin-top: 0.5rem;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }
  
  .scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--sky-blue);
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .scroll-indicator:hover svg {
    opacity: 1;
    transform: scale(1.1);
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
  }
