/* Layout: background pattern, section common styles */

/* Animated Background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: 
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        var(--sky-blue) 35px,
        var(--sky-blue) 70px
      );
  }

/* Section Styles */
section {
    padding: 8rem 3rem;
    position: relative;
  }
  
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1rem auto 0;
  }
