@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

/* Reset + font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

.main {
  min-height: 100vh;
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main .image-container {
  padding: 10px;
  text-align: center;
}

.main .image-container .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .image-container .image img {
  width: 350px;
}

.main .image-container h1 {
  color: #00bcd4;
  margin-bottom: 10px;
  font-size: 40px;
}

.main .image-container p {
  color: #324042;
  margin-bottom: 40px;
}

.main .input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  height: 60px;
  border-radius: 20px;
  background: rgba(18, 140, 201, 0.5);
  cursor: pointer;
}

.main .input .talk {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;   /* ✅ Full clickable */
  height: 100%;  /* ✅ Full clickable */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  cursor: pointer;
}

.main .input .talk i {
  font-size: 22px;
  color: #aed0d0;
}

.main .input .content {
  color: #aed0d0;
  font-size: 18px;
}


/* Footer */
footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #aaa;
  font-family: "Roboto Mono", monospace;
}

footer strong {
  color: #00ff00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #00ff00, 0 0 12px #00ff00;
}

footer span {
  color: #00bcd4;
  font-weight: 500;
}


/* ============================= */
/* 📱 RESPONSIVE MEDIA QUERIES   */
/* ============================= */

/* Mobile (max 600px) */
@media (max-width: 600px) {
  .main .image-container .image img {
    width: 200px;
  }
  .main .image-container h1 {
    font-size: 24px;
  }
  .main .input {
    width: 85vw;
    height: 50px;
  }
  .main .input .content {
    font-size: 16px;
  }
  footer {
    font-size: 12px;
  }
}

/* Tablet (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .main .image-container .image img {
    width: 280px;
  }
  .main .image-container h1 {
    font-size: 32px;
  }
  .main .input {
    width: 65vw;
    height: 55px;
  }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
  .main .image-container .image img {
    width: 350px;
  }
  .main .image-container h1 {
    font-size: 40px;
  }
  .main .input {
    width: 40vw;
    height: 60px;
  }
}
