/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html, body {
  height: 100%;
  width: 100%;
  overflow: hidden; /* ✅ nessuno scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}
/* 🔮 Sfumatura che segue il cursore */
.cursor-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  background: radial-gradient(
    circle at center,
    rgba(255, 0, 255, 0.45),
    rgba(0, 200, 255, 0.35),
    rgba(255, 0, 0, 0)
  );
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: pulse 2.5s ease-in-out infinite;
  opacity: 1;
}

/* 💗 effetto "battito" */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}


/* HERO */
.hero {
  height: 100vh; /* ✅ piena altezza */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.2s ease-out;
  width: 100%;
  transform: translateY(-3vh); /* ✅ leggermente più su */
}

/* LOOP "COMING SOON" */
.scroll-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: #fff;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
  will-change: transform;
}

/* LOGO */
.logo {
  width: 620px;
  max-width: 95%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
  margin-bottom: 3.2rem;
}

/* STAY TUNED */
.stay-tuned {
  font-size: 1.8rem;
  letter-spacing: 5px;
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

/* SOCIAL ICONS */
.social {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 1.2rem; /* ✅ spazio extra dal footer */
}

.social .icon {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.social .icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0);
  transition: transform 0.3s ease;
}

.social .icon:hover {
  transform: scale(1.12);
  background-color: #f2f2f2;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.social .icon:hover img {
  transform: scale(1.08);
}

/* ANIMAZIONE HERO */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== FOOTER ===================== */

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0a0a0a;
  border-top: 1px solid #222;
  color: #aaa;
  padding: 18px 40px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1280px; /* ✅ contenuto centrato dentro il footer full width */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #999;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px; /* base per mobile/tablet */
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.footer-logos img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.footer-logos img[alt="Big Spaces"] { height: 22px; }
.footer-logos img[alt="Lendlease"] { height: 20px; transform: translateY(-3px); }
.footer-logos img[alt="Mind Milano Innovation District"] { height: 30px; }

.footer-logos img:hover {
  transform: scale(1.06) translateY(-1px);
}

/* ===================== RESPONSIVE FOOTER ===================== */

@media (min-width: 1025px) {
  .footer-content {
    gap: 35px; /* ✅ più spazio tra blocchi */
  }

  .footer-links {
    gap: 12px; /* ✅ più vicine tra loro */
    letter-spacing: 0.5px;
  }

  .footer-logos {
    gap: 25px; /* ✅ loghi più distanziati */
  }
}

@media (max-width: 1024px) {
  footer {
    padding: 20px 15px;
    font-size: 0.85rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-logos {
    gap: 12px;
  }
}

/* ===================== RESPONSIVE HERO ===================== */

@media (max-width: 1024px) {
  .scroll-text {
    font-size: 4rem;
    letter-spacing: 6px;
  }
  .logo {
    width: 440px;
    margin-bottom: 3rem;
  }
  .stay-tuned {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }
  .social .icon {
    width: 56px;
    height: 56px;
  }
  .social .icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    transform: translateY(-6vh); /* ✅ più su su mobile */
  }

  .scroll-text {
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
  }

  .logo {
    width: 340px; /* ✅ logo più grande su mobile */
    margin-bottom: 2.2rem;
  }

  .stay-tuned {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
  }

  .social {
    gap: 25px;
    margin-bottom: 1.6rem;
  }

  .social .icon {
    width: 48px;
    height: 48px;
  }

  .social .icon img {
    width: 24px;
    height: 24px;
  }

  .footer-logos img[alt="Big Spaces"] { height: 18px; }
  .footer-logos img[alt="Lendlease"] { height: 18px; transform: translateY(-1px); }
  .footer-logos img[alt="Mind Milano Innovation District"] { height: 24px; }
}

@media (max-width: 480px) {
  .hero-inner {
    transform: translateY(-8vh); /* ✅ tutto ancora più su */
  }

  .scroll-text {
    font-size: 2.4rem;
    letter-spacing: 3px;
    margin-bottom: 1.8rem;
  }

  .logo {
    width: 280px; /* ✅ logo ancora più grande su smartphone */
    margin-bottom: 2rem;
  }

  .stay-tuned {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .social {
    gap: 20px;
    margin-bottom: 1.4rem;
  }

  .social .icon {
    width: 42px;
    height: 42px;
  }

  .social .icon img {
    width: 22px;
    height: 22px;
  }

  footer {
    font-size: 0.75rem;
  }
}





