/* style.css */
/* Base Styles */
body {
  background-color: #1e1e1ed0;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  position: relative;
  /* Needed for absolute positioning of the background */
  overflow-x: hidden;
  /* Prevent potential horizontal scrollbar */
}

/* Global link styles */
a {
  color: #00C6B3;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #00B8A5;
  text-decoration: underline;
}

/* Live Background */
.live-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background-image: url('path/to/your/network-pattern.png');
  background-size: cover;
  background-repeat: no-repeat;
  animation: panBackground 20s linear infinite;
}

@keyframes panBackground {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Header */
header {
  background-color: #1E1E1E;
  padding: 1.5rem 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00C6B3;
  text-shadow: 0 2px 4px rgba(0, 198, 179, 0.2);
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-links li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links li a:hover {
  color: #00C6B3;
  background: rgba(255, 255, 255, 0.05);
}

.join-btn {
  background-color: #00C6B3;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 198, 179, 0.3);
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 179, 0.4);
}

/* Hero Section */
.hero {
  padding: 8rem 2rem;
  background: Transparent;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  display: inline-block;
  background: #00C6B3;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 198, 179, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 179, 0.4);
}

/* About Section */
.about {
  padding: 4rem 2rem;
}

.about-card {
  background: #2a2a2aa8;
  border-radius: 20px;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.icon-box {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: rgba(0, 198, 179, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Access Form */
.access {
  padding: 4rem 2rem;
}

.access-card {
  background: #2A2A2A;
  border-radius: 20px;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
  margin: 2rem auto 0;
}

input {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #3A3A3A;
  background: #1E1E1E;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #00C6B3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 198, 179, 0.2);
}

button[type="submit"] {
  background: #00C6B3;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: #00B8A5;
  transform: translateY(-2px);
}

/* Status Messages */
#status-message p {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  text-align: center;
}

.success {
  background: #32CD3255;
  border: 2px solid #32CD32;
}

.neutral {
  background: #FFA50055;
  border: 2px solid #FFA500;
}

.error {
  background: #FF4C4C55;
  border: 2px solid #FF4C4C;
}



/* Network Background */
.network-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #1E1E1E;
}

.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #00C6B3 0%, rgba(0, 198, 179, 0.3) 70%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 198, 179, 0.3);
}

.network-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 198, 179, 0.3), rgba(0, 198, 179, 0.1));
  transform-origin: left center;
  height: 1px;
}

/* Animations */
@keyframes nodePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes lineFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.network-node {
  animation: nodePulse 2s ease-in-out infinite;
}

.network-line {
  animation: lineFlow 4s linear infinite;
  background-size: 200% 100%;
}

/* Dynamic Connection Effects */
.network-connection {
  position: absolute;
  background: rgba(0, 198, 179, 0.2);
  width: 2px;
  transform-origin: top center;
  animation: connectionPulse 1.5s infinite;
}

@keyframes connectionPulse {
  0% {
    height: 0;
    opacity: 0;
  }

  50% {
    height: 100px;
    opacity: 0.3;
  }

  100% {
    height: 0;
    opacity: 0;
  }
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}




/* Footer Contact Section */
footer {
  background: #1e1e1e88;
  background: transparent;
  border-top: 1px solid rgba(0, 198, 179, 0.2);
}

.footer-contact {
  margin: 0 auto;
  gap: 4rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-block h3 {
  color: #00C6B3;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-intro {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info h4 {
  color: #00C6B3;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-label {
  display: block;
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.contact-detail {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-detail:hover {
  color: #00C6B3;
}

/* Contact Form */
.contact-form {
  background: rgba(42, 42, 42, 0.411);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 198, 179, 0.1);
}

.form-group {
  margin-bottom: 0.5rem;
}

.form-group label {
  display: block;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  background: #1E1E1E;
  background: transparent;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00C6B3;
  box-shadow: 0 0 0 3px rgba(0, 198, 179, 0.1);
  outline: none;
}

.send-btn {
  background: #00C6B3;
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.send-btn:hover {
  background: #00B8A5;
  transform: translateY(-1px);
}

#form-status p {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  text-align: center;
}

.success {
  background: rgba(50, 205, 50, 0.1);
  border: 1px solid #32CD32;
}

.error {
  background: rgba(255, 76, 76, 0.1);
  border: 1px solid #FF4C4C;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 0.9rem;
}


/* Mobile Version (480px and below) */
/* style.css */
/* ... (keep all previous styles the same until the media query) ... */

/* Mobile Version (480px and below) */
@media (max-width: 480px) {
  body {
    font-size: 0.9rem; /* More reasonable base size */
  }

  header {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem !important; /* Force override */
    line-height: 1.3;
  }

  /* Footer Section - Proper hiding */
  footer {
    grid-template-columns: 1fr;
      gap: 2rem;
  }


  /* About Section Adjustments */
  .about-card {
    padding: 2rem 1rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  /* Access Form Adjustments */
  .access-card {
    padding: 2rem 1rem;
  }
  
  .logo {
  font-size: 1rem;
  font-weight: 700;
  color: #00C6B3;
  text-shadow: 0 2px 4px rgba(0, 198, 179, 0.2);
}
}


 @media (max-width: 768px) {
    .footer-contact {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .hero {
  padding: 4rem 1rem;
  background: Transparent;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  color: #00C6B3;
  text-shadow: 0 2px 4px rgba(0, 198, 179, 0.2);
}

  }
  
  
  
  .popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-content {
  background: black;
  padding: 25px;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.popup-content.success { border-left: 5px solid #28a745; }
.popup-content.error { border-left: 5px solid #dc3545; }
.popup-content.info { border-left: 5px solid #17a2b8; }

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

