 const loginBtn = document.getElementById("login-btn");
const uploadSection = document.getElementById("upload");
const uploadBtn = document.getElementById("upload-btn");
const resultSection = document.getElementById("result");
const loading = document.getElementById("loading");
const restartBtn = document.getElementById("restart-btn");

// Simula el inicio de sesión
loginBtn.addEventListener("click", () => {
  alert("Has iniciado sesión con Google (demo).");
  document.getElementById("login").style.display = "none";
  uploadSection.style.display = "block";
});

// Simula restauración con IA
uploadBtn.addEventListener("click", () => {
  const file = document.getElementById("photo-input").files[0];
  if (!file) {
    alert("Por favor selecciona una foto.");
    return;
  }

  loading.style.display = "block";

  setTimeout(() => {
    loading.style.display = "none";
    uploadSection.style.display = "none";
    resultSection.style.display = "block";
  }, 3000); // simula el procesamiento de IA (3 segundos)
});

// Reiniciar
restartBtn.addEventListener("click", () => {
  resultSection.style.display = "none";
  uploadSection.style.display = "block";
})
