/* CSS Document */


 

html, body {
  height: 100%;
  margin: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrap {
  flex: 1;
}


body {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-anthracite);
  margin: 0;
  padding: 0;
}

header {
  background: var(--dark-anthracite);
  padding: 1rem;
  text-align: center;
  color: var(--lime);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: slide 3s linear infinite;
  transform: translateY(-50%);
}

@keyframes slide {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.8rem;}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: var(--dark-anthracite);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px var(--shadow);
}

.card h3 {
  margin-top: 0;
  font-weight: 600;
  color: var(--dark-anthracite);
}

.card p {
  line-height: 1.5;
}

.button {
  display: inline-block;
  background: var(--lime);
  color: var(--dark-anthracite);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px var(--lime);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin-top: 1rem;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  box-shadow: 0 0 20px var(--lime);
  transform: scale(1.05);
}

    .base { 
      font-family: 'Poppins', sans-serif; 
      font-weight: 600; 
      font-size: 36px; 
      fill: #222; 
    }
    .accent-group {
      transform-origin: center;
      animation: pulse 2s infinite ease-in-out;
    }
    .accent { 
      fill: #C6FF00; 
    }
   
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }
      .logo-container {
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    .logo-main {
      font-size: 3.5rem;   font-family: 'Orbitron', sans-serif;
      font-weight: 600;
      color: #faf0f0;
    }

    .logo-main .animated-w {
      display: inline-block;
      color: #C6FF00;
      animation: bounce 4.5s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .tagline {
      font-size: 1rem;
      color: #555;
      margin-top: 0.5rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;  font-family: 'Poppins', sans-serif; 
      font-size: 12px; 
      fill: #555; 
      letter-spacing: 2px; 
    }
     .social-icon {
      display: inline-block;
      margin: 0 10px;
      transition: transform 0.3s ease, fill 0.3s ease;
    }
    .social-icon:hover svg {
      transform: scale(1.2);
      fill: var(--lime);
    }

    .base { 
      font-family: 'Orbitron', sans-serif; 
      font-weight: 600; 
      font-size: 36px; 
      fill: #fff; 
    }
    .accent-group {
      transform-origin: center;
      animation: pulse 2s infinite ease-in-out;
    }
    .accent { 
      fill: #C6FF00; 
    }
    
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

  .social-icon {
    color: #C6FF00; /* lime */
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .social-icon:hover {
    color: white; 
    transform: scale(1.2);
  }
 
 
  .sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #1c1c1c;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
      margin: 0 5px;
  }

  .logo {
    font-size: 24px;
    color: #A7E92F;
    font-weight: 600;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;font-size: 16px;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #A7E92F;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #A7E92F;
  }
    
 
  
  #footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10.5rem; 
background-color: var(--dark-anthracite); 
padding: 2rem; 
color: #e6ffcc; text-align: left;
  
      /* altezza del footer */ 
        
}
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    background: white;
    color: #1c1c1c;
    border-radius: 50%;
    font-size: 18px;transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
  }

  .social-icons a:hover {
    transform: rotateY(180deg);
    background: #A7E92F;
    color: #1c1c1c;
  }
  
  
  
  
  //impostazioni smartphone
   @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 60px;
      right: -100%;
      height: 100%;
      width: 200px;
      background: var(--dark-anthracite);
      flex-direction: column;
      padding: 30px 20px;
      transition: right 0.4s ease;
    }

    .nav-links.active {
      right: 0;
    }

    .burger {
      display: block;
    }

   
  #footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10.5rem; 
background-color: var(--dark-anthracite); 
padding: 2rem; 
color: #e6ffcc; text-align: left;
  
  
             /* altezza del footer */
}
  } 
  
