/* ========================================
   COLLABORATE PAGE - KALKINETRA BLUE THEME
   ======================================== */

:root {
  /* Blue Palette */
  --color-primary: #0066ff;
  --color-secondary: #3388ff;
  --color-accent: #1a75ff;
  --color-dark: #000000;
  
  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.5);
  
  /* Blue Glow Effects */
  --glow-blue: rgba(0, 102, 255, 0.5);
  --glow-blue-soft: rgba(0, 102, 255, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: #000;
}

.highlight {
  color: var(--color-secondary);
  font-weight: 600;
}

/* ========================================
   DARKVEIL FIXED BACKGROUND
   ======================================== */
#darkveil-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

#darkveil-background canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================
   TRANSPARENT SECTIONS BASE
   ======================================== */
section {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* ========================================
   HERO SECTION
   ======================================== */
.join-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: visible;
}

.glow-hero-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  /* background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 60%); */
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.6;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.glow-hero-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  /* background: radial-gradient(circle, rgba(51, 136, 255, 0.25) 0%, transparent 60%); */
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  animation: float 10s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }
  75% {
    transform: translate(30px, 40px) scale(1.05);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}


  /* ========================================
    FOOTER SECTION
    ======================================== */
  .footer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-brand:hover {
    color: var(--color-secondary);
  }

  .footer-brand i {
    color: var(--color-primary);
    font-size: 1.8rem;
  }

  .footer-tagline {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .footer-contact {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-contact i {
    color: var(--color-primary);
    font-size: 1.1rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.3rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .social-link:hover {
    background: rgba(0, 102, 255, 0.3);
    border-color: var(--color-primary);
    color: var(--color-text-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
  }

  .footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 1rem;
  }

  .footer-links a {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
  }

  .footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
  }

  .footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 102, 255, 0.3), transparent);
    margin: 3rem 0;
  }

  .footer-copyright {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
  }

  .footer-copyright i.bi-heart-fill {
    color: #0066ff;
    animation: heartbeat 1.5s ease-in-out infinite;
  }
    @media print {
    .modern-navbar,
    .footer-section,
    .btn,
    .social-links,
    #darkveil-background {
      display: none !important;
    }

    body {
      background: white;
      color: black;
    }

    section {
      page-break-inside: avoid;
    }
  }






  /* ========================================
   COMMON.CSS - Shared Styles Only
   ======================================== */

/* This file is now cleaned - all navbar styles moved to styles.css */
/* Keep this file for any future shared components across multiple pages */

/* Example: If you have multiple HTML pages, add shared styles here */

/* ========================================
   PRINT STYLES (SHARED)
   ======================================== */
@media print {
  .stfox-navbar,
  .footer-section,
  .btn,
  .social-links {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }
}