/**
 * Section Component Styles
 * Reusable section wrapper with backgrounds, patterns, and padding options
 */

/* Base Section */
.section {
  position: relative;
  width: 100%;
}

/* Background Variants */
.section-bg-white {
  background-color: white;
}

.section-bg-gray {
  background-color: rgb(249, 250, 251);
}

.section-bg-gradient {
  background: linear-gradient(135deg, #000056 0%, #B912DE 50%, #32C8FA 100%);
  color: white;
}

.section-bg-dark {
  background-color: #0B0B1A;
  color: white;
}

/* Grid Pattern Overlay */
.section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 86, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 86, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Padding Variants */
.section-padding-normal {
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(80px, 12vw, 160px);
}

.section-padding-small {
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
}

.section-padding-large {
  padding-top: clamp(120px, 16vw, 240px);
  padding-bottom: clamp(120px, 16vw, 240px);
}

.section-padding-none {
  padding: 0;
}

/* Section Container */
.section-container {
  max-width: var(--container-max-width, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .section-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1280px) {
  .section-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Section with Blur Orbs */
.section-with-orbs {
  overflow: hidden;
}

.section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.section-orb-pink {
  background: #FF30AA;
}

.section-orb-blue {
  background: #32C8FA;
}

.section-orb-violet {
  background: #B912DE;
}

@keyframes float {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
  }
  33% { 
    transform: translate(30px, -30px) scale(1.1); 
  }
  66% { 
    transform: translate(-20px, 20px) scale(0.9); 
  }
}
