@font-face {
  font-family: barlow;
  src: url(../font/Barlow_Condensed/BarlowCondensed-Light.ttf);
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "barlow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;  
  top: 50%;
  left: 50%;
  width: 150vmax; 
  height: 150vmax;
    
  margin-top: -75vmax;
  margin-left: -75vmax;
  
  z-index: -1;
  pointer-events: none;
    
  background: 
    radial-gradient(circle at 20% 20%, rgba(227, 96, 253, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(188, 19, 254, 0.25) 0%, transparent 40%),    
    radial-gradient(circle at 50% 80%, rgba(0, 100, 255, 0.15) 0%, transparent 30%);

  animation: bg-rotate 20s linear infinite;
  filter: blur(60px); 
  will-change: transform;
}

@keyframes bg-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-wrapper {
  margin-top: -15vh; /
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

h1 {
  font-size: 6rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.subtitle {
  position: relative;
  font-size: 1.6rem;
  margin: 15px 0;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.9;
}

.countdown {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* TOP BAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.3s;
  opacity: 0.8;
  margin-left: 20px;
  margin-right: 20px;
}

.topbar a:hover {
  opacity: 1;
}

.menu-checkbox,
.hamburger {
  display: none;
}

  .social-links svg{
  transform: translateY(3px);
  display: inline-block; 
  }

.lang-link {
  display: none; 
}

.lang-link.active {
  display: inline-block; 
}
  

.hero {
  padding-top: 60px;
}

.section {
  padding: 120px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.section h2 {
  font-size: 3rem;
  color: #c60aff;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  text-transform: uppercase;
  animation: neon-pulse 2s infinite ease-in-out;
  margin: 0;
  display: inline-block;
  text-align: center;
}

.section p {
  font-size: 1.4rem;
  opacity: 0.8;
  line-height: 1;
}

.title-container {
  position: relative;  
  display: inline-block;  
  margin: 0 auto;  
}

.minipaw {
  position: absolute;
  top: 20%;  
  left: 100%;  
  transform: translateY(-50%) rotate(40deg);  
  margin-left: -30px;

  height: 60px;  
  width: 60px;
  overflow: visible;
}

.minipaw svg {
  width: 40%;
  height: 40%;
  overflow: visible;
  padding: 10px;    
}

.minipaw path {
  fill: #fff;      
  animation: neon-pulse-svg 2s infinite;
}

.image-wrap {
  position: relative;
  width: fit-content;
  max-width: 600px;
  margin: 40px auto;  
    
  mask-image: 
    linear-gradient(to bottom, transparent, black 15%, black 85%, transparent),
    linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: 
    linear-gradient(to bottom, transparent, black 15%, black 85%, transparent),
    linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.image-wrap img {
  display: block;  
  max-height: 300px;
  width: auto;
  max-width: 100%;

  filter: saturate(0.4);  
  border: 5px solid rgba(0,0,0,0); 
}


@media (max-width: 768px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;    
  }

  .hamburger span {
    pointer-events: none;
    width: 20px;
    height: 2px;
    background: white;
    opacity: 0.8;
    display: block;
  }

  .social-links {
    display: flex;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;

    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    flex-direction: row;
  }

  .topbar {
    justify-content: center;
  }
}

/*faq*/
.faq-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

/*contacts*/

.contacts a{    
  color: #fff;
  text-decoration: none;  
  opacity: 0.8;
}

/*freccetta*/
.scroll-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75); 
  color: white;  
  border: 2px solid white;   
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease;  
}

.scroll-btn svg {
  animation: bob 2s infinite ease-in-out;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.scroll-btn:hover{
transform:scale(1.2);
}

html {
  scroll-behavior: smooth;
}

.regLink  a {
  display: inline-block;
  margin-bottom: 2rem; /* Space between button and logo */
  padding: 15px 35px;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  
  
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #c60aff; 
  border-radius: 50px;
  
  /* Glow Effects */
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3), 
              inset 0 0 10px rgba(0, 243, 255, 0.2);
  
  transition: all 0.3s ease;
  z-index: 10;
}

.regLink a:hover {
  background: #c60aff;
  color: #000;
  box-shadow: 0px 0px 15px rgba(198, 10, 255, 0.4);
}


.hero-wrapper > a {
  display: inline-block;
  margin-bottom: 2rem; /* Space between button and logo */
  padding: 15px 35px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  
  
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #c60aff; 
  border-radius: 50px;
    
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3), 
              inset 0 0 10px rgba(0, 243, 255, 0.2);
  
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-wrapper > a:hover {
  background: #c60aff;
  color: #000;
  box-shadow: 0px 0px 15px rgba(198, 10, 255, 0.4);
}
