/* Zen celebration section styles */

/* Zen Celebration Section */
.zen-section {
    background: 
      radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
      var(--darker);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .zen-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .zen-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .zen-figure {
    width: 280px;
    height: 280px;
    position: relative;
    animation: float 4s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  .zen-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
  }
  
  @keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  }
  
  .zen-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .zen-ring {
    position: absolute;
    border: 2px solid rgba(108, 171, 221, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-expand 3s ease-out infinite;
  }
  
  .zen-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
  .zen-ring:nth-child(2) { width: 260px; height: 260px; animation-delay: 1s; }
  .zen-ring:nth-child(3) { width: 320px; height: 320px; animation-delay: 2s; }
  
  @keyframes ring-expand {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
  }
  
  .zen-svg {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  }
  
  .zen-content {
    text-align: left;
  }
  
  .zen-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .zen-subtitle {
    font-size: 1.1rem;
    color: var(--sky-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
  }
  
  .zen-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(240, 244, 248, 0.8);
    margin-bottom: 2rem;
  }
  
  .zen-stats {
    display: flex;
    gap: 3rem;
  }
  
  .zen-stat {
    text-align: center;
  }
  
  .zen-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
  }
  
  .zen-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(240, 244, 248, 0.5);
    margin-top: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .zen-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .zen-content {
      text-align: center;
    }
  
    .zen-title {
      font-size: 2.5rem;
    }
  
    .zen-stats {
      justify-content: center;
    }
  
    .zen-figure {
      width: 220px;
      height: 220px;
    }
  }
